From 68493213fa82f118cade075510ceb2d619c65ff5 Mon Sep 17 00:00:00 2001 From: Dan Birman Date: Fri, 3 Jan 2025 14:08:03 -0800 Subject: [PATCH 1/2] Update CONTRIBUTING.md --- CONTRIBUTING.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 38df76c04..2d7ab2c6c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -102,4 +102,15 @@ where scope (optional) describes the packages affected by the code changes and t - **test**: Adding missing tests or correcting existing tests to set up your environment. -When you are ready to open a pull request, please link any relevant issues and request a review. Thanks for contributing! \ No newline at end of file +When you are ready to open a pull request, please link any relevant issues and request a review. Thanks for contributing! + +## Release + +- From dev, create a branch called release-vX.Y.Z +- Manually increment the version number in the aind_data_schema/__init__.py file to match +- Manually increment the major/minor/patch versions of the core files as needed +- Push the branch and open a PR into main +- After this push, any last minute changes to the release-vX.Y.Z will have to done to via a PR +- After review, use a merge commit to merge into main +- Open a PR from main back into dev so they're synced again +- Create a Github release with the corresponding tag, modify the auto-generated release notes to focus on the major changes that occurred. From 15b4676e4df849473ea2b22a3d6f79d875742465 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Jan 2025 22:13:29 +0000 Subject: [PATCH 2/2] bump schema version [skip actions] --- examples/aibs_smartspim_instrument.json | 2 +- examples/aibs_smartspim_procedures.json | 2 +- examples/aind_smartspim_instrument.json | 2 +- examples/bergamo_ophys_session.json | 2 +- examples/data_description.json | 2 +- examples/ephys_rig.json | 2 +- examples/ephys_session.json | 2 +- examples/exaspim_acquisition.json | 2 +- examples/exaspim_instrument.json | 2 +- examples/fip_behavior_rig.json | 2 +- examples/fip_ophys_rig.json | 2 +- examples/mri_session.json | 2 +- examples/multiplane_ophys_session.json | 2 +- examples/ophys_procedures.json | 2 +- examples/ophys_session.json | 2 +- examples/procedures.json | 2 +- examples/processing.json | 2 +- examples/quality_control.json | 2 +- examples/subject.json | 2 +- schemas/acquisition_schema.json | 1022 +- schemas/data_description_schema.json | 373 +- schemas/instrument_schema.json | 1248 +- schemas/metadata_schema.json | 118723 ++++++++++++--- schemas/model_schema.json | 6041 + schemas/procedures_schema.json | 63693 ++++++-- schemas/processing_schema.json | 76 +- schemas/quality_control_schema.json | 101 +- schemas/rig_schema.json | 1780 +- schemas/session_schema.json | 62922 +++++++- schemas/subject_schema.json | 139 +- src/aind_data_schema/core/acquisition.py | 2 +- src/aind_data_schema/core/data_description.py | 2 +- src/aind_data_schema/core/instrument.py | 2 +- src/aind_data_schema/core/metadata.py | 2 +- src/aind_data_schema/core/procedures.py | 2 +- src/aind_data_schema/core/processing.py | 2 +- src/aind_data_schema/core/quality_control.py | 2 +- src/aind_data_schema/core/rig.py | 2 +- src/aind_data_schema/core/session.py | 2 +- src/aind_data_schema/core/subject.py | 2 +- 40 files changed, 212717 insertions(+), 43459 deletions(-) create mode 100644 schemas/model_schema.json diff --git a/examples/aibs_smartspim_instrument.json b/examples/aibs_smartspim_instrument.json index b3c6713c4..5de590732 100644 --- a/examples/aibs_smartspim_instrument.json +++ b/examples/aibs_smartspim_instrument.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/instrument.py", - "schema_version": "1.0.3", + "schema_version": "1.0.4", "instrument_id": "440_SmartSPIM2_20231004", "modification_date": "2023-10-04", "instrument_type": "SmartSPIM", diff --git a/examples/aibs_smartspim_procedures.json b/examples/aibs_smartspim_procedures.json index 03bd5a10f..7d6afd0dd 100644 --- a/examples/aibs_smartspim_procedures.json +++ b/examples/aibs_smartspim_procedures.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/procedures.py", - "schema_version": "1.1.3", + "schema_version": "1.1.4", "subject_id": "651286", "subject_procedures": [ { diff --git a/examples/aind_smartspim_instrument.json b/examples/aind_smartspim_instrument.json index 630d0ed87..1d8098fd6 100644 --- a/examples/aind_smartspim_instrument.json +++ b/examples/aind_smartspim_instrument.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/instrument.py", - "schema_version": "1.0.3", + "schema_version": "1.0.4", "instrument_id": "440_SmartSPIM1_20231004", "modification_date": "2023-10-04", "instrument_type": "SmartSPIM", diff --git a/examples/bergamo_ophys_session.json b/examples/bergamo_ophys_session.json index 9a0fabfca..1215910b8 100644 --- a/examples/bergamo_ophys_session.json +++ b/examples/bergamo_ophys_session.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/session.py", - "schema_version": "1.0.3", + "schema_version": "1.0.4", "protocol_id": [], "experimenter_full_name": [ "John Doe" diff --git a/examples/data_description.json b/examples/data_description.json index 38602c452..9eff49b90 100644 --- a/examples/data_description.json +++ b/examples/data_description.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/data_description.py", - "schema_version": "1.0.3", + "schema_version": "1.0.4", "license": "CC-BY-4.0", "platform": { "name": "Electrophysiology platform", diff --git a/examples/ephys_rig.json b/examples/ephys_rig.json index e36c647b8..ec8e66e31 100644 --- a/examples/ephys_rig.json +++ b/examples/ephys_rig.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/rig.py", - "schema_version": "1.0.3", + "schema_version": "1.0.4", "rig_id": "323_EPHYS1_20231003", "modification_date": "2023-10-03", "mouse_platform": { diff --git a/examples/ephys_session.json b/examples/ephys_session.json index cd4a2611e..1ce1fdd59 100644 --- a/examples/ephys_session.json +++ b/examples/ephys_session.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/session.py", - "schema_version": "1.0.3", + "schema_version": "1.0.4", "protocol_id": [], "experimenter_full_name": [ "Max Quibble", diff --git a/examples/exaspim_acquisition.json b/examples/exaspim_acquisition.json index 2347b1586..44b35bbfd 100644 --- a/examples/exaspim_acquisition.json +++ b/examples/exaspim_acquisition.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/acquisition.py", - "schema_version": "1.0.3", + "schema_version": "1.0.4", "protocol_id": [], "experimenter_full_name": [ "###" diff --git a/examples/exaspim_instrument.json b/examples/exaspim_instrument.json index 8fa3b3f3c..05e255ce9 100644 --- a/examples/exaspim_instrument.json +++ b/examples/exaspim_instrument.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/instrument.py", - "schema_version": "1.0.3", + "schema_version": "1.0.4", "instrument_id": "440_exaSPIM1-20231004", "modification_date": "2023-10-04", "instrument_type": "exaSPIM", diff --git a/examples/fip_behavior_rig.json b/examples/fip_behavior_rig.json index abcf9a13f..0cd68d1e9 100644 --- a/examples/fip_behavior_rig.json +++ b/examples/fip_behavior_rig.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/rig.py", - "schema_version": "1.0.3", + "schema_version": "1.0.4", "rig_id": "447_FIP-Behavior_20000101", "modification_date": "2000-01-01", "mouse_platform": { diff --git a/examples/fip_ophys_rig.json b/examples/fip_ophys_rig.json index a1d757365..20159f1be 100644 --- a/examples/fip_ophys_rig.json +++ b/examples/fip_ophys_rig.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/rig.py", - "schema_version": "1.0.3", + "schema_version": "1.0.4", "rig_id": "428_FIP1_20231003", "modification_date": "2023-10-03", "mouse_platform": { diff --git a/examples/mri_session.json b/examples/mri_session.json index caf6fa6ea..91422e9b1 100644 --- a/examples/mri_session.json +++ b/examples/mri_session.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/session.py", - "schema_version": "1.0.3", + "schema_version": "1.0.4", "protocol_id": [ "dx.doi.org/10.57824/protocols.io.bh7kl4n6" ], diff --git a/examples/multiplane_ophys_session.json b/examples/multiplane_ophys_session.json index 835e023b3..12d3a503c 100644 --- a/examples/multiplane_ophys_session.json +++ b/examples/multiplane_ophys_session.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/session.py", - "schema_version": "1.0.3", + "schema_version": "1.0.4", "protocol_id": [], "experimenter_full_name": [ "John Doe" diff --git a/examples/ophys_procedures.json b/examples/ophys_procedures.json index 53b44aab9..bb13d158c 100644 --- a/examples/ophys_procedures.json +++ b/examples/ophys_procedures.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/procedures.py", - "schema_version": "1.1.3", + "schema_version": "1.1.4", "subject_id": "625100", "subject_procedures": [ { diff --git a/examples/ophys_session.json b/examples/ophys_session.json index ad496bfe5..77f9ac5c9 100644 --- a/examples/ophys_session.json +++ b/examples/ophys_session.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/session.py", - "schema_version": "1.0.3", + "schema_version": "1.0.4", "protocol_id": [], "experimenter_full_name": [ "John Doe" diff --git a/examples/procedures.json b/examples/procedures.json index 040524d12..82f1791ac 100644 --- a/examples/procedures.json +++ b/examples/procedures.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/procedures.py", - "schema_version": "1.1.3", + "schema_version": "1.1.4", "subject_id": "625100", "subject_procedures": [ { diff --git a/examples/processing.json b/examples/processing.json index c40976b08..af512a166 100644 --- a/examples/processing.json +++ b/examples/processing.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/processing.py", - "schema_version": "1.1.3", + "schema_version": "1.1.4", "processing_pipeline": { "data_processes": [ { diff --git a/examples/quality_control.json b/examples/quality_control.json index c9f1f2c5c..ed0a9052b 100644 --- a/examples/quality_control.json +++ b/examples/quality_control.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/quality_control.py", - "schema_version": "1.2.1", + "schema_version": "1.2.2", "evaluations": [ { "modality": { diff --git a/examples/subject.json b/examples/subject.json index 274a1c5ec..132f5b337 100644 --- a/examples/subject.json +++ b/examples/subject.json @@ -1,6 +1,6 @@ { "describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/subject.py", - "schema_version": "1.0.2", + "schema_version": "1.0.3", "subject_id": "12345", "sex": "Male", "date_of_birth": "2022-11-22", diff --git a/schemas/acquisition_schema.json b/schemas/acquisition_schema.json index ee71d5c7f..dd461a80f 100644 --- a/schemas/acquisition_schema.json +++ b/schemas/acquisition_schema.json @@ -111,9 +111,6 @@ "type": { "const": "affine", "default": "affine", - "enum": [ - "affine" - ], "title": "Type", "type": "string" }, @@ -618,12 +615,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -640,9 +639,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -669,10 +670,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -687,6 +690,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -743,6 +747,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -761,6 +768,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -809,6 +819,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -818,6 +831,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -896,6 +912,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -905,6 +924,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -950,6 +972,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -1010,9 +1035,6 @@ "type": { "const": "rotation", "default": "rotation", - "enum": [ - "rotation" - ], "title": "Type", "type": "string" }, @@ -1046,9 +1068,6 @@ "type": { "const": "scale", "default": "scale", - "enum": [ - "scale" - ], "title": "Type", "type": "string" }, @@ -1133,9 +1152,6 @@ "type": { "const": "translation", "default": "translation", - "enum": [ - "translation" - ], "title": "Type", "type": "string" }, @@ -1168,18 +1184,12 @@ "name": { "const": "AA Opto Electronic", "default": "AA Opto Electronic", - "enum": [ - "AA Opto Electronic" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -1203,18 +1213,12 @@ "name": { "const": "Abcam", "default": "Abcam", - "enum": [ - "Abcam" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -1263,9 +1267,6 @@ "registry_identifier": { "const": "02e1wjw63", "default": "02e1wjw63", - "enum": [ - "02e1wjw63" - ], "title": "Registry Identifier", "type": "string" } @@ -1279,18 +1280,12 @@ "name": { "const": "Ailipu Technology Co", "default": "Ailipu Technology Co", - "enum": [ - "Ailipu Technology Co" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Ailipu", "default": "Ailipu", - "enum": [ - "Ailipu" - ], "title": "Abbreviation", "type": "string" }, @@ -1314,18 +1309,12 @@ "name": { "const": "Allen Institute", "default": "Allen Institute", - "enum": [ - "Allen Institute" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "AI", "default": "AI", - "enum": [ - "AI" - ], "title": "Abbreviation", "type": "string" }, @@ -1374,9 +1363,6 @@ "registry_identifier": { "const": "03cpe7c52", "default": "03cpe7c52", - "enum": [ - "03cpe7c52" - ], "title": "Registry Identifier", "type": "string" } @@ -1390,18 +1376,12 @@ "name": { "const": "Allen Institute for Brain Science", "default": "Allen Institute for Brain Science", - "enum": [ - "Allen Institute for Brain Science" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "AIBS", "default": "AIBS", - "enum": [ - "AIBS" - ], "title": "Abbreviation", "type": "string" }, @@ -1450,9 +1430,6 @@ "registry_identifier": { "const": "00dcv1019", "default": "00dcv1019", - "enum": [ - "00dcv1019" - ], "title": "Registry Identifier", "type": "string" } @@ -1466,18 +1443,12 @@ "name": { "const": "Allen Institute for Neural Dynamics", "default": "Allen Institute for Neural Dynamics", - "enum": [ - "Allen Institute for Neural Dynamics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "AIND", "default": "AIND", - "enum": [ - "AIND" - ], "title": "Abbreviation", "type": "string" }, @@ -1526,9 +1497,6 @@ "registry_identifier": { "const": "04szwah67", "default": "04szwah67", - "enum": [ - "04szwah67" - ], "title": "Registry Identifier", "type": "string" } @@ -1542,18 +1510,12 @@ "name": { "const": "Allied", "default": "Allied", - "enum": [ - "Allied" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -1577,18 +1539,12 @@ "name": { "const": "ams OSRAM", "default": "ams OSRAM", - "enum": [ - "ams OSRAM" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -1637,9 +1593,6 @@ "registry_identifier": { "const": "045d0h266", "default": "045d0h266", - "enum": [ - "045d0h266" - ], "title": "Registry Identifier", "type": "string" } @@ -1653,18 +1606,12 @@ "name": { "const": "Applied Scientific Instrumentation", "default": "Applied Scientific Instrumentation", - "enum": [ - "Applied Scientific Instrumentation" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ASI", "default": "ASI", - "enum": [ - "ASI" - ], "title": "Abbreviation", "type": "string" }, @@ -1688,18 +1635,12 @@ "name": { "const": "Arecont Vision Costar", "default": "Arecont Vision Costar", - "enum": [ - "Arecont Vision Costar" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -1723,18 +1664,12 @@ "name": { "const": "ASUS", "default": "ASUS", - "enum": [ - "ASUS" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -1783,9 +1718,6 @@ "registry_identifier": { "const": "00bxkz165", "default": "00bxkz165", - "enum": [ - "00bxkz165" - ], "title": "Registry Identifier", "type": "string" } @@ -1799,18 +1731,12 @@ "name": { "const": "Basler", "default": "Basler", - "enum": [ - "Basler" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -1834,18 +1760,12 @@ "name": { "const": "Cambridge Technology", "default": "Cambridge Technology", - "enum": [ - "Cambridge Technology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -1869,18 +1789,12 @@ "name": { "const": "Carl Zeiss", "default": "Carl Zeiss", - "enum": [ - "Carl Zeiss" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -1929,9 +1843,6 @@ "registry_identifier": { "const": "01xk5xs43", "default": "01xk5xs43", - "enum": [ - "01xk5xs43" - ], "title": "Registry Identifier", "type": "string" } @@ -1945,18 +1856,12 @@ "name": { "const": "Champalimaud Foundation", "default": "Champalimaud Foundation", - "enum": [ - "Champalimaud Foundation" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Champalimaud", "default": "Champalimaud", - "enum": [ - "Champalimaud" - ], "title": "Abbreviation", "type": "string" }, @@ -2005,9 +1910,6 @@ "registry_identifier": { "const": "03g001n57", "default": "03g001n57", - "enum": [ - "03g001n57" - ], "title": "Registry Identifier", "type": "string" } @@ -2021,18 +1923,12 @@ "name": { "const": "Chan Zuckerberg Initiative", "default": "Chan Zuckerberg Initiative", - "enum": [ - "Chan Zuckerberg Initiative" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "CZI", "default": "CZI", - "enum": [ - "CZI" - ], "title": "Abbreviation", "type": "string" }, @@ -2081,9 +1977,6 @@ "registry_identifier": { "const": "02qenvm24", "default": "02qenvm24", - "enum": [ - "02qenvm24" - ], "title": "Registry Identifier", "type": "string" } @@ -2091,24 +1984,85 @@ "title": "_Chan_Zuckerberg_Initiative", "type": "object" }, + "_Charles_River_Laboratories": { + "description": "Model Charles River Laboratories", + "properties": { + "name": { + "const": "Charles River Laboratories", + "default": "Charles River Laboratories", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "CRL", + "default": "CRL", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03ndmsg87", + "default": "03ndmsg87", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Charles_River_Laboratories", + "type": "object" + }, "_Chroma": { "description": "Model Chroma", "properties": { "name": { "const": "Chroma", "default": "Chroma", - "enum": [ - "Chroma" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -2132,18 +2086,12 @@ "name": { "const": "Coherent Scientific", "default": "Coherent Scientific", - "enum": [ - "Coherent Scientific" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -2192,9 +2140,6 @@ "registry_identifier": { "const": "031tysd23", "default": "031tysd23", - "enum": [ - "031tysd23" - ], "title": "Registry Identifier", "type": "string" } @@ -2208,18 +2153,12 @@ "name": { "const": "Columbia University", "default": "Columbia University", - "enum": [ - "Columbia University" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Columbia", "default": "Columbia", - "enum": [ - "Columbia" - ], "title": "Abbreviation", "type": "string" }, @@ -2268,9 +2207,6 @@ "registry_identifier": { "const": "00hj8s172", "default": "00hj8s172", - "enum": [ - "00hj8s172" - ], "title": "Registry Identifier", "type": "string" } @@ -2284,18 +2220,12 @@ "name": { "const": "Computar", "default": "Computar", - "enum": [ - "Computar" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -2319,18 +2249,12 @@ "name": { "const": "Conoptics", "default": "Conoptics", - "enum": [ - "Conoptics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -2354,18 +2278,12 @@ "name": { "const": "Custom", "default": "Custom", - "enum": [ - "Custom" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -2383,24 +2301,47 @@ "title": "_Custom", "type": "object" }, + "_Digikey": { + "description": "Model DigiKey", + "properties": { + "name": { + "const": "DigiKey", + "default": "DigiKey", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Digikey", + "type": "object" + }, "_Dodotronic": { "description": "Model Dodotronic", "properties": { "name": { "const": "Dodotronic", "default": "Dodotronic", - "enum": [ - "Dodotronic" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -2424,18 +2365,12 @@ "name": { "const": "Doric", "default": "Doric", - "enum": [ - "Doric" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -2484,9 +2419,6 @@ "registry_identifier": { "const": "059n53q30", "default": "059n53q30", - "enum": [ - "059n53q30" - ], "title": "Registry Identifier", "type": "string" } @@ -2500,18 +2432,12 @@ "name": { "const": "Ealing", "default": "Ealing", - "enum": [ - "Ealing" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -2535,18 +2461,12 @@ "name": { "const": "Edmund Optics", "default": "Edmund Optics", - "enum": [ - "Edmund Optics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -2595,9 +2515,6 @@ "registry_identifier": { "const": "01j1gwp17", "default": "01j1gwp17", - "enum": [ - "01j1gwp17" - ], "title": "Registry Identifier", "type": "string" } @@ -2612,18 +2529,12 @@ "name": { "const": "Edinburgh Mouse Atlas Project", "default": "Edinburgh Mouse Atlas Project", - "enum": [ - "Edinburgh Mouse Atlas Project" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "EMAPA", "default": "EMAPA", - "enum": [ - "EMAPA" - ], "title": "Abbreviation", "type": "string" } @@ -2637,18 +2548,12 @@ "name": { "const": "Emory University", "default": "Emory University", - "enum": [ - "Emory University" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Emory", "default": "Emory", - "enum": [ - "Emory" - ], "title": "Abbreviation", "type": "string" }, @@ -2697,9 +2602,6 @@ "registry_identifier": { "const": "03czfpz43", "default": "03czfpz43", - "enum": [ - "03czfpz43" - ], "title": "Registry Identifier", "type": "string" } @@ -2713,18 +2615,12 @@ "name": { "const": "Euresys", "default": "Euresys", - "enum": [ - "Euresys" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -2748,18 +2644,12 @@ "name": { "const": "Fujinon", "default": "Fujinon", - "enum": [ - "Fujinon" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -2783,18 +2673,12 @@ "name": { "const": "Hamamatsu", "default": "Hamamatsu", - "enum": [ - "Hamamatsu" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -2843,9 +2727,6 @@ "registry_identifier": { "const": "03natb733", "default": "03natb733", - "enum": [ - "03natb733" - ], "title": "Registry Identifier", "type": "string" } @@ -2859,18 +2740,12 @@ "name": { "const": "Hamilton", "default": "Hamilton", - "enum": [ - "Hamilton" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -2894,18 +2769,12 @@ "name": { "const": "Huazhong University of Science and Technology", "default": "Huazhong University of Science and Technology", - "enum": [ - "Huazhong University of Science and Technology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "HUST", "default": "HUST", - "enum": [ - "HUST" - ], "title": "Abbreviation", "type": "string" }, @@ -2954,9 +2823,6 @@ "registry_identifier": { "const": "00p991c53", "default": "00p991c53", - "enum": [ - "00p991c53" - ], "title": "Registry Identifier", "type": "string" } @@ -2970,18 +2836,12 @@ "name": { "const": "Infinity Photo-Optical", "default": "Infinity Photo-Optical", - "enum": [ - "Infinity Photo-Optical" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -3005,18 +2865,12 @@ "name": { "const": "Integrated DNA Technologies", "default": "Integrated DNA Technologies", - "enum": [ - "Integrated DNA Technologies" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "IDT", "default": "IDT", - "enum": [ - "IDT" - ], "title": "Abbreviation", "type": "string" }, @@ -3065,9 +2919,6 @@ "registry_identifier": { "const": "009jvpf03", "default": "009jvpf03", - "enum": [ - "009jvpf03" - ], "title": "Registry Identifier", "type": "string" } @@ -3081,18 +2932,12 @@ "name": { "const": "Interuniversity Microelectronics Center", "default": "Interuniversity Microelectronics Center", - "enum": [ - "Interuniversity Microelectronics Center" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "IMEC", "default": "IMEC", - "enum": [ - "IMEC" - ], "title": "Abbreviation", "type": "string" }, @@ -3141,9 +2986,6 @@ "registry_identifier": { "const": "02kcbn207", "default": "02kcbn207", - "enum": [ - "02kcbn207" - ], "title": "Registry Identifier", "type": "string" } @@ -3157,18 +2999,12 @@ "name": { "const": "Invitrogen", "default": "Invitrogen", - "enum": [ - "Invitrogen" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -3217,9 +3053,6 @@ "registry_identifier": { "const": "03x1ewr52", "default": "03x1ewr52", - "enum": [ - "03x1ewr52" - ], "title": "Registry Identifier", "type": "string" } @@ -3233,18 +3066,12 @@ "name": { "const": "IR Robot Co", "default": "IR Robot Co", - "enum": [ - "IR Robot Co" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -3268,18 +3095,12 @@ "name": { "const": "ISL Products International", "default": "ISL Products International", - "enum": [ - "ISL Products International" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ISL", "default": "ISL", - "enum": [ - "ISL" - ], "title": "Abbreviation", "type": "string" }, @@ -3297,24 +3118,47 @@ "title": "_Isl_Products_International", "type": "object" }, + "_Item": { + "description": "Model Item", + "properties": { + "name": { + "const": "Item", + "default": "Item", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Item", + "type": "object" + }, "_Jackson_Laboratory": { "description": "Model Jackson Laboratory", "properties": { "name": { "const": "Jackson Laboratory", "default": "Jackson Laboratory", - "enum": [ - "Jackson Laboratory" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "JAX", "default": "JAX", - "enum": [ - "JAX" - ], "title": "Abbreviation", "type": "string" }, @@ -3363,9 +3207,6 @@ "registry_identifier": { "const": "021sy4w91", "default": "021sy4w91", - "enum": [ - "021sy4w91" - ], "title": "Registry Identifier", "type": "string" } @@ -3379,18 +3220,12 @@ "name": { "const": "Janelia Research Campus", "default": "Janelia Research Campus", - "enum": [ - "Janelia Research Campus" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Janelia", "default": "Janelia", - "enum": [ - "Janelia" - ], "title": "Abbreviation", "type": "string" }, @@ -3439,9 +3274,6 @@ "registry_identifier": { "const": "013sk6x84", "default": "013sk6x84", - "enum": [ - "013sk6x84" - ], "title": "Registry Identifier", "type": "string" } @@ -3455,18 +3287,12 @@ "name": { "const": "Julabo", "default": "Julabo", - "enum": [ - "Julabo" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -3484,24 +3310,85 @@ "title": "_Julabo", "type": "object" }, + "_Kowa": { + "description": "Model Kowa", + "properties": { + "name": { + "const": "Kowa", + "default": "Kowa", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03zbwg482", + "default": "03zbwg482", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Kowa", + "type": "object" + }, "_Leica": { "description": "Model Leica", "properties": { "name": { "const": "Leica", "default": "Leica", - "enum": [ - "Leica" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -3525,18 +3412,12 @@ "name": { "const": "LG", "default": "LG", - "enum": [ - "LG" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -3585,9 +3466,6 @@ "registry_identifier": { "const": "02b948n83", "default": "02b948n83", - "enum": [ - "02b948n83" - ], "title": "Registry Identifier", "type": "string" } @@ -3601,18 +3479,12 @@ "name": { "const": "LifeCanvas", "default": "LifeCanvas", - "enum": [ - "LifeCanvas" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -3636,18 +3508,12 @@ "name": { "const": "Lumen Dynamics", "default": "Lumen Dynamics", - "enum": [ - "Lumen Dynamics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -3671,18 +3537,12 @@ "name": { "const": "MBF Bioscience", "default": "MBF Bioscience", - "enum": [ - "MBF Bioscience" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MBF", "default": "MBF", - "enum": [ - "MBF" - ], "title": "Abbreviation", "type": "string" }, @@ -3731,9 +3591,6 @@ "registry_identifier": { "const": "02zynam48", "default": "02zynam48", - "enum": [ - "02zynam48" - ], "title": "Registry Identifier", "type": "string" } @@ -3747,18 +3604,12 @@ "name": { "const": "Meadowlark Optics", "default": "Meadowlark Optics", - "enum": [ - "Meadowlark Optics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -3807,9 +3658,6 @@ "registry_identifier": { "const": "00n8qbq54", "default": "00n8qbq54", - "enum": [ - "00n8qbq54" - ], "title": "Registry Identifier", "type": "string" } @@ -3824,18 +3672,12 @@ "name": { "const": "Mouse Genome Informatics", "default": "Mouse Genome Informatics", - "enum": [ - "Mouse Genome Informatics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MGI", "default": "MGI", - "enum": [ - "MGI" - ], "title": "Abbreviation", "type": "string" } @@ -3849,18 +3691,12 @@ "name": { "const": "Michael J. Fox Foundation for Parkinson's Research", "default": "Michael J. Fox Foundation for Parkinson's Research", - "enum": [ - "Michael J. Fox Foundation for Parkinson's Research" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MJFF", "default": "MJFF", - "enum": [ - "MJFF" - ], "title": "Abbreviation", "type": "string" }, @@ -3909,9 +3745,6 @@ "registry_identifier": { "const": "03arq3225", "default": "03arq3225", - "enum": [ - "03arq3225" - ], "title": "Registry Identifier", "type": "string" } @@ -3925,18 +3758,12 @@ "name": { "const": "Midwest Optical Systems, Inc.", "default": "Midwest Optical Systems, Inc.", - "enum": [ - "Midwest Optical Systems, Inc." - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MidOpt", "default": "MidOpt", - "enum": [ - "MidOpt" - ], "title": "Abbreviation", "type": "string" }, @@ -3960,18 +3787,12 @@ "name": { "const": "Mitutuyo", "default": "Mitutuyo", - "enum": [ - "Mitutuyo" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -3995,18 +3816,12 @@ "name": { "const": "MKS Newport", "default": "MKS Newport", - "enum": [ - "MKS Newport" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -4055,9 +3870,6 @@ "registry_identifier": { "const": "00k17f049", "default": "00k17f049", - "enum": [ - "00k17f049" - ], "title": "Registry Identifier", "type": "string" } @@ -4071,18 +3883,12 @@ "name": { "const": "MPI", "default": "MPI", - "enum": [ - "MPI" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MPI", "default": "MPI", - "enum": [ - "MPI" - ], "title": "Abbreviation", "type": "string" }, @@ -4106,18 +3912,12 @@ "name": { "const": "National Center for Complementary and Integrative Health", "default": "National Center for Complementary and Integrative Health", - "enum": [ - "National Center for Complementary and Integrative Health" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NCCIH", "default": "NCCIH", - "enum": [ - "NCCIH" - ], "title": "Abbreviation", "type": "string" }, @@ -4166,9 +3966,6 @@ "registry_identifier": { "const": "00190t495", "default": "00190t495", - "enum": [ - "00190t495" - ], "title": "Registry Identifier", "type": "string" } @@ -4182,18 +3979,12 @@ "name": { "const": "National Institute of Mental Health", "default": "National Institute of Mental Health", - "enum": [ - "National Institute of Mental Health" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NIMH", "default": "NIMH", - "enum": [ - "NIMH" - ], "title": "Abbreviation", "type": "string" }, @@ -4242,9 +4033,6 @@ "registry_identifier": { "const": "04xeg9z08", "default": "04xeg9z08", - "enum": [ - "04xeg9z08" - ], "title": "Registry Identifier", "type": "string" } @@ -4258,18 +4046,12 @@ "name": { "const": "National Institute of Neurological Disorders and Stroke", "default": "National Institute of Neurological Disorders and Stroke", - "enum": [ - "National Institute of Neurological Disorders and Stroke" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NINDS", "default": "NINDS", - "enum": [ - "NINDS" - ], "title": "Abbreviation", "type": "string" }, @@ -4318,9 +4100,6 @@ "registry_identifier": { "const": "01s5ya894", "default": "01s5ya894", - "enum": [ - "01s5ya894" - ], "title": "Registry Identifier", "type": "string" } @@ -4334,18 +4113,12 @@ "name": { "const": "National Instruments", "default": "National Instruments", - "enum": [ - "National Instruments" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -4394,9 +4167,6 @@ "registry_identifier": { "const": "026exqw73", "default": "026exqw73", - "enum": [ - "026exqw73" - ], "title": "Registry Identifier", "type": "string" } @@ -4410,18 +4180,12 @@ "name": { "const": "Navitar", "default": "Navitar", - "enum": [ - "Navitar" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -4446,18 +4210,12 @@ "name": { "const": "National Center for Biotechnology Information", "default": "National Center for Biotechnology Information", - "enum": [ - "National Center for Biotechnology Information" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NCBI", "default": "NCBI", - "enum": [ - "NCBI" - ], "title": "Abbreviation", "type": "string" } @@ -4471,18 +4229,12 @@ "name": { "const": "Neurophotometrics", "default": "Neurophotometrics", - "enum": [ - "Neurophotometrics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -4506,18 +4258,12 @@ "name": { "const": "New Scale Technologies", "default": "New Scale Technologies", - "enum": [ - "New Scale Technologies" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -4541,18 +4287,12 @@ "name": { "const": "New York University", "default": "New York University", - "enum": [ - "New York University" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NYU", "default": "NYU", - "enum": [ - "NYU" - ], "title": "Abbreviation", "type": "string" }, @@ -4601,9 +4341,6 @@ "registry_identifier": { "const": "0190ak572", "default": "0190ak572", - "enum": [ - "0190ak572" - ], "title": "Registry Identifier", "type": "string" } @@ -4617,18 +4354,12 @@ "name": { "const": "Nikon", "default": "Nikon", - "enum": [ - "Nikon" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -4677,9 +4408,6 @@ "registry_identifier": { "const": "0280y9h11", "default": "0280y9h11", - "enum": [ - "0280y9h11" - ], "title": "Registry Identifier", "type": "string" } @@ -4693,18 +4421,12 @@ "name": { "const": "NResearch Inc", "default": "NResearch Inc", - "enum": [ - "NResearch Inc" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -4728,18 +4450,12 @@ "name": { "const": "Olympus", "default": "Olympus", - "enum": [ - "Olympus" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -4788,9 +4504,6 @@ "registry_identifier": { "const": "02vcdte90", "default": "02vcdte90", - "enum": [ - "02vcdte90" - ], "title": "Registry Identifier", "type": "string" } @@ -4804,18 +4517,12 @@ "name": { "const": "Open Ephys Production Site", "default": "Open Ephys Production Site", - "enum": [ - "Open Ephys Production Site" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "OEPS", "default": "OEPS", - "enum": [ - "OEPS" - ], "title": "Abbreviation", "type": "string" }, @@ -4864,9 +4571,6 @@ "registry_identifier": { "const": "007rkz355", "default": "007rkz355", - "enum": [ - "007rkz355" - ], "title": "Registry Identifier", "type": "string" } @@ -4880,18 +4584,12 @@ "name": { "const": "Optotune", "default": "Optotune", - "enum": [ - "Optotune" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -4916,18 +4614,12 @@ "name": { "const": "Open Researcher and Contributor ID", "default": "Open Researcher and Contributor ID", - "enum": [ - "Open Researcher and Contributor ID" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ORCID", "default": "ORCID", - "enum": [ - "ORCID" - ], "title": "Abbreviation", "type": "string" } @@ -4941,18 +4633,12 @@ "name": { "const": "Other", "default": "Other", - "enum": [ - "Other" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -4976,18 +4662,12 @@ "name": { "const": "Oxxius", "default": "Oxxius", - "enum": [ - "Oxxius" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5005,24 +4685,47 @@ "title": "_Oxxius", "type": "object" }, + "_Placid_Industries": { + "description": "Model Placid Industries", + "properties": { + "name": { + "const": "Placid Industries", + "default": "Placid Industries", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Placid_Industries", + "type": "object" + }, "_Prizmatix": { "description": "Model Prizmatix", "properties": { "name": { "const": "Prizmatix", "default": "Prizmatix", - "enum": [ - "Prizmatix" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5046,18 +4749,12 @@ "name": { "const": "Quantifi", "default": "Quantifi", - "enum": [ - "Quantifi" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5081,18 +4778,12 @@ "name": { "const": "Raspberry Pi", "default": "Raspberry Pi", - "enum": [ - "Raspberry Pi" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5117,18 +4808,12 @@ "name": { "const": "Research Organization Registry", "default": "Research Organization Registry", - "enum": [ - "Research Organization Registry" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ROR", "default": "ROR", - "enum": [ - "ROR" - ], "title": "Abbreviation", "type": "string" } @@ -5143,18 +4828,12 @@ "name": { "const": "Research Resource Identifiers", "default": "Research Resource Identifiers", - "enum": [ - "Research Resource Identifiers" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "RRID", "default": "RRID", - "enum": [ - "RRID" - ], "title": "Abbreviation", "type": "string" } @@ -5162,24 +4841,47 @@ "title": "_Rrid", "type": "object" }, + "_Same_Sky": { + "description": "Model Same Sky", + "properties": { + "name": { + "const": "Same Sky", + "default": "Same Sky", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Same_Sky", + "type": "object" + }, "_Schneider_Kreuznach": { "description": "Model Schneider-Kreuznach", "properties": { "name": { "const": "Schneider-Kreuznach", "default": "Schneider-Kreuznach", - "enum": [ - "Schneider-Kreuznach" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5203,18 +4905,12 @@ "name": { "const": "Second Order Effects", "default": "Second Order Effects", - "enum": [ - "Second Order Effects" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5238,18 +4934,12 @@ "name": { "const": "Semrock", "default": "Semrock", - "enum": [ - "Semrock" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5273,18 +4963,12 @@ "name": { "const": "SICGEN", "default": "SICGEN", - "enum": [ - "SICGEN" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5308,18 +4992,12 @@ "name": { "const": "Sigma-Aldrich", "default": "Sigma-Aldrich", - "enum": [ - "Sigma-Aldrich" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5343,18 +5021,12 @@ "name": { "const": "Simons Foundation", "default": "Simons Foundation", - "enum": [ - "Simons Foundation" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5403,9 +5075,6 @@ "registry_identifier": { "const": "01cmst727", "default": "01cmst727", - "enum": [ - "01cmst727" - ], "title": "Registry Identifier", "type": "string" } @@ -5419,18 +5088,12 @@ "name": { "const": "Spinnaker", "default": "Spinnaker", - "enum": [ - "Spinnaker" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5454,18 +5117,12 @@ "name": { "const": "Tamron", "default": "Tamron", - "enum": [ - "Tamron" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5489,18 +5146,12 @@ "name": { "const": "Technical Manufacturing Corporation", "default": "Technical Manufacturing Corporation", - "enum": [ - "Technical Manufacturing Corporation" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "TMC", "default": "TMC", - "enum": [ - "TMC" - ], "title": "Abbreviation", "type": "string" }, @@ -5524,18 +5175,12 @@ "name": { "const": "Teledyne FLIR", "default": "Teledyne FLIR", - "enum": [ - "Teledyne FLIR" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "FLIR", "default": "FLIR", - "enum": [ - "FLIR" - ], "title": "Abbreviation", "type": "string" }, @@ -5584,9 +5229,6 @@ "registry_identifier": { "const": "01j1gwp17", "default": "01j1gwp17", - "enum": [ - "01j1gwp17" - ], "title": "Registry Identifier", "type": "string" } @@ -5600,18 +5242,12 @@ "name": { "const": "Templeton World Charity Foundation", "default": "Templeton World Charity Foundation", - "enum": [ - "Templeton World Charity Foundation" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "TWCF", "default": "TWCF", - "enum": [ - "TWCF" - ], "title": "Abbreviation", "type": "string" }, @@ -5660,9 +5296,6 @@ "registry_identifier": { "const": "00x0z1472", "default": "00x0z1472", - "enum": [ - "00x0z1472" - ], "title": "Registry Identifier", "type": "string" } @@ -5676,18 +5309,12 @@ "name": { "const": "The Imaging Source", "default": "The Imaging Source", - "enum": [ - "The Imaging Source" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5711,18 +5338,12 @@ "name": { "const": "The Lee Company", "default": "The Lee Company", - "enum": [ - "The Lee Company" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5746,18 +5367,12 @@ "name": { "const": "Thermo Fisher Scientific", "default": "Thermo Fisher Scientific", - "enum": [ - "Thermo Fisher Scientific" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5806,9 +5421,6 @@ "registry_identifier": { "const": "03x1ewr52", "default": "03x1ewr52", - "enum": [ - "03x1ewr52" - ], "title": "Registry Identifier", "type": "string" } @@ -5822,18 +5434,12 @@ "name": { "const": "Thorlabs", "default": "Thorlabs", - "enum": [ - "Thorlabs" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5882,9 +5488,6 @@ "registry_identifier": { "const": "04gsnvb07", "default": "04gsnvb07", - "enum": [ - "04gsnvb07" - ], "title": "Registry Identifier", "type": "string" } @@ -5892,24 +5495,47 @@ "title": "_Thorlabs", "type": "object" }, + "_Transducer_Techniques": { + "description": "Model Transducer Techniques", + "properties": { + "name": { + "const": "Transducer Techniques", + "default": "Transducer Techniques", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Transducer_Techniques", + "type": "object" + }, "_Tymphany": { "description": "Model Tymphany", "properties": { "name": { "const": "Tymphany", "default": "Tymphany", - "enum": [ - "Tymphany" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5933,18 +5559,12 @@ "name": { "const": "Vieworks", "default": "Vieworks", - "enum": [ - "Vieworks" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5968,18 +5588,12 @@ "name": { "const": "Vortran", "default": "Vortran", - "enum": [ - "Vortran" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -6003,18 +5617,12 @@ "name": { "const": "Addgene", "default": "Addgene", - "enum": [ - "Addgene" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -6063,9 +5671,6 @@ "registry_identifier": { "const": "01nn1pw54", "default": "01nn1pw54", - "enum": [ - "01nn1pw54" - ], "title": "Registry Identifier", "type": "string" } @@ -6080,18 +5685,12 @@ "name": { "const": "Addgene", "default": "Addgene", - "enum": [ - "Addgene" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ADDGENE", "default": "ADDGENE", - "enum": [ - "ADDGENE" - ], "title": "Abbreviation", "type": "string" } @@ -6110,11 +5709,8 @@ "type": "string" }, "schema_version": { - "const": "1.0.3", - "default": "1.0.3", - "enum": [ - "1.0.3" - ], + "const": "1.0.4", + "default": "1.0.4", "title": "Schema Version", "type": "string" }, diff --git a/schemas/data_description_schema.json b/schemas/data_description_schema.json index 0b4f511c2..9a7c50f83 100644 --- a/schemas/data_description_schema.json +++ b/schemas/data_description_schema.json @@ -210,18 +210,12 @@ "name": { "const": "Addgene", "default": "Addgene", - "enum": [ - "Addgene" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ADDGENE", "default": "ADDGENE", - "enum": [ - "ADDGENE" - ], "title": "Abbreviation", "type": "string" } @@ -235,18 +229,12 @@ "name": { "const": "Allen Institute", "default": "Allen Institute", - "enum": [ - "Allen Institute" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "AI", "default": "AI", - "enum": [ - "AI" - ], "title": "Abbreviation", "type": "string" }, @@ -295,9 +283,6 @@ "registry_identifier": { "const": "03cpe7c52", "default": "03cpe7c52", - "enum": [ - "03cpe7c52" - ], "title": "Registry Identifier", "type": "string" } @@ -311,18 +296,12 @@ "name": { "const": "Allen Institute for Brain Science", "default": "Allen Institute for Brain Science", - "enum": [ - "Allen Institute for Brain Science" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "AIBS", "default": "AIBS", - "enum": [ - "AIBS" - ], "title": "Abbreviation", "type": "string" }, @@ -371,9 +350,6 @@ "registry_identifier": { "const": "00dcv1019", "default": "00dcv1019", - "enum": [ - "00dcv1019" - ], "title": "Registry Identifier", "type": "string" } @@ -387,18 +363,12 @@ "name": { "const": "Allen Institute for Neural Dynamics", "default": "Allen Institute for Neural Dynamics", - "enum": [ - "Allen Institute for Neural Dynamics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "AIND", "default": "AIND", - "enum": [ - "AIND" - ], "title": "Abbreviation", "type": "string" }, @@ -447,9 +417,6 @@ "registry_identifier": { "const": "04szwah67", "default": "04szwah67", - "enum": [ - "04szwah67" - ], "title": "Registry Identifier", "type": "string" } @@ -464,18 +431,12 @@ "name": { "const": "Behavior videos", "default": "Behavior videos", - "enum": [ - "Behavior videos" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "behavior-videos", "default": "behavior-videos", - "enum": [ - "behavior-videos" - ], "title": "Abbreviation", "type": "string" } @@ -489,18 +450,12 @@ "name": { "const": "Chan Zuckerberg Initiative", "default": "Chan Zuckerberg Initiative", - "enum": [ - "Chan Zuckerberg Initiative" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "CZI", "default": "CZI", - "enum": [ - "CZI" - ], "title": "Abbreviation", "type": "string" }, @@ -549,9 +504,6 @@ "registry_identifier": { "const": "02qenvm24", "default": "02qenvm24", - "enum": [ - "02qenvm24" - ], "title": "Registry Identifier", "type": "string" } @@ -565,18 +517,12 @@ "name": { "const": "Columbia University", "default": "Columbia University", - "enum": [ - "Columbia University" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Columbia", "default": "Columbia", - "enum": [ - "Columbia" - ], "title": "Abbreviation", "type": "string" }, @@ -625,9 +571,6 @@ "registry_identifier": { "const": "00hj8s172", "default": "00hj8s172", - "enum": [ - "00hj8s172" - ], "title": "Registry Identifier", "type": "string" } @@ -642,18 +585,12 @@ "name": { "const": "Edinburgh Mouse Atlas Project", "default": "Edinburgh Mouse Atlas Project", - "enum": [ - "Edinburgh Mouse Atlas Project" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "EMAPA", "default": "EMAPA", - "enum": [ - "EMAPA" - ], "title": "Abbreviation", "type": "string" } @@ -668,18 +605,12 @@ "name": { "const": "Electromyography", "default": "Electromyography", - "enum": [ - "Electromyography" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "EMG", "default": "EMG", - "enum": [ - "EMG" - ], "title": "Abbreviation", "type": "string" } @@ -693,18 +624,12 @@ "name": { "const": "ExaSPIM platform", "default": "ExaSPIM platform", - "enum": [ - "ExaSPIM platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "exaSPIM", "default": "exaSPIM", - "enum": [ - "exaSPIM" - ], "title": "Abbreviation", "type": "string" } @@ -719,18 +644,12 @@ "name": { "const": "Fiber photometry", "default": "Fiber photometry", - "enum": [ - "Fiber photometry" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "fib", "default": "fib", - "enum": [ - "fib" - ], "title": "Abbreviation", "type": "string" } @@ -744,18 +663,12 @@ "name": { "const": "Frame-projected independent-fiber photometry platform", "default": "Frame-projected independent-fiber photometry platform", - "enum": [ - "Frame-projected independent-fiber photometry platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "FIP", "default": "FIP", - "enum": [ - "FIP" - ], "title": "Abbreviation", "type": "string" } @@ -770,18 +683,12 @@ "name": { "const": "Fluorescence micro-optical sectioning tomography", "default": "Fluorescence micro-optical sectioning tomography", - "enum": [ - "Fluorescence micro-optical sectioning tomography" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "fMOST", "default": "fMOST", - "enum": [ - "fMOST" - ], "title": "Abbreviation", "type": "string" } @@ -795,18 +702,12 @@ "name": { "const": "Hybridization chain reaction platform", "default": "Hybridization chain reaction platform", - "enum": [ - "Hybridization chain reaction platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "HCR", "default": "HCR", - "enum": [ - "HCR" - ], "title": "Abbreviation", "type": "string" } @@ -820,18 +721,12 @@ "name": { "const": "Hyperspectral fiber photometry platform", "default": "Hyperspectral fiber photometry platform", - "enum": [ - "Hyperspectral fiber photometry platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "HSFP", "default": "HSFP", - "enum": [ - "HSFP" - ], "title": "Abbreviation", "type": "string" } @@ -845,18 +740,12 @@ "name": { "const": "Huazhong University of Science and Technology", "default": "Huazhong University of Science and Technology", - "enum": [ - "Huazhong University of Science and Technology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "HUST", "default": "HUST", - "enum": [ - "HUST" - ], "title": "Abbreviation", "type": "string" }, @@ -905,9 +794,6 @@ "registry_identifier": { "const": "00p991c53", "default": "00p991c53", - "enum": [ - "00p991c53" - ], "title": "Registry Identifier", "type": "string" } @@ -922,18 +808,12 @@ "name": { "const": "Intracellular electrophysiology", "default": "Intracellular electrophysiology", - "enum": [ - "Intracellular electrophysiology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "icephys", "default": "icephys", - "enum": [ - "icephys" - ], "title": "Abbreviation", "type": "string" } @@ -947,18 +827,12 @@ "name": { "const": "Janelia Research Campus", "default": "Janelia Research Campus", - "enum": [ - "Janelia Research Campus" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Janelia", "default": "Janelia", - "enum": [ - "Janelia" - ], "title": "Abbreviation", "type": "string" }, @@ -1007,9 +881,6 @@ "registry_identifier": { "const": "013sk6x84", "default": "013sk6x84", - "enum": [ - "013sk6x84" - ], "title": "Registry Identifier", "type": "string" } @@ -1023,18 +894,12 @@ "name": { "const": "MBF Bioscience", "default": "MBF Bioscience", - "enum": [ - "MBF Bioscience" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MBF", "default": "MBF", - "enum": [ - "MBF" - ], "title": "Abbreviation", "type": "string" }, @@ -1083,9 +948,6 @@ "registry_identifier": { "const": "02zynam48", "default": "02zynam48", - "enum": [ - "02zynam48" - ], "title": "Registry Identifier", "type": "string" } @@ -1099,18 +961,12 @@ "name": { "const": "MesoSPIM platform", "default": "MesoSPIM platform", - "enum": [ - "MesoSPIM platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "mesoSPIM", "default": "mesoSPIM", - "enum": [ - "mesoSPIM" - ], "title": "Abbreviation", "type": "string" } @@ -1125,18 +981,12 @@ "name": { "const": "Mouse Genome Informatics", "default": "Mouse Genome Informatics", - "enum": [ - "Mouse Genome Informatics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MGI", "default": "MGI", - "enum": [ - "MGI" - ], "title": "Abbreviation", "type": "string" } @@ -1150,18 +1000,12 @@ "name": { "const": "Michael J. Fox Foundation for Parkinson's Research", "default": "Michael J. Fox Foundation for Parkinson's Research", - "enum": [ - "Michael J. Fox Foundation for Parkinson's Research" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MJFF", "default": "MJFF", - "enum": [ - "MJFF" - ], "title": "Abbreviation", "type": "string" }, @@ -1210,9 +1054,6 @@ "registry_identifier": { "const": "03arq3225", "default": "03arq3225", - "enum": [ - "03arq3225" - ], "title": "Registry Identifier", "type": "string" } @@ -1226,18 +1067,12 @@ "name": { "const": "Motor observatory platform", "default": "Motor observatory platform", - "enum": [ - "Motor observatory platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "motor-observatory", "default": "motor-observatory", - "enum": [ - "motor-observatory" - ], "title": "Abbreviation", "type": "string" } @@ -1251,18 +1086,12 @@ "name": { "const": "Multiplane optical physiology platform", "default": "Multiplane optical physiology platform", - "enum": [ - "Multiplane optical physiology platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "multiplane-ophys", "default": "multiplane-ophys", - "enum": [ - "multiplane-ophys" - ], "title": "Abbreviation", "type": "string" } @@ -1276,18 +1105,12 @@ "name": { "const": "National Center for Complementary and Integrative Health", "default": "National Center for Complementary and Integrative Health", - "enum": [ - "National Center for Complementary and Integrative Health" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NCCIH", "default": "NCCIH", - "enum": [ - "NCCIH" - ], "title": "Abbreviation", "type": "string" }, @@ -1336,9 +1159,6 @@ "registry_identifier": { "const": "00190t495", "default": "00190t495", - "enum": [ - "00190t495" - ], "title": "Registry Identifier", "type": "string" } @@ -1352,18 +1172,12 @@ "name": { "const": "National Institute of Mental Health", "default": "National Institute of Mental Health", - "enum": [ - "National Institute of Mental Health" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NIMH", "default": "NIMH", - "enum": [ - "NIMH" - ], "title": "Abbreviation", "type": "string" }, @@ -1412,9 +1226,6 @@ "registry_identifier": { "const": "04xeg9z08", "default": "04xeg9z08", - "enum": [ - "04xeg9z08" - ], "title": "Registry Identifier", "type": "string" } @@ -1428,18 +1239,12 @@ "name": { "const": "National Institute of Neurological Disorders and Stroke", "default": "National Institute of Neurological Disorders and Stroke", - "enum": [ - "National Institute of Neurological Disorders and Stroke" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NINDS", "default": "NINDS", - "enum": [ - "NINDS" - ], "title": "Abbreviation", "type": "string" }, @@ -1488,9 +1293,6 @@ "registry_identifier": { "const": "01s5ya894", "default": "01s5ya894", - "enum": [ - "01s5ya894" - ], "title": "Registry Identifier", "type": "string" } @@ -1505,18 +1307,12 @@ "name": { "const": "National Center for Biotechnology Information", "default": "National Center for Biotechnology Information", - "enum": [ - "National Center for Biotechnology Information" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NCBI", "default": "NCBI", - "enum": [ - "NCBI" - ], "title": "Abbreviation", "type": "string" } @@ -1530,18 +1326,12 @@ "name": { "const": "New York University", "default": "New York University", - "enum": [ - "New York University" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NYU", "default": "NYU", - "enum": [ - "NYU" - ], "title": "Abbreviation", "type": "string" }, @@ -1590,9 +1380,6 @@ "registry_identifier": { "const": "0190ak572", "default": "0190ak572", - "enum": [ - "0190ak572" - ], "title": "Registry Identifier", "type": "string" } @@ -1607,18 +1394,12 @@ "name": { "const": "Open Researcher and Contributor ID", "default": "Open Researcher and Contributor ID", - "enum": [ - "Open Researcher and Contributor ID" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ORCID", "default": "ORCID", - "enum": [ - "ORCID" - ], "title": "Abbreviation", "type": "string" } @@ -1632,18 +1413,12 @@ "name": { "const": "Other", "default": "Other", - "enum": [ - "Other" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -1668,18 +1443,12 @@ "name": { "const": "Planar optical physiology", "default": "Planar optical physiology", - "enum": [ - "Planar optical physiology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "pophys", "default": "pophys", - "enum": [ - "pophys" - ], "title": "Abbreviation", "type": "string" } @@ -1694,18 +1463,12 @@ "name": { "const": "Research Organization Registry", "default": "Research Organization Registry", - "enum": [ - "Research Organization Registry" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ROR", "default": "ROR", - "enum": [ - "ROR" - ], "title": "Abbreviation", "type": "string" } @@ -1720,18 +1483,12 @@ "name": { "const": "Research Resource Identifiers", "default": "Research Resource Identifiers", - "enum": [ - "Research Resource Identifiers" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "RRID", "default": "RRID", - "enum": [ - "RRID" - ], "title": "Abbreviation", "type": "string" } @@ -1745,18 +1502,12 @@ "name": { "const": "Simons Foundation", "default": "Simons Foundation", - "enum": [ - "Simons Foundation" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -1805,9 +1556,6 @@ "registry_identifier": { "const": "01cmst727", "default": "01cmst727", - "enum": [ - "01cmst727" - ], "title": "Registry Identifier", "type": "string" } @@ -1821,18 +1569,12 @@ "name": { "const": "Single-plane optical physiology platform", "default": "Single-plane optical physiology platform", - "enum": [ - "Single-plane optical physiology platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "single-plane-ophys", "default": "single-plane-ophys", - "enum": [ - "single-plane-ophys" - ], "title": "Abbreviation", "type": "string" } @@ -1847,18 +1589,12 @@ "name": { "const": "Scanned line projection imaging", "default": "Scanned line projection imaging", - "enum": [ - "Scanned line projection imaging" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "slap", "default": "slap", - "enum": [ - "slap" - ], "title": "Abbreviation", "type": "string" } @@ -1872,18 +1608,12 @@ "name": { "const": "SLAP2 platform", "default": "SLAP2 platform", - "enum": [ - "SLAP2 platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "SLAP2", "default": "SLAP2", - "enum": [ - "SLAP2" - ], "title": "Abbreviation", "type": "string" } @@ -1897,18 +1627,12 @@ "name": { "const": "SmartSPIM platform", "default": "SmartSPIM platform", - "enum": [ - "SmartSPIM platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "SmartSPIM", "default": "SmartSPIM", - "enum": [ - "SmartSPIM" - ], "title": "Abbreviation", "type": "string" } @@ -1923,18 +1647,12 @@ "name": { "const": "Selective plane illumination microscopy", "default": "Selective plane illumination microscopy", - "enum": [ - "Selective plane illumination microscopy" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "SPIM", "default": "SPIM", - "enum": [ - "SPIM" - ], "title": "Abbreviation", "type": "string" } @@ -1948,18 +1666,12 @@ "name": { "const": "Templeton World Charity Foundation", "default": "Templeton World Charity Foundation", - "enum": [ - "Templeton World Charity Foundation" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "TWCF", "default": "TWCF", - "enum": [ - "TWCF" - ], "title": "Abbreviation", "type": "string" }, @@ -2008,9 +1720,6 @@ "registry_identifier": { "const": "00x0z1472", "default": "00x0z1472", - "enum": [ - "00x0z1472" - ], "title": "Registry Identifier", "type": "string" } @@ -2025,18 +1734,12 @@ "name": { "const": "Behavior", "default": "Behavior", - "enum": [ - "Behavior" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "behavior", "default": "behavior", - "enum": [ - "behavior" - ], "title": "Abbreviation", "type": "string" } @@ -2051,18 +1754,12 @@ "name": { "const": "Confocal microscopy", "default": "Confocal microscopy", - "enum": [ - "Confocal microscopy" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "confocal", "default": "confocal", - "enum": [ - "confocal" - ], "title": "Abbreviation", "type": "string" } @@ -2077,18 +1774,12 @@ "name": { "const": "Extracellular electrophysiology", "default": "Extracellular electrophysiology", - "enum": [ - "Extracellular electrophysiology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ecephys", "default": "ecephys", - "enum": [ - "ecephys" - ], "title": "Abbreviation", "type": "string" } @@ -2103,18 +1794,12 @@ "name": { "const": "Intrinsic signal imaging", "default": "Intrinsic signal imaging", - "enum": [ - "Intrinsic signal imaging" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ISI", "default": "ISI", - "enum": [ - "ISI" - ], "title": "Abbreviation", "type": "string" } @@ -2129,18 +1814,12 @@ "name": { "const": "Multiplexed error-robust fluorescence in situ hybridization", "default": "Multiplexed error-robust fluorescence in situ hybridization", - "enum": [ - "Multiplexed error-robust fluorescence in situ hybridization" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "merfish", "default": "merfish", - "enum": [ - "merfish" - ], "title": "Abbreviation", "type": "string" } @@ -2155,18 +1834,12 @@ "name": { "const": "Magnetic resonance imaging", "default": "Magnetic resonance imaging", - "enum": [ - "Magnetic resonance imaging" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MRI", "default": "MRI", - "enum": [ - "MRI" - ], "title": "Abbreviation", "type": "string" } @@ -2180,18 +1853,12 @@ "name": { "const": "Behavior platform", "default": "Behavior platform", - "enum": [ - "Behavior platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "behavior", "default": "behavior", - "enum": [ - "behavior" - ], "title": "Abbreviation", "type": "string" } @@ -2205,18 +1872,12 @@ "name": { "const": "Confocal microscopy platform", "default": "Confocal microscopy platform", - "enum": [ - "Confocal microscopy platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "confocal", "default": "confocal", - "enum": [ - "confocal" - ], "title": "Abbreviation", "type": "string" } @@ -2230,18 +1891,12 @@ "name": { "const": "Electrophysiology platform", "default": "Electrophysiology platform", - "enum": [ - "Electrophysiology platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ecephys", "default": "ecephys", - "enum": [ - "ecephys" - ], "title": "Abbreviation", "type": "string" } @@ -2255,18 +1910,12 @@ "name": { "const": "Intrinsic signal imaging platform", "default": "Intrinsic signal imaging platform", - "enum": [ - "Intrinsic signal imaging platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ISI", "default": "ISI", - "enum": [ - "ISI" - ], "title": "Abbreviation", "type": "string" } @@ -2280,18 +1929,12 @@ "name": { "const": "MERFISH platform", "default": "MERFISH platform", - "enum": [ - "MERFISH platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MERFISH", "default": "MERFISH", - "enum": [ - "MERFISH" - ], "title": "Abbreviation", "type": "string" } @@ -2305,18 +1948,12 @@ "name": { "const": "Magnetic resonance imaging platform", "default": "Magnetic resonance imaging platform", - "enum": [ - "Magnetic resonance imaging platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MRI", "default": "MRI", - "enum": [ - "MRI" - ], "title": "Abbreviation", "type": "string" } @@ -2335,20 +1972,14 @@ "type": "string" }, "schema_version": { - "const": "1.0.3", - "default": "1.0.3", - "enum": [ - "1.0.3" - ], + "const": "1.0.4", + "default": "1.0.4", "title": "Schema Version", "type": "string" }, "license": { "const": "CC-BY-4.0", "default": "CC-BY-4.0", - "enum": [ - "CC-BY-4.0" - ], "title": "License", "type": "string" }, diff --git a/schemas/instrument_schema.json b/schemas/instrument_schema.json index 02ee99d83..de7e35e2f 100644 --- a/schemas/instrument_schema.json +++ b/schemas/instrument_schema.json @@ -7,9 +7,6 @@ "device_type": { "const": "Additional imaging device", "default": "Additional imaging device", - "enum": [ - "Additional imaging device" - ], "title": "Device Type", "type": "string" }, @@ -50,12 +47,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -72,9 +71,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -101,10 +102,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -119,6 +122,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -175,6 +179,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -193,6 +200,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -241,6 +251,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -250,6 +263,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -328,6 +344,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -337,6 +356,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -382,6 +404,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -624,9 +649,6 @@ "device_type": { "const": "DAQ Device", "default": "DAQ Device", - "enum": [ - "DAQ Device" - ], "title": "Device Type", "type": "string" }, @@ -820,9 +842,6 @@ "device_type": { "const": "Detector", "default": "Detector", - "enum": [ - "Detector" - ], "title": "Device Type", "type": "string" }, @@ -1263,9 +1282,6 @@ "device_type": { "const": "Enclosure", "default": "Enclosure", - "enum": [ - "Enclosure" - ], "title": "Device Type", "type": "string" }, @@ -1306,12 +1322,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -1328,9 +1346,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -1357,10 +1377,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -1375,6 +1397,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -1431,6 +1454,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -1449,6 +1475,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -1497,6 +1526,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -1506,6 +1538,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -1584,6 +1619,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -1593,6 +1631,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -1638,6 +1679,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -1757,9 +1801,6 @@ "device_type": { "const": "Filter", "default": "Filter", - "enum": [ - "Filter" - ], "title": "Device Type", "type": "string" }, @@ -2098,9 +2139,6 @@ "device_type": { "const": "Lamp", "default": "Lamp", - "enum": [ - "Lamp" - ], "title": "Device Type", "type": "string" }, @@ -2141,12 +2179,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -2163,9 +2203,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -2192,10 +2234,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -2210,6 +2254,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -2266,6 +2311,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -2284,6 +2332,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -2332,6 +2383,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -2341,6 +2395,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -2419,6 +2476,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -2428,6 +2488,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -2473,6 +2536,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -2608,9 +2674,6 @@ "device_type": { "const": "Laser", "default": "Laser", - "enum": [ - "Laser" - ], "title": "Device Type", "type": "string" }, @@ -2779,9 +2842,6 @@ "coupling_efficiency_unit": { "const": "percent", "default": "percent", - "enum": [ - "percent" - ], "title": "Coupling efficiency unit", "type": "string" }, @@ -2813,9 +2873,6 @@ "device_type": { "const": "Lens", "default": "Lens", - "enum": [ - "Lens" - ], "title": "Device Type", "type": "string" }, @@ -3049,9 +3106,6 @@ "device_type": { "const": "Light emitting diode", "default": "Light emitting diode", - "enum": [ - "Light emitting diode" - ], "title": "Device Type", "type": "string" }, @@ -3197,9 +3251,6 @@ "device_type": { "const": "Motorized stage", "default": "Motorized stage", - "enum": [ - "Motorized stage" - ], "title": "Device Type", "type": "string" }, @@ -3240,12 +3291,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -3262,9 +3315,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -3291,10 +3346,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -3309,6 +3366,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -3365,6 +3423,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -3383,6 +3444,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -3431,6 +3495,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -3440,6 +3507,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -3518,6 +3588,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -3527,6 +3600,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -3572,6 +3648,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -3690,9 +3769,6 @@ "device_type": { "const": "Objective", "default": "Objective", - "enum": [ - "Objective" - ], "title": "Device Type", "type": "string" }, @@ -3733,12 +3809,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -3755,9 +3833,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -3784,10 +3864,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -3802,6 +3884,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -3858,6 +3941,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -3876,6 +3962,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -3924,6 +4013,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -3933,6 +4025,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -4011,6 +4106,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -4020,6 +4118,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -4065,6 +4166,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -4204,9 +4308,6 @@ "device_type": { "const": "Optical table", "default": "Optical table", - "enum": [ - "Optical table" - ], "title": "Device Type", "type": "string" }, @@ -4247,12 +4348,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -4269,9 +4372,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -4298,10 +4403,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -4316,6 +4423,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -4372,6 +4480,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -4390,6 +4501,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -4438,6 +4552,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -4447,6 +4564,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -4525,6 +4645,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -4534,6 +4657,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -4579,6 +4705,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -4727,9 +4856,6 @@ "device_type": { "const": "Motorized stage", "default": "Motorized stage", - "enum": [ - "Motorized stage" - ], "title": "Device Type", "type": "string" }, @@ -4770,12 +4896,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -4792,9 +4920,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -4821,10 +4951,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -4839,6 +4971,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -4895,6 +5028,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -4913,6 +5049,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -4961,6 +5100,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -4970,6 +5112,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -5048,6 +5193,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -5057,6 +5205,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -5102,6 +5253,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -5339,18 +5493,12 @@ "name": { "const": "AA Opto Electronic", "default": "AA Opto Electronic", - "enum": [ - "AA Opto Electronic" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5374,18 +5522,12 @@ "name": { "const": "Abcam", "default": "Abcam", - "enum": [ - "Abcam" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5434,9 +5576,6 @@ "registry_identifier": { "const": "02e1wjw63", "default": "02e1wjw63", - "enum": [ - "02e1wjw63" - ], "title": "Registry Identifier", "type": "string" } @@ -5450,18 +5589,12 @@ "name": { "const": "Ailipu Technology Co", "default": "Ailipu Technology Co", - "enum": [ - "Ailipu Technology Co" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Ailipu", "default": "Ailipu", - "enum": [ - "Ailipu" - ], "title": "Abbreviation", "type": "string" }, @@ -5485,18 +5618,12 @@ "name": { "const": "Allen Institute", "default": "Allen Institute", - "enum": [ - "Allen Institute" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "AI", "default": "AI", - "enum": [ - "AI" - ], "title": "Abbreviation", "type": "string" }, @@ -5545,9 +5672,6 @@ "registry_identifier": { "const": "03cpe7c52", "default": "03cpe7c52", - "enum": [ - "03cpe7c52" - ], "title": "Registry Identifier", "type": "string" } @@ -5561,18 +5685,12 @@ "name": { "const": "Allen Institute for Brain Science", "default": "Allen Institute for Brain Science", - "enum": [ - "Allen Institute for Brain Science" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "AIBS", "default": "AIBS", - "enum": [ - "AIBS" - ], "title": "Abbreviation", "type": "string" }, @@ -5621,9 +5739,6 @@ "registry_identifier": { "const": "00dcv1019", "default": "00dcv1019", - "enum": [ - "00dcv1019" - ], "title": "Registry Identifier", "type": "string" } @@ -5637,18 +5752,12 @@ "name": { "const": "Allen Institute for Neural Dynamics", "default": "Allen Institute for Neural Dynamics", - "enum": [ - "Allen Institute for Neural Dynamics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "AIND", "default": "AIND", - "enum": [ - "AIND" - ], "title": "Abbreviation", "type": "string" }, @@ -5697,9 +5806,6 @@ "registry_identifier": { "const": "04szwah67", "default": "04szwah67", - "enum": [ - "04szwah67" - ], "title": "Registry Identifier", "type": "string" } @@ -5713,18 +5819,12 @@ "name": { "const": "Allied", "default": "Allied", - "enum": [ - "Allied" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5748,18 +5848,12 @@ "name": { "const": "ams OSRAM", "default": "ams OSRAM", - "enum": [ - "ams OSRAM" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5808,9 +5902,6 @@ "registry_identifier": { "const": "045d0h266", "default": "045d0h266", - "enum": [ - "045d0h266" - ], "title": "Registry Identifier", "type": "string" } @@ -5824,18 +5915,12 @@ "name": { "const": "Applied Scientific Instrumentation", "default": "Applied Scientific Instrumentation", - "enum": [ - "Applied Scientific Instrumentation" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ASI", "default": "ASI", - "enum": [ - "ASI" - ], "title": "Abbreviation", "type": "string" }, @@ -5859,18 +5944,12 @@ "name": { "const": "Arecont Vision Costar", "default": "Arecont Vision Costar", - "enum": [ - "Arecont Vision Costar" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5894,18 +5973,12 @@ "name": { "const": "ASUS", "default": "ASUS", - "enum": [ - "ASUS" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5954,9 +6027,6 @@ "registry_identifier": { "const": "00bxkz165", "default": "00bxkz165", - "enum": [ - "00bxkz165" - ], "title": "Registry Identifier", "type": "string" } @@ -5970,18 +6040,12 @@ "name": { "const": "Basler", "default": "Basler", - "enum": [ - "Basler" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -6005,18 +6069,12 @@ "name": { "const": "Cambridge Technology", "default": "Cambridge Technology", - "enum": [ - "Cambridge Technology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -6040,18 +6098,12 @@ "name": { "const": "Carl Zeiss", "default": "Carl Zeiss", - "enum": [ - "Carl Zeiss" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -6100,9 +6152,6 @@ "registry_identifier": { "const": "01xk5xs43", "default": "01xk5xs43", - "enum": [ - "01xk5xs43" - ], "title": "Registry Identifier", "type": "string" } @@ -6116,18 +6165,12 @@ "name": { "const": "Champalimaud Foundation", "default": "Champalimaud Foundation", - "enum": [ - "Champalimaud Foundation" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Champalimaud", "default": "Champalimaud", - "enum": [ - "Champalimaud" - ], "title": "Abbreviation", "type": "string" }, @@ -6176,9 +6219,6 @@ "registry_identifier": { "const": "03g001n57", "default": "03g001n57", - "enum": [ - "03g001n57" - ], "title": "Registry Identifier", "type": "string" } @@ -6192,18 +6232,12 @@ "name": { "const": "Chan Zuckerberg Initiative", "default": "Chan Zuckerberg Initiative", - "enum": [ - "Chan Zuckerberg Initiative" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "CZI", "default": "CZI", - "enum": [ - "CZI" - ], "title": "Abbreviation", "type": "string" }, @@ -6252,9 +6286,6 @@ "registry_identifier": { "const": "02qenvm24", "default": "02qenvm24", - "enum": [ - "02qenvm24" - ], "title": "Registry Identifier", "type": "string" } @@ -6262,24 +6293,85 @@ "title": "_Chan_Zuckerberg_Initiative", "type": "object" }, + "_Charles_River_Laboratories": { + "description": "Model Charles River Laboratories", + "properties": { + "name": { + "const": "Charles River Laboratories", + "default": "Charles River Laboratories", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "CRL", + "default": "CRL", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03ndmsg87", + "default": "03ndmsg87", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Charles_River_Laboratories", + "type": "object" + }, "_Chroma": { "description": "Model Chroma", "properties": { "name": { "const": "Chroma", "default": "Chroma", - "enum": [ - "Chroma" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -6303,18 +6395,12 @@ "name": { "const": "Coherent Scientific", "default": "Coherent Scientific", - "enum": [ - "Coherent Scientific" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -6363,9 +6449,6 @@ "registry_identifier": { "const": "031tysd23", "default": "031tysd23", - "enum": [ - "031tysd23" - ], "title": "Registry Identifier", "type": "string" } @@ -6379,18 +6462,12 @@ "name": { "const": "Columbia University", "default": "Columbia University", - "enum": [ - "Columbia University" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Columbia", "default": "Columbia", - "enum": [ - "Columbia" - ], "title": "Abbreviation", "type": "string" }, @@ -6439,9 +6516,6 @@ "registry_identifier": { "const": "00hj8s172", "default": "00hj8s172", - "enum": [ - "00hj8s172" - ], "title": "Registry Identifier", "type": "string" } @@ -6455,18 +6529,12 @@ "name": { "const": "Computar", "default": "Computar", - "enum": [ - "Computar" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -6490,18 +6558,12 @@ "name": { "const": "Conoptics", "default": "Conoptics", - "enum": [ - "Conoptics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -6525,18 +6587,12 @@ "name": { "const": "Custom", "default": "Custom", - "enum": [ - "Custom" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -6554,24 +6610,47 @@ "title": "_Custom", "type": "object" }, + "_Digikey": { + "description": "Model DigiKey", + "properties": { + "name": { + "const": "DigiKey", + "default": "DigiKey", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Digikey", + "type": "object" + }, "_Dodotronic": { "description": "Model Dodotronic", "properties": { "name": { "const": "Dodotronic", "default": "Dodotronic", - "enum": [ - "Dodotronic" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -6595,18 +6674,12 @@ "name": { "const": "Doric", "default": "Doric", - "enum": [ - "Doric" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -6655,9 +6728,6 @@ "registry_identifier": { "const": "059n53q30", "default": "059n53q30", - "enum": [ - "059n53q30" - ], "title": "Registry Identifier", "type": "string" } @@ -6671,18 +6741,12 @@ "name": { "const": "Ealing", "default": "Ealing", - "enum": [ - "Ealing" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -6706,18 +6770,12 @@ "name": { "const": "Edmund Optics", "default": "Edmund Optics", - "enum": [ - "Edmund Optics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -6766,9 +6824,6 @@ "registry_identifier": { "const": "01j1gwp17", "default": "01j1gwp17", - "enum": [ - "01j1gwp17" - ], "title": "Registry Identifier", "type": "string" } @@ -6783,18 +6838,12 @@ "name": { "const": "Edinburgh Mouse Atlas Project", "default": "Edinburgh Mouse Atlas Project", - "enum": [ - "Edinburgh Mouse Atlas Project" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "EMAPA", "default": "EMAPA", - "enum": [ - "EMAPA" - ], "title": "Abbreviation", "type": "string" } @@ -6808,18 +6857,12 @@ "name": { "const": "Emory University", "default": "Emory University", - "enum": [ - "Emory University" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Emory", "default": "Emory", - "enum": [ - "Emory" - ], "title": "Abbreviation", "type": "string" }, @@ -6868,9 +6911,6 @@ "registry_identifier": { "const": "03czfpz43", "default": "03czfpz43", - "enum": [ - "03czfpz43" - ], "title": "Registry Identifier", "type": "string" } @@ -6884,18 +6924,12 @@ "name": { "const": "Euresys", "default": "Euresys", - "enum": [ - "Euresys" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -6919,18 +6953,12 @@ "name": { "const": "Fujinon", "default": "Fujinon", - "enum": [ - "Fujinon" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -6954,18 +6982,12 @@ "name": { "const": "Hamamatsu", "default": "Hamamatsu", - "enum": [ - "Hamamatsu" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -7014,9 +7036,6 @@ "registry_identifier": { "const": "03natb733", "default": "03natb733", - "enum": [ - "03natb733" - ], "title": "Registry Identifier", "type": "string" } @@ -7030,18 +7049,12 @@ "name": { "const": "Hamilton", "default": "Hamilton", - "enum": [ - "Hamilton" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -7065,18 +7078,12 @@ "name": { "const": "Huazhong University of Science and Technology", "default": "Huazhong University of Science and Technology", - "enum": [ - "Huazhong University of Science and Technology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "HUST", "default": "HUST", - "enum": [ - "HUST" - ], "title": "Abbreviation", "type": "string" }, @@ -7125,9 +7132,6 @@ "registry_identifier": { "const": "00p991c53", "default": "00p991c53", - "enum": [ - "00p991c53" - ], "title": "Registry Identifier", "type": "string" } @@ -7141,18 +7145,12 @@ "name": { "const": "Infinity Photo-Optical", "default": "Infinity Photo-Optical", - "enum": [ - "Infinity Photo-Optical" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -7176,18 +7174,12 @@ "name": { "const": "Integrated DNA Technologies", "default": "Integrated DNA Technologies", - "enum": [ - "Integrated DNA Technologies" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "IDT", "default": "IDT", - "enum": [ - "IDT" - ], "title": "Abbreviation", "type": "string" }, @@ -7236,9 +7228,6 @@ "registry_identifier": { "const": "009jvpf03", "default": "009jvpf03", - "enum": [ - "009jvpf03" - ], "title": "Registry Identifier", "type": "string" } @@ -7252,18 +7241,12 @@ "name": { "const": "Interuniversity Microelectronics Center", "default": "Interuniversity Microelectronics Center", - "enum": [ - "Interuniversity Microelectronics Center" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "IMEC", "default": "IMEC", - "enum": [ - "IMEC" - ], "title": "Abbreviation", "type": "string" }, @@ -7312,9 +7295,6 @@ "registry_identifier": { "const": "02kcbn207", "default": "02kcbn207", - "enum": [ - "02kcbn207" - ], "title": "Registry Identifier", "type": "string" } @@ -7328,18 +7308,12 @@ "name": { "const": "Invitrogen", "default": "Invitrogen", - "enum": [ - "Invitrogen" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -7388,9 +7362,6 @@ "registry_identifier": { "const": "03x1ewr52", "default": "03x1ewr52", - "enum": [ - "03x1ewr52" - ], "title": "Registry Identifier", "type": "string" } @@ -7404,18 +7375,12 @@ "name": { "const": "IR Robot Co", "default": "IR Robot Co", - "enum": [ - "IR Robot Co" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -7439,18 +7404,12 @@ "name": { "const": "ISL Products International", "default": "ISL Products International", - "enum": [ - "ISL Products International" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ISL", "default": "ISL", - "enum": [ - "ISL" - ], "title": "Abbreviation", "type": "string" }, @@ -7468,24 +7427,47 @@ "title": "_Isl_Products_International", "type": "object" }, + "_Item": { + "description": "Model Item", + "properties": { + "name": { + "const": "Item", + "default": "Item", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Item", + "type": "object" + }, "_Jackson_Laboratory": { "description": "Model Jackson Laboratory", "properties": { "name": { "const": "Jackson Laboratory", "default": "Jackson Laboratory", - "enum": [ - "Jackson Laboratory" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "JAX", "default": "JAX", - "enum": [ - "JAX" - ], "title": "Abbreviation", "type": "string" }, @@ -7534,9 +7516,6 @@ "registry_identifier": { "const": "021sy4w91", "default": "021sy4w91", - "enum": [ - "021sy4w91" - ], "title": "Registry Identifier", "type": "string" } @@ -7550,18 +7529,12 @@ "name": { "const": "Janelia Research Campus", "default": "Janelia Research Campus", - "enum": [ - "Janelia Research Campus" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Janelia", "default": "Janelia", - "enum": [ - "Janelia" - ], "title": "Abbreviation", "type": "string" }, @@ -7610,9 +7583,6 @@ "registry_identifier": { "const": "013sk6x84", "default": "013sk6x84", - "enum": [ - "013sk6x84" - ], "title": "Registry Identifier", "type": "string" } @@ -7626,18 +7596,12 @@ "name": { "const": "Julabo", "default": "Julabo", - "enum": [ - "Julabo" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -7655,24 +7619,85 @@ "title": "_Julabo", "type": "object" }, + "_Kowa": { + "description": "Model Kowa", + "properties": { + "name": { + "const": "Kowa", + "default": "Kowa", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03zbwg482", + "default": "03zbwg482", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Kowa", + "type": "object" + }, "_Leica": { "description": "Model Leica", "properties": { "name": { "const": "Leica", "default": "Leica", - "enum": [ - "Leica" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -7696,18 +7721,12 @@ "name": { "const": "LG", "default": "LG", - "enum": [ - "LG" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -7756,9 +7775,6 @@ "registry_identifier": { "const": "02b948n83", "default": "02b948n83", - "enum": [ - "02b948n83" - ], "title": "Registry Identifier", "type": "string" } @@ -7772,18 +7788,12 @@ "name": { "const": "LifeCanvas", "default": "LifeCanvas", - "enum": [ - "LifeCanvas" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -7807,18 +7817,12 @@ "name": { "const": "Lumen Dynamics", "default": "Lumen Dynamics", - "enum": [ - "Lumen Dynamics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -7842,18 +7846,12 @@ "name": { "const": "MBF Bioscience", "default": "MBF Bioscience", - "enum": [ - "MBF Bioscience" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MBF", "default": "MBF", - "enum": [ - "MBF" - ], "title": "Abbreviation", "type": "string" }, @@ -7902,9 +7900,6 @@ "registry_identifier": { "const": "02zynam48", "default": "02zynam48", - "enum": [ - "02zynam48" - ], "title": "Registry Identifier", "type": "string" } @@ -7918,18 +7913,12 @@ "name": { "const": "Meadowlark Optics", "default": "Meadowlark Optics", - "enum": [ - "Meadowlark Optics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -7978,9 +7967,6 @@ "registry_identifier": { "const": "00n8qbq54", "default": "00n8qbq54", - "enum": [ - "00n8qbq54" - ], "title": "Registry Identifier", "type": "string" } @@ -7995,18 +7981,12 @@ "name": { "const": "Mouse Genome Informatics", "default": "Mouse Genome Informatics", - "enum": [ - "Mouse Genome Informatics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MGI", "default": "MGI", - "enum": [ - "MGI" - ], "title": "Abbreviation", "type": "string" } @@ -8020,18 +8000,12 @@ "name": { "const": "Michael J. Fox Foundation for Parkinson's Research", "default": "Michael J. Fox Foundation for Parkinson's Research", - "enum": [ - "Michael J. Fox Foundation for Parkinson's Research" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MJFF", "default": "MJFF", - "enum": [ - "MJFF" - ], "title": "Abbreviation", "type": "string" }, @@ -8080,9 +8054,6 @@ "registry_identifier": { "const": "03arq3225", "default": "03arq3225", - "enum": [ - "03arq3225" - ], "title": "Registry Identifier", "type": "string" } @@ -8096,18 +8067,12 @@ "name": { "const": "Midwest Optical Systems, Inc.", "default": "Midwest Optical Systems, Inc.", - "enum": [ - "Midwest Optical Systems, Inc." - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MidOpt", "default": "MidOpt", - "enum": [ - "MidOpt" - ], "title": "Abbreviation", "type": "string" }, @@ -8131,18 +8096,12 @@ "name": { "const": "Mitutuyo", "default": "Mitutuyo", - "enum": [ - "Mitutuyo" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -8166,18 +8125,12 @@ "name": { "const": "MKS Newport", "default": "MKS Newport", - "enum": [ - "MKS Newport" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -8226,9 +8179,6 @@ "registry_identifier": { "const": "00k17f049", "default": "00k17f049", - "enum": [ - "00k17f049" - ], "title": "Registry Identifier", "type": "string" } @@ -8242,18 +8192,12 @@ "name": { "const": "MPI", "default": "MPI", - "enum": [ - "MPI" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MPI", "default": "MPI", - "enum": [ - "MPI" - ], "title": "Abbreviation", "type": "string" }, @@ -8277,18 +8221,12 @@ "name": { "const": "National Center for Complementary and Integrative Health", "default": "National Center for Complementary and Integrative Health", - "enum": [ - "National Center for Complementary and Integrative Health" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NCCIH", "default": "NCCIH", - "enum": [ - "NCCIH" - ], "title": "Abbreviation", "type": "string" }, @@ -8337,9 +8275,6 @@ "registry_identifier": { "const": "00190t495", "default": "00190t495", - "enum": [ - "00190t495" - ], "title": "Registry Identifier", "type": "string" } @@ -8353,18 +8288,12 @@ "name": { "const": "National Institute of Mental Health", "default": "National Institute of Mental Health", - "enum": [ - "National Institute of Mental Health" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NIMH", "default": "NIMH", - "enum": [ - "NIMH" - ], "title": "Abbreviation", "type": "string" }, @@ -8413,9 +8342,6 @@ "registry_identifier": { "const": "04xeg9z08", "default": "04xeg9z08", - "enum": [ - "04xeg9z08" - ], "title": "Registry Identifier", "type": "string" } @@ -8429,18 +8355,12 @@ "name": { "const": "National Institute of Neurological Disorders and Stroke", "default": "National Institute of Neurological Disorders and Stroke", - "enum": [ - "National Institute of Neurological Disorders and Stroke" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NINDS", "default": "NINDS", - "enum": [ - "NINDS" - ], "title": "Abbreviation", "type": "string" }, @@ -8489,9 +8409,6 @@ "registry_identifier": { "const": "01s5ya894", "default": "01s5ya894", - "enum": [ - "01s5ya894" - ], "title": "Registry Identifier", "type": "string" } @@ -8505,18 +8422,12 @@ "name": { "const": "National Instruments", "default": "National Instruments", - "enum": [ - "National Instruments" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -8565,9 +8476,6 @@ "registry_identifier": { "const": "026exqw73", "default": "026exqw73", - "enum": [ - "026exqw73" - ], "title": "Registry Identifier", "type": "string" } @@ -8581,18 +8489,12 @@ "name": { "const": "Navitar", "default": "Navitar", - "enum": [ - "Navitar" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -8617,18 +8519,12 @@ "name": { "const": "National Center for Biotechnology Information", "default": "National Center for Biotechnology Information", - "enum": [ - "National Center for Biotechnology Information" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NCBI", "default": "NCBI", - "enum": [ - "NCBI" - ], "title": "Abbreviation", "type": "string" } @@ -8642,18 +8538,12 @@ "name": { "const": "Neurophotometrics", "default": "Neurophotometrics", - "enum": [ - "Neurophotometrics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -8677,18 +8567,12 @@ "name": { "const": "New Scale Technologies", "default": "New Scale Technologies", - "enum": [ - "New Scale Technologies" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -8712,18 +8596,12 @@ "name": { "const": "New York University", "default": "New York University", - "enum": [ - "New York University" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NYU", "default": "NYU", - "enum": [ - "NYU" - ], "title": "Abbreviation", "type": "string" }, @@ -8772,9 +8650,6 @@ "registry_identifier": { "const": "0190ak572", "default": "0190ak572", - "enum": [ - "0190ak572" - ], "title": "Registry Identifier", "type": "string" } @@ -8788,18 +8663,12 @@ "name": { "const": "Nikon", "default": "Nikon", - "enum": [ - "Nikon" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -8848,9 +8717,6 @@ "registry_identifier": { "const": "0280y9h11", "default": "0280y9h11", - "enum": [ - "0280y9h11" - ], "title": "Registry Identifier", "type": "string" } @@ -8864,18 +8730,12 @@ "name": { "const": "NResearch Inc", "default": "NResearch Inc", - "enum": [ - "NResearch Inc" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -8899,18 +8759,12 @@ "name": { "const": "Olympus", "default": "Olympus", - "enum": [ - "Olympus" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -8959,9 +8813,6 @@ "registry_identifier": { "const": "02vcdte90", "default": "02vcdte90", - "enum": [ - "02vcdte90" - ], "title": "Registry Identifier", "type": "string" } @@ -8975,18 +8826,12 @@ "name": { "const": "Open Ephys Production Site", "default": "Open Ephys Production Site", - "enum": [ - "Open Ephys Production Site" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "OEPS", "default": "OEPS", - "enum": [ - "OEPS" - ], "title": "Abbreviation", "type": "string" }, @@ -9035,9 +8880,6 @@ "registry_identifier": { "const": "007rkz355", "default": "007rkz355", - "enum": [ - "007rkz355" - ], "title": "Registry Identifier", "type": "string" } @@ -9051,18 +8893,12 @@ "name": { "const": "Optotune", "default": "Optotune", - "enum": [ - "Optotune" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9087,18 +8923,12 @@ "name": { "const": "Open Researcher and Contributor ID", "default": "Open Researcher and Contributor ID", - "enum": [ - "Open Researcher and Contributor ID" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ORCID", "default": "ORCID", - "enum": [ - "ORCID" - ], "title": "Abbreviation", "type": "string" } @@ -9112,18 +8942,12 @@ "name": { "const": "Other", "default": "Other", - "enum": [ - "Other" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9147,18 +8971,12 @@ "name": { "const": "Oxxius", "default": "Oxxius", - "enum": [ - "Oxxius" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9176,24 +8994,47 @@ "title": "_Oxxius", "type": "object" }, + "_Placid_Industries": { + "description": "Model Placid Industries", + "properties": { + "name": { + "const": "Placid Industries", + "default": "Placid Industries", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Placid_Industries", + "type": "object" + }, "_Prizmatix": { "description": "Model Prizmatix", "properties": { "name": { "const": "Prizmatix", "default": "Prizmatix", - "enum": [ - "Prizmatix" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9217,18 +9058,12 @@ "name": { "const": "Quantifi", "default": "Quantifi", - "enum": [ - "Quantifi" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9252,18 +9087,12 @@ "name": { "const": "Raspberry Pi", "default": "Raspberry Pi", - "enum": [ - "Raspberry Pi" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9288,18 +9117,12 @@ "name": { "const": "Research Organization Registry", "default": "Research Organization Registry", - "enum": [ - "Research Organization Registry" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ROR", "default": "ROR", - "enum": [ - "ROR" - ], "title": "Abbreviation", "type": "string" } @@ -9314,18 +9137,12 @@ "name": { "const": "Research Resource Identifiers", "default": "Research Resource Identifiers", - "enum": [ - "Research Resource Identifiers" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "RRID", "default": "RRID", - "enum": [ - "RRID" - ], "title": "Abbreviation", "type": "string" } @@ -9333,24 +9150,47 @@ "title": "_Rrid", "type": "object" }, + "_Same_Sky": { + "description": "Model Same Sky", + "properties": { + "name": { + "const": "Same Sky", + "default": "Same Sky", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Same_Sky", + "type": "object" + }, "_Schneider_Kreuznach": { "description": "Model Schneider-Kreuznach", "properties": { "name": { "const": "Schneider-Kreuznach", "default": "Schneider-Kreuznach", - "enum": [ - "Schneider-Kreuznach" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9374,18 +9214,12 @@ "name": { "const": "Second Order Effects", "default": "Second Order Effects", - "enum": [ - "Second Order Effects" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9409,18 +9243,12 @@ "name": { "const": "Semrock", "default": "Semrock", - "enum": [ - "Semrock" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9444,18 +9272,12 @@ "name": { "const": "SICGEN", "default": "SICGEN", - "enum": [ - "SICGEN" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9479,18 +9301,12 @@ "name": { "const": "Sigma-Aldrich", "default": "Sigma-Aldrich", - "enum": [ - "Sigma-Aldrich" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9514,18 +9330,12 @@ "name": { "const": "Simons Foundation", "default": "Simons Foundation", - "enum": [ - "Simons Foundation" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9574,9 +9384,6 @@ "registry_identifier": { "const": "01cmst727", "default": "01cmst727", - "enum": [ - "01cmst727" - ], "title": "Registry Identifier", "type": "string" } @@ -9590,18 +9397,12 @@ "name": { "const": "Spinnaker", "default": "Spinnaker", - "enum": [ - "Spinnaker" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9625,18 +9426,12 @@ "name": { "const": "Tamron", "default": "Tamron", - "enum": [ - "Tamron" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9660,18 +9455,12 @@ "name": { "const": "Technical Manufacturing Corporation", "default": "Technical Manufacturing Corporation", - "enum": [ - "Technical Manufacturing Corporation" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "TMC", "default": "TMC", - "enum": [ - "TMC" - ], "title": "Abbreviation", "type": "string" }, @@ -9695,18 +9484,12 @@ "name": { "const": "Teledyne FLIR", "default": "Teledyne FLIR", - "enum": [ - "Teledyne FLIR" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "FLIR", "default": "FLIR", - "enum": [ - "FLIR" - ], "title": "Abbreviation", "type": "string" }, @@ -9755,9 +9538,6 @@ "registry_identifier": { "const": "01j1gwp17", "default": "01j1gwp17", - "enum": [ - "01j1gwp17" - ], "title": "Registry Identifier", "type": "string" } @@ -9771,18 +9551,12 @@ "name": { "const": "Templeton World Charity Foundation", "default": "Templeton World Charity Foundation", - "enum": [ - "Templeton World Charity Foundation" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "TWCF", "default": "TWCF", - "enum": [ - "TWCF" - ], "title": "Abbreviation", "type": "string" }, @@ -9831,9 +9605,6 @@ "registry_identifier": { "const": "00x0z1472", "default": "00x0z1472", - "enum": [ - "00x0z1472" - ], "title": "Registry Identifier", "type": "string" } @@ -9847,18 +9618,12 @@ "name": { "const": "The Imaging Source", "default": "The Imaging Source", - "enum": [ - "The Imaging Source" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9882,18 +9647,12 @@ "name": { "const": "The Lee Company", "default": "The Lee Company", - "enum": [ - "The Lee Company" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9917,18 +9676,12 @@ "name": { "const": "Thermo Fisher Scientific", "default": "Thermo Fisher Scientific", - "enum": [ - "Thermo Fisher Scientific" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9977,9 +9730,6 @@ "registry_identifier": { "const": "03x1ewr52", "default": "03x1ewr52", - "enum": [ - "03x1ewr52" - ], "title": "Registry Identifier", "type": "string" } @@ -9993,18 +9743,12 @@ "name": { "const": "Thorlabs", "default": "Thorlabs", - "enum": [ - "Thorlabs" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -10053,9 +9797,6 @@ "registry_identifier": { "const": "04gsnvb07", "default": "04gsnvb07", - "enum": [ - "04gsnvb07" - ], "title": "Registry Identifier", "type": "string" } @@ -10063,24 +9804,47 @@ "title": "_Thorlabs", "type": "object" }, + "_Transducer_Techniques": { + "description": "Model Transducer Techniques", + "properties": { + "name": { + "const": "Transducer Techniques", + "default": "Transducer Techniques", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Transducer_Techniques", + "type": "object" + }, "_Tymphany": { "description": "Model Tymphany", "properties": { "name": { "const": "Tymphany", "default": "Tymphany", - "enum": [ - "Tymphany" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -10104,18 +9868,12 @@ "name": { "const": "Vieworks", "default": "Vieworks", - "enum": [ - "Vieworks" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -10139,18 +9897,12 @@ "name": { "const": "Vortran", "default": "Vortran", - "enum": [ - "Vortran" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -10174,18 +9926,12 @@ "name": { "const": "Addgene", "default": "Addgene", - "enum": [ - "Addgene" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -10234,9 +9980,6 @@ "registry_identifier": { "const": "01nn1pw54", "default": "01nn1pw54", - "enum": [ - "01nn1pw54" - ], "title": "Registry Identifier", "type": "string" } @@ -10251,18 +9994,12 @@ "name": { "const": "Addgene", "default": "Addgene", - "enum": [ - "Addgene" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ADDGENE", "default": "ADDGENE", - "enum": [ - "ADDGENE" - ], "title": "Abbreviation", "type": "string" } @@ -10281,11 +10018,8 @@ "type": "string" }, "schema_version": { - "const": "1.0.3", - "default": "1.0.3", - "enum": [ - "1.0.3" - ], + "const": "1.0.4", + "default": "1.0.4", "title": "Schema Version", "type": "string" }, @@ -10330,12 +10064,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -10352,9 +10088,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -10381,10 +10119,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -10399,6 +10139,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -10455,6 +10196,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -10473,6 +10217,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -10521,6 +10268,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -10530,6 +10280,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -10608,6 +10361,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -10617,6 +10373,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -10662,6 +10421,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, diff --git a/schemas/metadata_schema.json b/schemas/metadata_schema.json index e54edc445..390023c87 100644 --- a/schemas/metadata_schema.json +++ b/schemas/metadata_schema.json @@ -11,11 +11,8 @@ "type": "string" }, "schema_version": { - "const": "1.0.3", - "default": "1.0.3", - "enum": [ - "1.0.3" - ], + "const": "1.0.4", + "default": "1.0.4", "title": "Schema Version", "type": "string" }, @@ -326,9 +323,6 @@ "device_type": { "const": "Additional imaging device", "default": "Additional imaging device", - "enum": [ - "Additional imaging device" - ], "title": "Device Type", "type": "string" }, @@ -369,12 +363,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -391,9 +387,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -420,10 +418,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -438,6 +438,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -494,6 +495,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -512,6 +516,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -560,6 +567,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -569,6 +579,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -647,6 +660,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -656,6 +672,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -701,6 +720,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -795,9 +817,6 @@ "type": { "const": "affine", "default": "affine", - "enum": [ - "affine" - ], "title": "Type", "type": "string" }, @@ -890,9 +909,17 @@ "title": "Process name" }, "software_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, "description": "Version of the software used", - "title": "Version", - "type": "string" + "title": "Version" }, "start_date_time": { "format": "date-time", @@ -905,9 +932,19 @@ "type": "string" }, "input_location": { - "description": "Path to data inputs", - "title": "Input location", - "type": "string" + "anyOf": [ + { + "type": "string" + }, + { + "items": { + "type": "string" + }, + "type": "array" + } + ], + "description": "Path(s) to data inputs", + "title": "Input location" }, "output_location": { "description": "Path to data outputs", @@ -934,6 +971,7 @@ }, "parameters": { "$ref": "#/$defs/AindGeneric", + "default": {}, "title": "Parameters" }, "outputs": { @@ -977,13 +1015,11 @@ } }, "required": [ - "software_version", "start_date_time", "end_date_time", "input_location", "output_location", "code_url", - "parameters", "analyst_full_name", "description" ], @@ -1040,12 +1076,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -1062,9 +1100,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -1091,10 +1131,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -1109,6 +1151,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -1165,6 +1208,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -1183,6 +1229,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -1231,6 +1280,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -1240,6 +1292,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -1318,6 +1373,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -1327,6 +1385,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -1372,6 +1433,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -1478,9 +1542,6 @@ "device_type": { "const": "Arena", "default": "Arena", - "enum": [ - "Arena" - ], "title": "Device Type", "type": "string" }, @@ -1521,12 +1582,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -1543,9 +1606,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -1572,10 +1637,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -1590,6 +1657,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -1646,6 +1714,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -1664,6 +1735,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -1712,6 +1786,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -1721,6 +1798,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -1799,6 +1879,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -1808,6 +1891,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -1853,6 +1939,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -1980,9 +2069,6 @@ "stimulus_type": { "const": "Auditory Stimulation", "default": "Auditory Stimulation", - "enum": [ - "Auditory Stimulation" - ], "title": "Stimulus Type", "type": "string" }, @@ -2262,9 +2348,6 @@ "device_type": { "const": "Detector", "default": "Detector", - "enum": [ - "Detector" - ], "title": "Device Type", "type": "string" }, @@ -2816,7 +2899,6 @@ "type": "object" }, "CcfVersion": { - "const": "CCFv3", "description": "CCF version", "enum": [ "CCFv3" @@ -3055,9 +3137,6 @@ "procedure_type": { "const": "Craniotomy", "default": "Craniotomy", - "enum": [ - "Craniotomy" - ], "title": "Procedure Type", "type": "string" }, @@ -3181,7 +3260,6 @@ "type": "string" }, "CurrentUnit": { - "const": "microamps", "description": "Current units", "enum": [ "microamps" @@ -3277,9 +3355,6 @@ "device_type": { "const": "DAQ Device", "default": "DAQ Device", - "enum": [ - "DAQ Device" - ], "title": "Device Type", "type": "string" }, @@ -3463,20 +3538,14 @@ "type": "string" }, "schema_version": { - "const": "1.0.3", - "default": "1.0.3", - "enum": [ - "1.0.3" - ], + "const": "1.0.4", + "default": "1.0.4", "title": "Schema Version", "type": "string" }, "license": { "const": "CC-BY-4.0", "default": "CC-BY-4.0", - "enum": [ - "CC-BY-4.0" - ], "title": "License", "type": "string" }, @@ -3834,9 +3903,17 @@ "title": "Name" }, "software_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, "description": "Version of the software used", - "title": "Version", - "type": "string" + "title": "Version" }, "start_date_time": { "format": "date-time", @@ -3849,9 +3926,19 @@ "type": "string" }, "input_location": { - "description": "Path to data inputs", - "title": "Input location", - "type": "string" + "anyOf": [ + { + "type": "string" + }, + { + "items": { + "type": "string" + }, + "type": "array" + } + ], + "description": "Path(s) to data inputs", + "title": "Input location" }, "output_location": { "description": "Path to data outputs", @@ -3878,6 +3965,7 @@ }, "parameters": { "$ref": "#/$defs/AindGeneric", + "default": {}, "title": "Parameters" }, "outputs": { @@ -3913,13 +4001,11 @@ }, "required": [ "name", - "software_version", "start_date_time", "end_date_time", "input_location", "output_location", - "code_url", - "parameters" + "code_url" ], "title": "DataProcess", "type": "object" @@ -3931,9 +4017,6 @@ "device_type": { "const": "Detector", "default": "Detector", - "enum": [ - "Detector" - ], "title": "Device Type", "type": "string" }, @@ -4439,12 +4522,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -4461,9 +4546,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -4490,10 +4577,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -4508,6 +4597,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -4564,6 +4654,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -4582,6 +4675,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -4630,6 +4726,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -4639,6 +4738,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -4717,6 +4819,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -4726,6 +4831,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -4771,6 +4879,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -4871,9 +4982,6 @@ "device_type": { "const": "Digital micromirror device", "default": "Digital micromirror device", - "enum": [ - "Digital micromirror device" - ], "title": "Device Type", "type": "string" }, @@ -4914,12 +5022,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -4936,9 +5046,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -4965,10 +5077,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -4983,6 +5097,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -5039,6 +5154,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -5057,6 +5175,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -5105,6 +5226,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -5114,6 +5238,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -5192,6 +5319,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -5201,6 +5331,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -5246,6 +5379,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -5432,9 +5568,6 @@ "device_type": { "const": "Disc", "default": "Disc", - "enum": [ - "Disc" - ], "title": "Device Type", "type": "string" }, @@ -5475,12 +5608,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -5497,9 +5632,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -5526,10 +5663,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -5544,6 +5683,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -5600,6 +5740,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -5618,6 +5761,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -5666,6 +5812,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -5675,6 +5824,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -5753,6 +5905,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -5762,6 +5917,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -5807,6 +5965,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -6087,9 +6248,6 @@ "device_type": { "const": "Enclosure", "default": "Enclosure", - "enum": [ - "Enclosure" - ], "title": "Device Type", "type": "string" }, @@ -6130,12 +6288,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -6152,9 +6312,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -6181,10 +6343,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -6199,6 +6363,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -6255,6 +6420,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -6273,6 +6441,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -6321,6 +6492,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -6330,6 +6504,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -6408,6 +6585,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -6417,6 +6597,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -6462,6 +6645,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -6608,9 +6794,6 @@ "device_type": { "const": "Ephys probe", "default": "Ephys probe", - "enum": [ - "Ephys probe" - ], "title": "Device Type", "type": "string" }, @@ -6651,12 +6834,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -6673,9 +6858,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -6702,10 +6889,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -6720,6 +6909,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -6776,6 +6966,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -6794,6 +6987,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -6842,6 +7038,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -6851,6 +7050,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -6929,6 +7131,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -6938,6 +7143,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -6983,6 +7191,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -7090,6 +7301,14 @@ "title": "EphysProbe", "type": "object" }, + "ExternalPlatforms": { + "description": "External Platforms of Data Assets.", + "enum": [ + "Code Ocean" + ], + "title": "ExternalPlatforms", + "type": "string" + }, "FerruleMaterial": { "description": "Fiber probe ferrule material type name", "enum": [ @@ -7170,9 +7389,6 @@ "procedure_type": { "const": "Fiber implant", "default": "Fiber implant", - "enum": [ - "Fiber implant" - ], "title": "Procedure Type", "type": "string" }, @@ -7285,23267 +7501,93763 @@ "title": "Notes" }, "primary_targeted_structure": { - "title": "Targeted structure", - "type": "string" - }, - "other_targeted_structure": { - "anyOf": [ + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ { - "items": { - "type": "string" - }, - "type": "array" + "$ref": "#/$defs/_Vi" }, { - "type": "null" - } - ], - "default": null, - "title": "Other targeted structure" - }, - "targeted_ccf_coordinates": { - "default": [], - "items": { - "$ref": "#/$defs/CcfCoords" - }, - "title": "Targeted CCF coordinates", - "type": "array" - }, - "manipulator_coordinates": { - "$ref": "#/$defs/Coordinates3d", - "title": "Manipulator coordinates" - }, - "anatomical_coordinates": { - "anyOf": [ + "$ref": "#/$defs/_Acvii" + }, { - "$ref": "#/$defs/Coordinates3d" + "$ref": "#/$defs/_Aob" }, { - "type": "null" - } - ], - "default": null, - "title": "Anatomical coordinates" - }, - "anatomical_reference": { - "anyOf": [ + "$ref": "#/$defs/_Aobgl" + }, { - "enum": [ - "Bregma", - "Lambda" - ], - "type": "string" + "$ref": "#/$defs/_Aobgr" }, { - "type": "null" - } - ], - "default": null, - "title": "Anatomical coordinate reference" - }, - "surface_z": { - "anyOf": [ + "$ref": "#/$defs/_Aobmi" + }, { - "type": "number" + "$ref": "#/$defs/_Aso" }, { - "type": "string" + "$ref": "#/$defs/_Acs5" }, { - "type": "null" - } - ], - "default": null, - "title": "Surface z" - }, - "surface_z_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Surface z unit" - }, - "dye": { - "anyOf": [ + "$ref": "#/$defs/_Ai" + }, { - "type": "string" + "$ref": "#/$defs/_Aid" }, { - "type": "null" - } - ], - "default": null, - "title": "Dye" - }, - "implant_hole_number": { - "anyOf": [ + "$ref": "#/$defs/_Aid1" + }, { - "type": "integer" + "$ref": "#/$defs/_Aid2_3" }, { - "type": "null" - } - ], - "default": null, - "title": "Implant hole number" - }, - "fiber_connections": { - "default": [], - "items": { - "$ref": "#/$defs/FiberConnectionConfig" - }, - "title": "Fiber photometry devices", - "type": "array" - } - }, - "required": [ - "assembly_name", - "arc_angle", - "module_angle", - "primary_targeted_structure", - "manipulator_coordinates" - ], - "title": "FiberModule", - "type": "object" - }, - "FiberProbe": { - "additionalProperties": false, - "description": "Description of a fiber optic probe", - "properties": { - "device_type": { - "const": "Fiber optic probe", - "default": "Fiber optic probe", - "enum": [ - "Fiber optic probe" - ], - "title": "Device Type", - "type": "string" - }, - "name": { - "title": "Device name", - "type": "string" - }, - "serial_number": { - "anyOf": [ + "$ref": "#/$defs/_Aid5" + }, { - "type": "string" + "$ref": "#/$defs/_Aid6A" }, { - "type": "null" - } - ], - "default": null, - "title": "Serial number" - }, - "manufacturer": { - "anyOf": [ + "$ref": "#/$defs/_Aid6B" + }, { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ] + "$ref": "#/$defs/_Aip" }, { - "type": "null" - } - ], - "default": null, - "title": "Manufacturer" - }, - "model": { - "anyOf": [ + "$ref": "#/$defs/_Aip1" + }, { - "type": "string" + "$ref": "#/$defs/_Aip2_3" }, { - "type": "null" - } - ], - "default": null, - "title": "Model" - }, - "path_to_cad": { - "anyOf": [ + "$ref": "#/$defs/_Aip5" + }, { - "type": "string" + "$ref": "#/$defs/_Aip6A" }, { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" - }, - "port_index": { - "anyOf": [ + "$ref": "#/$defs/_Aip6B" + }, { - "type": "string" + "$ref": "#/$defs/_Aiv" }, { - "type": "null" - } - ], - "default": null, - "title": "Port index" - }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Aiv1" + }, { - "type": "string" + "$ref": "#/$defs/_Aiv2_3" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - }, - "core_diameter": { - "anyOf": [ + "$ref": "#/$defs/_Aiv5" + }, { - "type": "number" + "$ref": "#/$defs/_Aiv6A" }, { - "type": "string" - } - ], - "title": "Core diameter (um)" - }, - "core_diameter_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Core diameter unit" - }, - "numerical_aperture": { - "anyOf": [ + "$ref": "#/$defs/_Aiv6B" + }, { - "type": "number" + "$ref": "#/$defs/_Ca" }, { - "type": "string" - } - ], - "title": "Numerical aperture" - }, - "ferrule_material": { - "anyOf": [ + "$ref": "#/$defs/_An" + }, { - "$ref": "#/$defs/FerruleMaterial" + "$ref": "#/$defs/_Aaa" }, { - "type": "null" - } - ], - "default": null, - "title": "Ferrule material" - }, - "active_length": { - "anyOf": [ + "$ref": "#/$defs/_Visa" + }, { - "type": "number" + "$ref": "#/$defs/_Visa1" }, { - "type": "string" + "$ref": "#/$defs/_Visa2_3" }, { - "type": "null" - } - ], - "default": null, - "description": "Length of taper", - "title": "Active length (mm)" - }, - "total_length": { - "anyOf": [ + "$ref": "#/$defs/_Visa4" + }, { - "type": "number" + "$ref": "#/$defs/_Visa5" }, { - "type": "string" - } - ], - "title": "Total length (mm)" - }, - "length_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Length unit" - } - }, - "required": [ - "name", - "core_diameter", - "numerical_aperture", - "total_length" - ], - "title": "FiberProbe", - "type": "object" - }, - "FieldOfView": { - "additionalProperties": false, - "description": "Description of an imaging field of view", - "properties": { - "index": { - "title": "Index", - "type": "integer" - }, - "imaging_depth": { - "title": "Imaging depth (um)", - "type": "integer" - }, - "imaging_depth_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Imaging depth unit" - }, - "targeted_structure": { - "title": "Targeted structure", - "type": "string" - }, - "fov_coordinate_ml": { - "anyOf": [ + "$ref": "#/$defs/_Visa6A" + }, { - "type": "number" + "$ref": "#/$defs/_Visa6B" }, { - "type": "string" - } - ], - "title": "FOV coordinate ML" - }, - "fov_coordinate_ap": { - "anyOf": [ + "$ref": "#/$defs/_Aca" + }, { - "type": "number" + "$ref": "#/$defs/_Acad" }, { - "type": "string" - } - ], - "title": "FOV coordinate AP" - }, - "fov_coordinate_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "FOV coordinate unit" - }, - "fov_reference": { - "description": "Reference for ML/AP coordinates", - "title": "FOV reference", - "type": "string" - }, - "fov_width": { - "title": "FOV width (pixels)", - "type": "integer" - }, - "fov_height": { - "title": "FOV height (pixels)", - "type": "integer" - }, - "fov_size_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "pixel", - "title": "FOV size unit" - }, - "magnification": { - "title": "Magnification", - "type": "string" - }, - "fov_scale_factor": { - "anyOf": [ + "$ref": "#/$defs/_Acad1" + }, { - "type": "number" + "$ref": "#/$defs/_Acad2_3" }, { - "type": "string" - } - ], - "title": "FOV scale factor (um/pixel)" - }, - "fov_scale_factor_unit": { - "default": "um/pixel", - "title": "FOV scale factor unit", - "type": "string" - }, - "frame_rate": { - "anyOf": [ + "$ref": "#/$defs/_Acad5" + }, { - "type": "number" + "$ref": "#/$defs/_Acad6A" }, { - "type": "string" + "$ref": "#/$defs/_Acad6B" }, { - "type": "null" - } - ], - "default": null, - "title": "Frame rate (Hz)" - }, - "frame_rate_unit": { - "$ref": "#/$defs/FrequencyUnit", - "default": "hertz", - "title": "Frame rate unit" - }, - "coupled_fov_index": { - "anyOf": [ + "$ref": "#/$defs/_Acav" + }, { - "type": "integer" + "$ref": "#/$defs/_Acav6A" }, { - "type": "null" - } - ], - "default": null, - "description": "Coupled planes for multiscope", - "title": "Coupled FOV" - }, - "power": { - "anyOf": [ + "$ref": "#/$defs/_Acav6B" + }, { - "type": "number" + "$ref": "#/$defs/_Acav1" }, { - "type": "string" + "$ref": "#/$defs/_Acav2_3" }, { - "type": "null" - } - ], - "default": null, - "description": "For coupled planes, this power is shared by both planes", - "title": "Power" - }, - "power_unit": { - "$ref": "#/$defs/PowerUnit", - "default": "percent", - "title": "Power unit" - }, - "power_ratio": { - "anyOf": [ + "$ref": "#/$defs/_Acav5" + }, { - "type": "number" + "$ref": "#/$defs/_Atn" }, { - "type": "string" + "$ref": "#/$defs/_Ahn" }, { - "type": "null" - } - ], - "default": null, - "title": "Power ratio for coupled planes" - }, - "scanfield_z": { - "anyOf": [ + "$ref": "#/$defs/_Aon" + }, { - "type": "integer" + "$ref": "#/$defs/_Apn" }, { - "type": "null" - } - ], - "default": null, - "title": "Z stage position of the fastz actuator for a given targeted depth" - }, - "scanfield_z_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Z stage position unit" - }, - "scanimage_roi_index": { - "anyOf": [ + "$ref": "#/$defs/_At" + }, { - "type": "integer" + "$ref": "#/$defs/_Ad" }, { - "type": "null" - } - ], - "default": null, - "title": "ScanImage ROI index" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Adp" + }, { - "type": "string" + "$ref": "#/$defs/_Visal" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - } - }, - "required": [ - "index", - "imaging_depth", - "targeted_structure", - "fov_coordinate_ml", - "fov_coordinate_ap", - "fov_reference", - "fov_width", - "fov_height", - "magnification", - "fov_scale_factor" - ], - "title": "FieldOfView", - "type": "object" - }, - "Filter": { - "additionalProperties": false, - "description": "Filter used in a light path", - "properties": { - "device_type": { - "const": "Filter", - "default": "Filter", - "enum": [ - "Filter" - ], - "title": "Device Type", - "type": "string" - }, - "name": { - "title": "Device name", - "type": "string" - }, - "serial_number": { - "anyOf": [ + "$ref": "#/$defs/_Visal1" + }, { - "type": "string" + "$ref": "#/$defs/_Visal2_3" }, { - "type": "null" - } - ], - "default": null, - "title": "Serial number" - }, - "manufacturer": { - "discriminator": { - "mapping": { - "Chroma": "#/$defs/_Chroma", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Other": "#/$defs/_Other", - "Semrock": "#/$defs/_Semrock", - "Thorlabs": "#/$defs/_Thorlabs" + "$ref": "#/$defs/_Visal4" }, - "propertyName": "name" - }, - "oneOf": [ { - "$ref": "#/$defs/_Chroma" + "$ref": "#/$defs/_Visal5" }, { - "$ref": "#/$defs/_Edmund_Optics" + "$ref": "#/$defs/_Visal6A" }, { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + "$ref": "#/$defs/_Visal6B" }, { - "$ref": "#/$defs/_Semrock" + "$ref": "#/$defs/_Am" }, { - "$ref": "#/$defs/_Thorlabs" + "$ref": "#/$defs/_Amd" }, { - "$ref": "#/$defs/_Other" - } - ], - "title": "Manufacturer" - }, - "model": { - "anyOf": [ + "$ref": "#/$defs/_Amv" + }, { - "type": "string" + "$ref": "#/$defs/_Visam" }, { - "type": "null" - } - ], - "default": null, - "title": "Model" - }, - "path_to_cad": { - "anyOf": [ + "$ref": "#/$defs/_Visam1" + }, { - "type": "string" + "$ref": "#/$defs/_Visam2_3" }, { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" - }, - "port_index": { - "anyOf": [ + "$ref": "#/$defs/_Visam4" + }, { - "type": "string" + "$ref": "#/$defs/_Visam5" }, { - "type": "null" - } - ], - "default": null, - "title": "Port index" - }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Visam6A" + }, { - "type": "string" + "$ref": "#/$defs/_Visam6B" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - }, - "filter_type": { - "$ref": "#/$defs/aind_data_schema__components__devices__FilterType", - "title": "Type of filter" - }, - "diameter": { - "anyOf": [ + "$ref": "#/$defs/_Av" + }, { - "type": "number" + "$ref": "#/$defs/_Avpv" }, { - "type": "string" + "$ref": "#/$defs/_Avp" }, { - "type": "null" - } - ], - "default": null, - "title": "Diameter (mm)" - }, - "width": { - "anyOf": [ + "$ref": "#/$defs/_Arh" + }, { - "type": "number" + "$ref": "#/$defs/_Ap" }, { - "type": "string" + "$ref": "#/$defs/_Apr" }, { - "type": "null" - } - ], - "default": null, - "title": "Width (mm)" - }, - "height": { - "anyOf": [ + "$ref": "#/$defs/_Aud" + }, { - "type": "number" + "$ref": "#/$defs/_B" }, { - "type": "string" + "$ref": "#/$defs/_Grey" }, { - "type": "null" - } - ], - "default": null, - "title": "Height (mm)" - }, - "size_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Size unit" - }, - "thickness": { - "anyOf": [ + "$ref": "#/$defs/_Bla" + }, { - "minimum": 0.0, - "type": "number" + "$ref": "#/$defs/_Blaa" }, { - "type": "string" + "$ref": "#/$defs/_Blap" }, { - "type": "null" - } - ], - "default": null, - "title": "Thickness (mm)" - }, - "thickness_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Thickness unit" - }, - "filter_wheel_index": { - "anyOf": [ + "$ref": "#/$defs/_Blav" + }, { - "type": "integer" + "$ref": "#/$defs/_Bma" }, { - "type": "null" - } - ], - "default": null, - "title": "Filter wheel index" - }, - "cut_off_wavelength": { - "anyOf": [ + "$ref": "#/$defs/_Bmaa" + }, { - "type": "integer" + "$ref": "#/$defs/_Bmap" }, { - "type": "null" - } - ], - "default": null, - "title": "Cut-off wavelength (nm)" - }, - "cut_on_wavelength": { - "anyOf": [ + "$ref": "#/$defs/_Bst" + }, { - "type": "integer" + "$ref": "#/$defs/_Ba" }, { - "type": "null" - } - ], - "default": null, - "title": "Cut-on wavelength (nm)" - }, - "center_wavelength": { - "anyOf": [ + "$ref": "#/$defs/_Bac" + }, { - "type": "integer" + "$ref": "#/$defs/_Bs" }, { - "type": "null" - } - ], - "default": null, - "title": "Center wavelength (nm)" - }, - "wavelength_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "nanometer", - "title": "Wavelength unit" - }, - "description": { - "anyOf": [ + "$ref": "#/$defs/_Cp" + }, { - "type": "string" + "$ref": "#/$defs/_Cea" }, { - "type": "null" - } - ], - "default": null, - "description": "More details about filter properties and where/how it is being used", - "title": "Description" - } - }, - "required": [ - "name", - "manufacturer", - "filter_type" - ], - "title": "Filter", - "type": "object" - }, - "Fluorophore": { - "description": "Fluorophores used in HCR and Immunolabeling", - "enum": [ - "Alexa Fluor 405", - "Alexa Fluor 488", - "Alexa Fluor 546", - "Alexa Fluor 568", - "Alexa Fluor 594", - "Alexa Fluor 633", - "Alexa Fluor 647", - "ATTO 488", - "ATTO 565", - "ATTO 643", - "Cyanine Cy 3" - ], - "title": "Fluorophore", - "type": "string" - }, - "FrequencyUnit": { - "description": "Enumeration of Frequency Measurements", - "enum": [ - "kilohertz", - "hertz", - "millihertz" - ], - "title": "FrequencyUnit", - "type": "string" - }, - "Funding": { - "additionalProperties": false, - "description": "Description of funding sources", - "properties": { - "funder": { - "discriminator": { - "mapping": { - "Allen Institute": "#/$defs/_Allen_Institute", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation" + "$ref": "#/$defs/_Ceac" }, - "propertyName": "name" - }, - "oneOf": [ { - "$ref": "#/$defs/_Allen_Institute" + "$ref": "#/$defs/_Ceal" }, { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + "$ref": "#/$defs/_Ceam" }, { - "$ref": "#/$defs/_Mbf_Bioscience" + "$ref": "#/$defs/_Cl" }, { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + "$ref": "#/$defs/_Cli" }, { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + "$ref": "#/$defs/_Cent" }, { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + "$ref": "#/$defs/_Cm" }, { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + "$ref": "#/$defs/_Cbx" }, { - "$ref": "#/$defs/_Simons_Foundation" + "$ref": "#/$defs/_Cbn" }, { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - } - ], - "title": "Funder" - }, - "grant_number": { - "anyOf": [ + "$ref": "#/$defs/_Cb" + }, { - "type": "string" + "$ref": "#/$defs/_Ctx" }, { - "type": "null" - } - ], - "default": null, - "title": "Grant number" - }, - "fundee": { - "anyOf": [ + "$ref": "#/$defs/_Cnu" + }, { - "type": "string" + "$ref": "#/$defs/_Ch" }, { - "type": "null" - } - ], - "default": null, - "description": "Person(s) funded by this mechanism", - "title": "Fundee" - } - }, - "required": [ - "funder" - ], - "title": "Funding", - "type": "object" - }, - "GroundWireMaterial": { - "description": "Ground wire material name", - "enum": [ - "Silver", - "Platinum iridium" - ], - "title": "GroundWireMaterial", - "type": "string" - }, - "Group": { - "description": "Data collection group name", - "enum": [ - "behavior", - "ephys", - "MSMA", - "ophys", - "NBA" - ], - "title": "Group", - "type": "string" - }, - "HCRProbe": { - "additionalProperties": false, - "description": "Description of an oligo probe used for HCR", - "properties": { - "name": { - "title": "Name", - "type": "string" - }, - "source": { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" + "$ref": "#/$defs/_Cla" }, - "propertyName": "name" - }, - "oneOf": [ { - "$ref": "#/$defs/_Aa_Opto_Electronic" + "$ref": "#/$defs/_Cn" }, { - "$ref": "#/$defs/_Asus" + "$ref": "#/$defs/_Copy" }, { - "$ref": "#/$defs/_Abcam" + "$ref": "#/$defs/_Coa" }, { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + "$ref": "#/$defs/_Coaa" }, { - "$ref": "#/$defs/_Ailipu_Technology_Co" + "$ref": "#/$defs/_Coap" }, { - "$ref": "#/$defs/_Allen_Institute" + "$ref": "#/$defs/_Coapl" }, { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + "$ref": "#/$defs/_Coapm" }, { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + "$ref": "#/$defs/_Ctxpl" }, { - "$ref": "#/$defs/_Allied" + "$ref": "#/$defs/_Ctxsp" }, { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + "$ref": "#/$defs/_Ancr1" }, { - "$ref": "#/$defs/_Arecont_Vision_Costar" + "$ref": "#/$defs/_Ancr2" }, { - "$ref": "#/$defs/_Basler" + "$ref": "#/$defs/_Cul" }, { - "$ref": "#/$defs/_Cambridge_Technology" + "$ref": "#/$defs/_Cu" }, { - "$ref": "#/$defs/_Carl_Zeiss" + "$ref": "#/$defs/_Cun" }, { - "$ref": "#/$defs/_Champalimaud_Foundation" + "$ref": "#/$defs/_Dec" }, { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + "$ref": "#/$defs/_Dg" }, { - "$ref": "#/$defs/_Chroma" + "$ref": "#/$defs/_Dg_Sg" }, { - "$ref": "#/$defs/_Coherent_Scientific" + "$ref": "#/$defs/_Dg_Mo" }, { - "$ref": "#/$defs/_Columbia_University" + "$ref": "#/$defs/_Dg_Po" }, { - "$ref": "#/$defs/_Computar" + "$ref": "#/$defs/_Dn" }, { - "$ref": "#/$defs/_Conoptics" + "$ref": "#/$defs/_Ndb" }, { - "$ref": "#/$defs/_Custom" + "$ref": "#/$defs/_Audd" }, { - "$ref": "#/$defs/_Dodotronic" + "$ref": "#/$defs/_Audd1" }, { - "$ref": "#/$defs/_Doric" + "$ref": "#/$defs/_Audd2_3" }, { - "$ref": "#/$defs/_Ealing" + "$ref": "#/$defs/_Audd4" }, { - "$ref": "#/$defs/_Edmund_Optics" + "$ref": "#/$defs/_Audd5" }, { - "$ref": "#/$defs/_Emory_University" + "$ref": "#/$defs/_Audd6A" }, { - "$ref": "#/$defs/_Euresys" + "$ref": "#/$defs/_Audd6B" }, { - "$ref": "#/$defs/_Fujinon" + "$ref": "#/$defs/_Dco" }, { - "$ref": "#/$defs/_Hamamatsu" + "$ref": "#/$defs/_Dcn" }, { - "$ref": "#/$defs/_Hamilton" + "$ref": "#/$defs/_Dmx" }, { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + "$ref": "#/$defs/_Dr" }, { - "$ref": "#/$defs/_Ir_Robot_Co" + "$ref": "#/$defs/_Lgd" }, { - "$ref": "#/$defs/_Isl_Products_International" + "$ref": "#/$defs/_Lgd_Co" }, { - "$ref": "#/$defs/_Infinity_Photo_Optical" + "$ref": "#/$defs/_Lgd_Ip" }, { - "$ref": "#/$defs/_Integrated_Dna_Technologies" + "$ref": "#/$defs/_Lgd_Sh" }, { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + "$ref": "#/$defs/_Dp" }, { - "$ref": "#/$defs/_Invitrogen" + "$ref": "#/$defs/_Pmd" }, { - "$ref": "#/$defs/_Jackson_Laboratory" + "$ref": "#/$defs/_Dtn" }, { - "$ref": "#/$defs/_Janelia_Research_Campus" + "$ref": "#/$defs/_Dt" }, { - "$ref": "#/$defs/_Julabo" + "$ref": "#/$defs/_Dmh" }, { - "$ref": "#/$defs/_Lg" + "$ref": "#/$defs/_Ect" }, { - "$ref": "#/$defs/_Leica" + "$ref": "#/$defs/_Ect1" }, { - "$ref": "#/$defs/_Lumen_Dynamics" + "$ref": "#/$defs/_Ect2_3" }, { - "$ref": "#/$defs/_Lifecanvas" + "$ref": "#/$defs/_Ect5" }, { - "$ref": "#/$defs/_Mbf_Bioscience" + "$ref": "#/$defs/_Ect6A" }, { - "$ref": "#/$defs/_Mks_Newport" + "$ref": "#/$defs/_Ect6B" }, { - "$ref": "#/$defs/_Mpi" + "$ref": "#/$defs/_Ew" }, { - "$ref": "#/$defs/_Meadowlark_Optics" + "$ref": "#/$defs/_Ep" }, { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + "$ref": "#/$defs/_Epd" }, { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + "$ref": "#/$defs/_Epv" }, { - "$ref": "#/$defs/_Mitutuyo" + "$ref": "#/$defs/_Ent" }, { - "$ref": "#/$defs/_Nresearch_Inc" + "$ref": "#/$defs/_Entl" }, { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + "$ref": "#/$defs/_Entl1" }, { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + "$ref": "#/$defs/_Entl2" }, { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + "$ref": "#/$defs/_Entl3" }, { - "$ref": "#/$defs/_National_Instruments" + "$ref": "#/$defs/_Entl5" }, { - "$ref": "#/$defs/_Navitar" + "$ref": "#/$defs/_Entl6A" }, { - "$ref": "#/$defs/_Neurophotometrics" + "$ref": "#/$defs/_Entm" }, { - "$ref": "#/$defs/_New_Scale_Technologies" + "$ref": "#/$defs/_Entm1" }, { - "$ref": "#/$defs/_New_York_University" + "$ref": "#/$defs/_Entm2" }, { - "$ref": "#/$defs/_Nikon" + "$ref": "#/$defs/_Entm3" }, { - "$ref": "#/$defs/_Olympus" + "$ref": "#/$defs/_Entm5" }, { - "$ref": "#/$defs/_Open_Ephys_Production_Site" + "$ref": "#/$defs/_Entm6" }, { - "$ref": "#/$defs/_Optotune" + "$ref": "#/$defs/_Epi" }, { - "$ref": "#/$defs/_Other" + "$ref": "#/$defs/_Eth" }, { - "$ref": "#/$defs/_Oxxius" + "$ref": "#/$defs/_Ecu" }, { - "$ref": "#/$defs/_Prizmatix" + "$ref": "#/$defs/_Vii" }, { - "$ref": "#/$defs/_Quantifi" + "$ref": "#/$defs/_Fc" }, { - "$ref": "#/$defs/_Raspberry_Pi" + "$ref": "#/$defs/_Fn" }, { - "$ref": "#/$defs/_Sicgen" + "$ref": "#/$defs/_Ca1" }, { - "$ref": "#/$defs/_Schneider_Kreuznach" + "$ref": "#/$defs/_Ca2" }, { - "$ref": "#/$defs/_Second_Order_Effects" + "$ref": "#/$defs/_Ca3" }, { - "$ref": "#/$defs/_Semrock" + "$ref": "#/$defs/_Ff" }, { - "$ref": "#/$defs/_Sigma_Aldrich" + "$ref": "#/$defs/_Fl" }, { - "$ref": "#/$defs/_Simons_Foundation" + "$ref": "#/$defs/_Fotu" }, { - "$ref": "#/$defs/_Spinnaker" + "$ref": "#/$defs/_Frp" }, { - "$ref": "#/$defs/_Tamron" + "$ref": "#/$defs/_Frp1" }, { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + "$ref": "#/$defs/_Frp2_3" }, { - "$ref": "#/$defs/_Teledyne_Flir" + "$ref": "#/$defs/_Frp5" }, { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + "$ref": "#/$defs/_Frp6A" }, { - "$ref": "#/$defs/_The_Imaging_Source" + "$ref": "#/$defs/_Frp6B" }, { - "$ref": "#/$defs/_The_Lee_Company" + "$ref": "#/$defs/_Fs" }, { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" + "$ref": "#/$defs/_Gend" }, { - "$ref": "#/$defs/_Thorlabs" + "$ref": "#/$defs/_Genv" }, { - "$ref": "#/$defs/_Tymphany" + "$ref": "#/$defs/_Grn" }, { - "$ref": "#/$defs/_Vieworks" + "$ref": "#/$defs/_Gpe" }, { - "$ref": "#/$defs/_Vortran" + "$ref": "#/$defs/_Gpi" }, { - "$ref": "#/$defs/_Ams_Osram" - } - ], - "title": "Source" - }, - "rrid": { - "anyOf": [ + "$ref": "#/$defs/_Gr" + }, { - "$ref": "#/$defs/PIDName" + "$ref": "#/$defs/_Gu" }, { - "type": "null" - } - ], - "default": null, - "title": "Research Resource ID" - }, - "lot_number": { - "title": "Lot number", - "type": "string" - }, - "expiration_date": { - "anyOf": [ + "$ref": "#/$defs/_Gu1" + }, { - "format": "date", - "type": "string" + "$ref": "#/$defs/_Gu2_3" }, { - "type": "null" - } - ], - "default": null, - "title": "Lot expiration date" - }, - "species": { - "discriminator": { - "mapping": { - "Callithrix jacchus": "#/$defs/_Callithrix_Jacchus", - "Homo sapiens": "#/$defs/_Homo_Sapiens", - "Macaca mulatta": "#/$defs/_Macaca_Mulatta", - "Mus musculus": "#/$defs/_Mus_Musculus", - "Rattus norvegicus": "#/$defs/_Rattus_Norvegicus" + "$ref": "#/$defs/_Gu4" }, - "propertyName": "name" - }, - "oneOf": [ { - "$ref": "#/$defs/_Callithrix_Jacchus" + "$ref": "#/$defs/_Gu5" }, { - "$ref": "#/$defs/_Homo_Sapiens" + "$ref": "#/$defs/_Gu6A" }, { - "$ref": "#/$defs/_Macaca_Mulatta" + "$ref": "#/$defs/_Gu6B" }, { - "$ref": "#/$defs/_Mus_Musculus" + "$ref": "#/$defs/_Hem" }, { - "$ref": "#/$defs/_Rattus_Norvegicus" - } - ], - "title": "Species" - }, - "gene": { - "$ref": "#/$defs/PIDName", - "title": "Gene name, accession number, and registry" - }, - "probe_sequences": { - "items": { - "type": "string" - }, - "title": "Probe sequences", - "type": "array" - }, - "readout": { - "$ref": "#/$defs/HCRReadout", - "title": "Readout" - }, - "initiator_name": { - "title": "Initiator name", - "type": "string" - } - }, - "required": [ - "name", - "source", - "lot_number", - "species", - "gene", - "probe_sequences", - "readout", - "initiator_name" - ], - "title": "HCRProbe", - "type": "object" - }, - "HCRReadout": { - "additionalProperties": false, - "description": "Description of a readout for HCR", - "properties": { - "name": { - "title": "Name", - "type": "string" - }, - "source": { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" + "$ref": "#/$defs/_Hb" }, - "propertyName": "name" - }, - "oneOf": [ { - "$ref": "#/$defs/_Aa_Opto_Electronic" + "$ref": "#/$defs/_Hpf" }, { - "$ref": "#/$defs/_Asus" + "$ref": "#/$defs/_Hip" }, { - "$ref": "#/$defs/_Abcam" + "$ref": "#/$defs/_Hata" }, { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + "$ref": "#/$defs/_Xii" }, { - "$ref": "#/$defs/_Ailipu_Technology_Co" + "$ref": "#/$defs/_Lz" }, { - "$ref": "#/$defs/_Allen_Institute" + "$ref": "#/$defs/_Mez" }, { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + "$ref": "#/$defs/_Hy" }, { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + "$ref": "#/$defs/_Ig" }, { - "$ref": "#/$defs/_Allied" + "$ref": "#/$defs/_Ic" }, { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + "$ref": "#/$defs/_Icc" }, { - "$ref": "#/$defs/_Arecont_Vision_Costar" + "$ref": "#/$defs/_Icd" }, { - "$ref": "#/$defs/_Basler" + "$ref": "#/$defs/_Ice" }, { - "$ref": "#/$defs/_Cambridge_Technology" + "$ref": "#/$defs/_Io" }, { - "$ref": "#/$defs/_Carl_Zeiss" + "$ref": "#/$defs/_Isn" }, { - "$ref": "#/$defs/_Champalimaud_Foundation" + "$ref": "#/$defs/_Icb" }, { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + "$ref": "#/$defs/_Ila" }, { - "$ref": "#/$defs/_Chroma" + "$ref": "#/$defs/_Ila1" }, { - "$ref": "#/$defs/_Coherent_Scientific" + "$ref": "#/$defs/_Ila2_3" }, { - "$ref": "#/$defs/_Columbia_University" + "$ref": "#/$defs/_Ila5" }, { - "$ref": "#/$defs/_Computar" + "$ref": "#/$defs/_Ila6A" }, { - "$ref": "#/$defs/_Conoptics" + "$ref": "#/$defs/_Ila6B" }, { - "$ref": "#/$defs/_Custom" + "$ref": "#/$defs/_Iad" }, { - "$ref": "#/$defs/_Dodotronic" + "$ref": "#/$defs/_Iam" }, { - "$ref": "#/$defs/_Doric" + "$ref": "#/$defs/_Ib" }, { - "$ref": "#/$defs/_Ealing" + "$ref": "#/$defs/_Ia" }, { - "$ref": "#/$defs/_Edmund_Optics" + "$ref": "#/$defs/_If" }, { - "$ref": "#/$defs/_Emory_University" + "$ref": "#/$defs/_Igl" }, { - "$ref": "#/$defs/_Euresys" + "$ref": "#/$defs/_Intg" }, { - "$ref": "#/$defs/_Fujinon" + "$ref": "#/$defs/_Irn" }, { - "$ref": "#/$defs/_Hamamatsu" + "$ref": "#/$defs/_Imd" }, { - "$ref": "#/$defs/_Hamilton" + "$ref": "#/$defs/_Ipn" }, { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + "$ref": "#/$defs/_Ipa" }, { - "$ref": "#/$defs/_Ir_Robot_Co" + "$ref": "#/$defs/_Ipc" }, { - "$ref": "#/$defs/_Isl_Products_International" + "$ref": "#/$defs/_Ipdl" }, { - "$ref": "#/$defs/_Infinity_Photo_Optical" + "$ref": "#/$defs/_Ipdm" }, { - "$ref": "#/$defs/_Integrated_Dna_Technologies" + "$ref": "#/$defs/_Ipi" }, { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + "$ref": "#/$defs/_Ipl" }, { - "$ref": "#/$defs/_Invitrogen" + "$ref": "#/$defs/_Ipr" }, { - "$ref": "#/$defs/_Jackson_Laboratory" + "$ref": "#/$defs/_Iprl" }, { - "$ref": "#/$defs/_Janelia_Research_Campus" + "$ref": "#/$defs/_Ip" }, { - "$ref": "#/$defs/_Julabo" + "$ref": "#/$defs/_Inc" }, { - "$ref": "#/$defs/_Lg" + "$ref": "#/$defs/_I5" }, { - "$ref": "#/$defs/_Leica" + "$ref": "#/$defs/_Ilm" }, { - "$ref": "#/$defs/_Lumen_Dynamics" + "$ref": "#/$defs/_Isocortex" }, { - "$ref": "#/$defs/_Lifecanvas" + "$ref": "#/$defs/_Kf" }, { - "$ref": "#/$defs/_Mbf_Bioscience" + "$ref": "#/$defs/_La" }, { - "$ref": "#/$defs/_Mks_Newport" + "$ref": "#/$defs/_Ld" }, { - "$ref": "#/$defs/_Mpi" + "$ref": "#/$defs/_Lat" }, { - "$ref": "#/$defs/_Meadowlark_Optics" + "$ref": "#/$defs/_Lh" }, { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + "$ref": "#/$defs/_Lha" }, { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + "$ref": "#/$defs/_Lm" }, { - "$ref": "#/$defs/_Mitutuyo" + "$ref": "#/$defs/_Lp" }, { - "$ref": "#/$defs/_Nresearch_Inc" + "$ref": "#/$defs/_Lpo" }, { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + "$ref": "#/$defs/_Lrn" }, { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + "$ref": "#/$defs/_Lrnm" }, { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + "$ref": "#/$defs/_Lrnp" }, { - "$ref": "#/$defs/_National_Instruments" + "$ref": "#/$defs/_Lsx" }, { - "$ref": "#/$defs/_Navitar" + "$ref": "#/$defs/_Ls" }, { - "$ref": "#/$defs/_Neurophotometrics" + "$ref": "#/$defs/_Lsc" }, { - "$ref": "#/$defs/_New_Scale_Technologies" + "$ref": "#/$defs/_Lsr" }, { - "$ref": "#/$defs/_New_York_University" + "$ref": "#/$defs/_Lsv" }, { - "$ref": "#/$defs/_Nikon" + "$ref": "#/$defs/_Lt" }, { - "$ref": "#/$defs/_Olympus" + "$ref": "#/$defs/_Lav" }, { - "$ref": "#/$defs/_Open_Ephys_Production_Site" + "$ref": "#/$defs/_Visl" }, { - "$ref": "#/$defs/_Optotune" + "$ref": "#/$defs/_Visl1" }, { - "$ref": "#/$defs/_Other" + "$ref": "#/$defs/_Visl2_3" }, { - "$ref": "#/$defs/_Oxxius" + "$ref": "#/$defs/_Visl4" }, { - "$ref": "#/$defs/_Prizmatix" + "$ref": "#/$defs/_Visl5" }, { - "$ref": "#/$defs/_Quantifi" + "$ref": "#/$defs/_Visl6A" }, { - "$ref": "#/$defs/_Raspberry_Pi" + "$ref": "#/$defs/_Visl6B" }, { - "$ref": "#/$defs/_Sicgen" + "$ref": "#/$defs/_Ldt" }, { - "$ref": "#/$defs/_Schneider_Kreuznach" + "$ref": "#/$defs/_Visli" }, { - "$ref": "#/$defs/_Second_Order_Effects" + "$ref": "#/$defs/_Visli1" }, { - "$ref": "#/$defs/_Semrock" + "$ref": "#/$defs/_Visli2_3" }, { - "$ref": "#/$defs/_Sigma_Aldrich" + "$ref": "#/$defs/_Visli4" }, { - "$ref": "#/$defs/_Simons_Foundation" + "$ref": "#/$defs/_Visli5" }, { - "$ref": "#/$defs/_Spinnaker" + "$ref": "#/$defs/_Visli6A" }, { - "$ref": "#/$defs/_Tamron" + "$ref": "#/$defs/_Visli6B" }, { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + "$ref": "#/$defs/_Lin" }, { - "$ref": "#/$defs/_Teledyne_Flir" + "$ref": "#/$defs/_Ling" }, { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + "$ref": "#/$defs/_Cent2" }, { - "$ref": "#/$defs/_The_Imaging_Source" + "$ref": "#/$defs/_Cent3" }, { - "$ref": "#/$defs/_The_Lee_Company" + "$ref": "#/$defs/_Cul4_5" }, { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" + "$ref": "#/$defs/_Lc" }, { - "$ref": "#/$defs/_Thorlabs" + "$ref": "#/$defs/_Ma" }, { - "$ref": "#/$defs/_Tymphany" + "$ref": "#/$defs/_Marn" }, { - "$ref": "#/$defs/_Vieworks" + "$ref": "#/$defs/_Mob" }, { - "$ref": "#/$defs/_Vortran" + "$ref": "#/$defs/_Mbo" }, { - "$ref": "#/$defs/_Ams_Osram" - } - ], - "title": "Source" - }, - "rrid": { - "anyOf": [ + "$ref": "#/$defs/_Ma3" + }, { - "$ref": "#/$defs/PIDName" + "$ref": "#/$defs/_Mea" }, { - "type": "null" - } - ], - "default": null, - "title": "Research Resource ID" - }, - "lot_number": { - "title": "Lot number", - "type": "string" - }, - "expiration_date": { - "anyOf": [ + "$ref": "#/$defs/_Mg" + }, { - "format": "date", - "type": "string" + "$ref": "#/$defs/_Mgd" }, { - "type": "null" - } - ], - "default": null, - "title": "Lot expiration date" - }, - "fluorophore": { - "$ref": "#/$defs/Fluorophore" - }, - "excitation_wavelength": { - "title": "Excitation wavelength (nm)", - "type": "integer" - }, - "excitation_wavelength_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "nanometer", - "title": "Excitation wavelength unit" - }, - "stain_type": { - "$ref": "#/$defs/StainType", - "title": "Stain type" - }, - "initiator_name": { - "title": "Initiator name", - "type": "string" - } - }, - "required": [ - "name", - "source", - "lot_number", - "fluorophore", - "excitation_wavelength", - "stain_type", - "initiator_name" - ], - "title": "HCRReadout", - "type": "object" - }, - "HCRSeries": { - "additionalProperties": false, - "description": "Description of series of HCR staining rounds for mFISH", - "properties": { - "codebook_name": { - "title": "Codebook name", - "type": "string" - }, - "number_of_rounds": { - "title": "Number of round", - "type": "integer" - }, - "hcr_rounds": { - "items": { - "$ref": "#/$defs/HybridizationChainReaction" - }, - "title": "Hybridization Chain Reaction rounds", - "type": "array" - }, - "strip_qc_compatible": { - "title": "Strip QC compatible", - "type": "boolean" - } - }, - "required": [ - "codebook_name", - "number_of_rounds", - "hcr_rounds", - "strip_qc_compatible" - ], - "title": "HCRSeries", - "type": "object" - }, - "HarpDevice": { - "additionalProperties": false, - "description": "DAQ that uses the Harp protocol for synchronization and data transmission", - "properties": { - "device_type": { - "const": "Harp device", - "default": "Harp device", - "enum": [ - "Harp device" - ], - "title": "Device Type", - "type": "string" - }, - "name": { - "title": "Device name", - "type": "string" - }, - "serial_number": { - "anyOf": [ + "$ref": "#/$defs/_Mgm" + }, { - "type": "string" + "$ref": "#/$defs/_Mgv" }, { - "type": "null" - } - ], - "default": null, - "title": "Serial number" - }, - "manufacturer": { - "default": { - "name": "Open Ephys Production Site", - "abbreviation": "OEPS", - "registry": { - "abbreviation": "ROR", - "name": "Research Organization Registry" + "$ref": "#/$defs/_Med" }, - "registry_identifier": "007rkz355" - }, - "discriminator": { - "mapping": { - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "National Instruments": "#/$defs/_National_Instruments", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Other": "#/$defs/_Other", - "Second Order Effects": "#/$defs/_Second_Order_Effects" + { + "$ref": "#/$defs/_Mh" }, - "propertyName": "name" - }, - "oneOf": [ { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + "$ref": "#/$defs/_Mm" }, { - "$ref": "#/$defs/_Champalimaud_Foundation" + "$ref": "#/$defs/_Mmd" }, { - "$ref": "#/$defs/_National_Instruments" + "$ref": "#/$defs/_Mml" }, { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + "$ref": "#/$defs/_Mmm" }, { - "$ref": "#/$defs/_Open_Ephys_Production_Site" + "$ref": "#/$defs/_Mmme" }, { - "$ref": "#/$defs/_Second_Order_Effects" + "$ref": "#/$defs/_Mmp" }, { - "$ref": "#/$defs/_Other" - } - ], - "title": "Manufacturer" - }, - "model": { - "anyOf": [ + "$ref": "#/$defs/_Mpo" + }, { - "type": "string" + "$ref": "#/$defs/_Mpn" }, { - "type": "null" - } - ], - "default": null, - "title": "Model" - }, - "path_to_cad": { - "anyOf": [ + "$ref": "#/$defs/_Mpt" + }, { - "type": "string" + "$ref": "#/$defs/_Msc" }, { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" - }, - "port_index": { - "anyOf": [ + "$ref": "#/$defs/_Ms" + }, { - "type": "string" + "$ref": "#/$defs/_Mt" }, { - "type": "null" - } - ], - "default": null, - "title": "Port index" - }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Mv" + }, { - "type": "string" + "$ref": "#/$defs/_Me" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - }, - "data_interface": { - "$ref": "#/$defs/DataInterface", - "default": "USB", - "title": "Data interface" - }, - "computer_name": { - "title": "Name of computer controlling this DAQ", - "type": "string" - }, - "channels": { - "default": [], - "items": { - "$ref": "#/$defs/DAQChannel" - }, - "title": "DAQ channels", - "type": "array" - }, - "firmware_version": { - "anyOf": [ + "$ref": "#/$defs/_Mepo" + }, { - "type": "string" + "$ref": "#/$defs/_Md" }, { - "type": "null" - } - ], - "default": null, - "title": "Firmware version" - }, - "hardware_version": { - "anyOf": [ + "$ref": "#/$defs/_My" + }, { - "type": "string" + "$ref": "#/$defs/_My_Sat" }, { - "type": "null" - } - ], - "default": null, - "title": "Hardware version" - }, - "harp_device_type": { - "discriminator": { - "mapping": { - "Behavior": "#/$defs/aind_data_schema_models__harp_types___Behavior", - "Camera Controller": "#/$defs/_Camera_Controller", - "Clock Synchronizer": "#/$defs/_Clock_Synchronizer", - "Cuttlefish": "#/$defs/_Cuttlefish", - "Generic Harp Device": "#/$defs/_Generic_Harp_Device", - "Input Expander": "#/$defs/_Input_Expander", - "Lickety Split": "#/$defs/_Lickety_Split", - "Load Cells": "#/$defs/_Load_Cells", - "Olfactometer": "#/$defs/_Olfactometer", - "Sniff Detector": "#/$defs/_Sniff_Detector", - "Sound Card": "#/$defs/_Sound_Card", - "Stepper Driver": "#/$defs/_Stepper_Driver", - "Synchronizer": "#/$defs/_Synchronizer", - "Timestamp Generator Gen 1": "#/$defs/_Timestamp_Generator_Gen_1", - "Timestamp Generator Gen 3": "#/$defs/_Timestamp_Generator_Gen_3", - "Treadmill": "#/$defs/_Treadmill" + "$ref": "#/$defs/_My_Mot" }, - "propertyName": "name" - }, - "oneOf": [ { - "$ref": "#/$defs/aind_data_schema_models__harp_types___Behavior" + "$ref": "#/$defs/_My_Sen" }, { - "$ref": "#/$defs/_Camera_Controller" + "$ref": "#/$defs/_Mdrn" }, { - "$ref": "#/$defs/_Clock_Synchronizer" + "$ref": "#/$defs/_Mdrnd" }, { - "$ref": "#/$defs/_Cuttlefish" + "$ref": "#/$defs/_Mdrnv" }, { - "$ref": "#/$defs/_Generic_Harp_Device" + "$ref": "#/$defs/_Mb" }, { - "$ref": "#/$defs/_Input_Expander" + "$ref": "#/$defs/_Ramb" }, { - "$ref": "#/$defs/_Lickety_Split" + "$ref": "#/$defs/_Mrn" }, { - "$ref": "#/$defs/_Load_Cells" + "$ref": "#/$defs/_Rr" }, { - "$ref": "#/$defs/_Olfactometer" + "$ref": "#/$defs/_Mev" }, { - "$ref": "#/$defs/_Sniff_Detector" + "$ref": "#/$defs/_Mbsta" }, { - "$ref": "#/$defs/_Sound_Card" + "$ref": "#/$defs/_Mbmot" }, { - "$ref": "#/$defs/_Stepper_Driver" + "$ref": "#/$defs/_Mbsen" }, { - "$ref": "#/$defs/_Synchronizer" + "$ref": "#/$defs/_Mtn" }, { - "$ref": "#/$defs/_Timestamp_Generator_Gen_1" + "$ref": "#/$defs/_V" }, { - "$ref": "#/$defs/_Timestamp_Generator_Gen_3" + "$ref": "#/$defs/_Nod" }, { - "$ref": "#/$defs/_Treadmill" - } - ], - "title": "Type of Harp device" - }, - "core_version": { - "anyOf": [ + "$ref": "#/$defs/_Acb" + }, { - "type": "string" + "$ref": "#/$defs/_Amb" }, { - "type": "null" - } - ], - "default": null, - "title": "Core version" - }, - "tag_version": { - "anyOf": [ + "$ref": "#/$defs/_Ambd" + }, { - "type": "string" + "$ref": "#/$defs/_Ambv" }, { - "type": "null" - } - ], - "default": null, - "title": "Tag version" - }, - "is_clock_generator": { - "title": "Is Clock Generator", - "type": "boolean" - } - }, - "required": [ - "name", - "computer_name", - "harp_device_type", - "is_clock_generator" - ], - "title": "HarpDevice", - "type": "object" - }, - "Headframe": { - "additionalProperties": false, - "description": "Description of headframe procedure", - "properties": { - "procedure_type": { - "const": "Headframe", - "default": "Headframe", - "enum": [ - "Headframe" - ], - "title": "Procedure Type", - "type": "string" - }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", - "type": "string" - }, - "headframe_type": { - "title": "Headframe type", - "type": "string" - }, - "headframe_part_number": { - "title": "Headframe part number", - "type": "string" - }, - "headframe_material": { - "anyOf": [ + "$ref": "#/$defs/_Ni" + }, { - "$ref": "#/$defs/HeadframeMaterial" + "$ref": "#/$defs/_Nd" }, { - "type": "null" - } - ], - "default": null, - "title": "Headframe material" - }, - "well_part_number": { - "anyOf": [ + "$ref": "#/$defs/_Nr" + }, { - "type": "string" + "$ref": "#/$defs/_Re" }, { - "type": "null" - } - ], - "default": null, - "title": "Well part number" - }, - "well_type": { - "anyOf": [ + "$ref": "#/$defs/_Nb" + }, { - "type": "string" + "$ref": "#/$defs/_Nll" }, { - "type": "null" - } - ], - "default": null, - "title": "Well type" - } - }, - "required": [ - "protocol_id", - "headframe_type", - "headframe_part_number" - ], - "title": "Headframe", - "type": "object" - }, - "HeadframeMaterial": { - "description": "Headframe material name", - "enum": [ - "Steel", - "Titanium", - "White Zirconia" - ], - "title": "HeadframeMaterial", - "type": "string" - }, - "Headstage": { - "additionalProperties": false, - "description": "Headstage used with an ephys probe", - "properties": { - "device_type": { - "const": "Headstage", - "default": "Headstage", - "enum": [ - "Headstage" - ], - "title": "Device Type", - "type": "string" - }, - "name": { - "title": "Device name", - "type": "string" - }, - "serial_number": { - "anyOf": [ + "$ref": "#/$defs/_Nlot" + }, { - "type": "string" + "$ref": "#/$defs/_Nlot3" }, { - "type": "null" - } - ], - "default": null, - "title": "Serial number" - }, - "manufacturer": { - "anyOf": [ + "$ref": "#/$defs/_Nlot1" + }, { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ] + "$ref": "#/$defs/_Nlot2" }, { - "type": "null" - } - ], - "default": null, - "title": "Manufacturer" - }, - "model": { - "anyOf": [ + "$ref": "#/$defs/_Not" + }, { - "type": "string" + "$ref": "#/$defs/_Npc" }, { - "type": "null" - } - ], - "default": null, - "title": "Model" - }, - "path_to_cad": { - "anyOf": [ + "$ref": "#/$defs/_Nts" + }, { - "type": "string" + "$ref": "#/$defs/_Ntb" }, { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" - }, - "port_index": { - "anyOf": [ + "$ref": "#/$defs/_Prp" + }, { - "type": "string" + "$ref": "#/$defs/_Rm" }, { - "type": "null" - } - ], - "default": null, - "title": "Port index" - }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Ro" + }, { - "type": "string" + "$ref": "#/$defs/_Rpa" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - } - }, - "required": [ - "name" - ], - "title": "Headstage", - "type": "object" - }, - "HomeCageEnrichment": { - "description": "Materials provided in animal home cage", - "enum": [ - "None", - "Plastic shelter", - "Plastic tube", - "Running wheel", - "Other" - ], - "title": "HomeCageEnrichment", - "type": "string" - }, - "Housing": { - "additionalProperties": false, - "description": "Description of subject housing", - "properties": { - "cage_id": { - "anyOf": [ + "$ref": "#/$defs/_Rpo" + }, { - "type": "string" + "$ref": "#/$defs/_Sag" }, { - "type": "null" - } - ], - "default": null, - "title": "Cage ID" - }, - "room_id": { - "anyOf": [ + "$ref": "#/$defs/_X" + }, { - "type": "string" + "$ref": "#/$defs/_Y" }, { - "type": "null" - } - ], - "default": null, - "title": "Room ID" - }, - "light_cycle": { - "anyOf": [ + "$ref": "#/$defs/_Iii" + }, { - "$ref": "#/$defs/LightCycle" + "$ref": "#/$defs/_Olf" }, { - "type": "null" - } - ], - "default": null, - "title": "Light cycle" - }, - "home_cage_enrichment": { - "default": [], - "items": { - "$ref": "#/$defs/HomeCageEnrichment" - }, - "title": "Home cage enrichment", - "type": "array" - }, - "cohoused_subjects": { - "default": [], - "description": "List of IDs of other subjects housed in same cage", - "items": { - "type": "string" - }, - "title": "Co-housed subjects", - "type": "array" - } - }, - "title": "Housing", - "type": "object" - }, - "HybridizationChainReaction": { - "additionalProperties": false, - "description": "Description of an HCR staining round", - "properties": { - "round_index": { - "title": "Round index", - "type": "integer" - }, - "start_time": { - "format": "date-time", - "title": "Round start time", - "type": "string" - }, - "end_time": { - "format": "date-time", - "title": "Round end time", - "type": "string" - }, - "HCR_probes": { - "items": { - "$ref": "#/$defs/HCRProbe" - }, - "title": "HCR probes", - "type": "array" - }, - "other_probes": { - "default": [], - "items": { - "$ref": "#/$defs/OligoProbe" - }, - "title": "Other probes", - "type": "array" - }, - "probe_concentration": { - "anyOf": [ + "$ref": "#/$defs/_Ot" + }, { - "type": "number" + "$ref": "#/$defs/_Op" }, { - "type": "string" - } - ], - "title": "Probe concentration (M)" - }, - "probe_concentration_unit": { - "default": "M", - "title": "Probe concentration unit", - "type": "string" - }, - "other_stains": { - "default": [], - "items": { - "$ref": "#/$defs/Stain" - }, - "title": "Other stains", - "type": "array" - }, - "instrument_id": { - "title": "Instrument ID", - "type": "string" - } - }, - "required": [ - "round_index", - "start_time", - "end_time", - "HCR_probes", - "probe_concentration", - "instrument_id" - ], - "title": "HybridizationChainReaction", - "type": "object" - }, - "ImageAxis": { - "additionalProperties": false, - "description": "Description of an image axis", - "properties": { - "name": { - "$ref": "#/$defs/AxisName", - "title": "Name" - }, - "direction": { - "$ref": "#/$defs/AnatomicalDirection", - "description": "Tissue direction as the value of axis increases. If Other describe in notes." - }, - "dimension": { - "description": "Reference axis number for stitching", - "title": "Dimension", - "type": "integer" - }, - "unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Axis physical units" - } - }, - "required": [ - "name", - "direction", - "dimension" - ], - "title": "ImageAxis", - "type": "object" - }, - "ImagingDeviceType": { - "description": "Imaginge device type name", - "enum": [ - "Beam expander", - "Sample Chamber", - "Diffuser", - "Galvo", - "Laser combiner", - "Laser coupler", - "Prism", - "Objective", - "Rotation mount", - "Slit", - "Tunable lens", - "Other" - ], - "title": "ImagingDeviceType", - "type": "string" - }, - "ImagingInstrumentType": { - "description": "Experiment type name", - "enum": [ - "confocal", - "diSPIM", - "exaSPIM", - "ecephys", - "mesoSPIM", - "Other", - "SmartSPIM", - "Two photon" - ], - "title": "ImagingInstrumentType", - "type": "string" - }, - "Immersion": { - "additionalProperties": false, - "description": "Description of immersion medium", - "properties": { - "medium": { - "$ref": "#/$defs/ImmersionMedium", - "title": "Immersion medium" - }, - "refractive_index": { - "anyOf": [ + "$ref": "#/$defs/_Orb" + }, { - "type": "number" + "$ref": "#/$defs/_Orbl" }, { - "type": "string" - } - ], - "title": "Index of refraction" - } - }, - "required": [ - "medium", - "refractive_index" - ], - "title": "Immersion", - "type": "object" - }, - "ImmersionMedium": { - "description": "Immersion medium name", - "enum": [ - "air", - "multi", - "oil", - "PBS", - "water", - "other", - "easy index", - "ethyl cinnimate", - "aqueous clearing buffer" - ], - "title": "ImmersionMedium", - "type": "string" - }, - "ImmunolabelClass": { - "description": "Type of antibodies", - "enum": [ - "Primary", - "Secondary", - "Conjugate" - ], - "title": "ImmunolabelClass", - "type": "string" - }, - "Instrument": { - "additionalProperties": false, - "description": "Description of an instrument, which is a collection of devices", - "properties": { - "describedBy": { - "const": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/instrument.py", - "default": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/instrument.py", - "title": "Describedby", - "type": "string" - }, - "schema_version": { - "const": "1.0.3", - "default": "1.0.3", - "enum": [ - "1.0.3" - ], - "title": "Schema Version", - "type": "string" - }, - "instrument_id": { - "anyOf": [ + "$ref": "#/$defs/_Orbl1" + }, { - "type": "string" + "$ref": "#/$defs/_Orbl2_3" }, { - "type": "null" - } - ], - "default": null, - "description": "Unique instrument identifier, name convention: --", - "title": "Instrument ID" - }, - "modification_date": { - "format": "date", - "title": "Date of modification", - "type": "string" - }, - "instrument_type": { - "$ref": "#/$defs/ImagingInstrumentType", - "title": "Instrument type" - }, - "manufacturer": { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" + "$ref": "#/$defs/_Orbl5" }, - "propertyName": "name" - }, - "oneOf": [ { - "$ref": "#/$defs/_Aa_Opto_Electronic" + "$ref": "#/$defs/_Orbl6A" }, { - "$ref": "#/$defs/_Asus" + "$ref": "#/$defs/_Orbl6B" }, { - "$ref": "#/$defs/_Abcam" + "$ref": "#/$defs/_Orbm" }, { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + "$ref": "#/$defs/_Orbm1" }, { - "$ref": "#/$defs/_Ailipu_Technology_Co" + "$ref": "#/$defs/_Orbm2_3" }, { - "$ref": "#/$defs/_Allen_Institute" + "$ref": "#/$defs/_Orbm5" }, { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + "$ref": "#/$defs/_Orbm6A" }, { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + "$ref": "#/$defs/_Orbm6B" }, { - "$ref": "#/$defs/_Allied" + "$ref": "#/$defs/_Orbvl" }, { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + "$ref": "#/$defs/_Orbvl1" }, { - "$ref": "#/$defs/_Arecont_Vision_Costar" + "$ref": "#/$defs/_Orbvl2_3" }, { - "$ref": "#/$defs/_Basler" + "$ref": "#/$defs/_Orbvl5" }, { - "$ref": "#/$defs/_Cambridge_Technology" + "$ref": "#/$defs/_Orbvl6A" }, { - "$ref": "#/$defs/_Carl_Zeiss" + "$ref": "#/$defs/_Orbvl6B" }, { - "$ref": "#/$defs/_Champalimaud_Foundation" + "$ref": "#/$defs/_Pal" }, { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + "$ref": "#/$defs/_Palc" }, { - "$ref": "#/$defs/_Chroma" + "$ref": "#/$defs/_Pald" }, { - "$ref": "#/$defs/_Coherent_Scientific" + "$ref": "#/$defs/_Palm" }, { - "$ref": "#/$defs/_Columbia_University" + "$ref": "#/$defs/_Palv" }, { - "$ref": "#/$defs/_Computar" + "$ref": "#/$defs/_Pbg" }, { - "$ref": "#/$defs/_Conoptics" + "$ref": "#/$defs/_Pb" }, { - "$ref": "#/$defs/_Custom" + "$ref": "#/$defs/_Pcn" }, { - "$ref": "#/$defs/_Dodotronic" + "$ref": "#/$defs/_Pf" }, { - "$ref": "#/$defs/_Doric" + "$ref": "#/$defs/_Pfl" }, { - "$ref": "#/$defs/_Ealing" + "$ref": "#/$defs/_Pgrn" }, { - "$ref": "#/$defs/_Edmund_Optics" + "$ref": "#/$defs/_Pgrnd" }, { - "$ref": "#/$defs/_Emory_University" + "$ref": "#/$defs/_Pgrnl" }, { - "$ref": "#/$defs/_Euresys" + "$ref": "#/$defs/_Prm" }, { - "$ref": "#/$defs/_Fujinon" + "$ref": "#/$defs/_Pn" }, { - "$ref": "#/$defs/_Hamamatsu" + "$ref": "#/$defs/_Ppy" }, { - "$ref": "#/$defs/_Hamilton" + "$ref": "#/$defs/_Pas" }, { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + "$ref": "#/$defs/_Ps" }, { - "$ref": "#/$defs/_Ir_Robot_Co" + "$ref": "#/$defs/_Par" }, { - "$ref": "#/$defs/_Isl_Products_International" + "$ref": "#/$defs/_Pstn" }, { - "$ref": "#/$defs/_Infinity_Photo_Optical" + "$ref": "#/$defs/_Pt" }, { - "$ref": "#/$defs/_Integrated_Dna_Technologies" + "$ref": "#/$defs/_Pa5" }, { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + "$ref": "#/$defs/_Pa4" }, { - "$ref": "#/$defs/_Invitrogen" + "$ref": "#/$defs/_Pvh" }, { - "$ref": "#/$defs/_Jackson_Laboratory" + "$ref": "#/$defs/_Pvhd" }, { - "$ref": "#/$defs/_Janelia_Research_Campus" + "$ref": "#/$defs/_Pvt" }, { - "$ref": "#/$defs/_Julabo" + "$ref": "#/$defs/_Pc5" }, { - "$ref": "#/$defs/_Lg" + "$ref": "#/$defs/_Parn" }, { - "$ref": "#/$defs/_Leica" + "$ref": "#/$defs/_Ppn" }, { - "$ref": "#/$defs/_Lumen_Dynamics" + "$ref": "#/$defs/_Pag" }, { - "$ref": "#/$defs/_Lifecanvas" + "$ref": "#/$defs/_Pef" }, { - "$ref": "#/$defs/_Mbf_Bioscience" + "$ref": "#/$defs/_Phy" }, { - "$ref": "#/$defs/_Mks_Newport" + "$ref": "#/$defs/_Pp" }, { - "$ref": "#/$defs/_Mpi" + "$ref": "#/$defs/_Pr" }, { - "$ref": "#/$defs/_Meadowlark_Optics" + "$ref": "#/$defs/_Peri" }, { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + "$ref": "#/$defs/_Peri1" }, { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + "$ref": "#/$defs/_Peri2_3" }, { - "$ref": "#/$defs/_Mitutuyo" + "$ref": "#/$defs/_Peri5" }, { - "$ref": "#/$defs/_Nresearch_Inc" + "$ref": "#/$defs/_Peri6A" }, { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + "$ref": "#/$defs/_Peri6B" }, { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + "$ref": "#/$defs/_P5" }, { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + "$ref": "#/$defs/_Pva" }, { - "$ref": "#/$defs/_National_Instruments" + "$ref": "#/$defs/_Pvi" }, { - "$ref": "#/$defs/_Navitar" + "$ref": "#/$defs/_Pvp" }, { - "$ref": "#/$defs/_Neurophotometrics" + "$ref": "#/$defs/_Pvpo" }, { - "$ref": "#/$defs/_New_Scale_Technologies" + "$ref": "#/$defs/_Pvr" }, { - "$ref": "#/$defs/_New_York_University" + "$ref": "#/$defs/_Pvz" }, { - "$ref": "#/$defs/_Nikon" + "$ref": "#/$defs/_Pir" }, { - "$ref": "#/$defs/_Olympus" + "$ref": "#/$defs/_Paa" }, { - "$ref": "#/$defs/_Open_Ephys_Production_Site" + "$ref": "#/$defs/_P" }, { - "$ref": "#/$defs/_Optotune" + "$ref": "#/$defs/_P_Sat" }, { - "$ref": "#/$defs/_Other" + "$ref": "#/$defs/_P_Mot" }, { - "$ref": "#/$defs/_Oxxius" + "$ref": "#/$defs/_P_Sen" }, { - "$ref": "#/$defs/_Prizmatix" + "$ref": "#/$defs/_Pcg" }, { - "$ref": "#/$defs/_Quantifi" + "$ref": "#/$defs/_Pg" }, { - "$ref": "#/$defs/_Raspberry_Pi" + "$ref": "#/$defs/_Prnr" }, { - "$ref": "#/$defs/_Sicgen" + "$ref": "#/$defs/_Prnc" }, { - "$ref": "#/$defs/_Schneider_Kreuznach" + "$ref": "#/$defs/_Pa" }, { - "$ref": "#/$defs/_Second_Order_Effects" + "$ref": "#/$defs/_Audpo" }, { - "$ref": "#/$defs/_Semrock" + "$ref": "#/$defs/_Audpo1" }, { - "$ref": "#/$defs/_Sigma_Aldrich" + "$ref": "#/$defs/_Audpo2_3" }, { - "$ref": "#/$defs/_Simons_Foundation" + "$ref": "#/$defs/_Audpo4" }, { - "$ref": "#/$defs/_Spinnaker" + "$ref": "#/$defs/_Audpo5" }, { - "$ref": "#/$defs/_Tamron" + "$ref": "#/$defs/_Audpo6A" }, { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + "$ref": "#/$defs/_Audpo6B" }, { - "$ref": "#/$defs/_Teledyne_Flir" + "$ref": "#/$defs/_Po" }, { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + "$ref": "#/$defs/_Ph" }, { - "$ref": "#/$defs/_The_Imaging_Source" + "$ref": "#/$defs/_Pil" }, { - "$ref": "#/$defs/_The_Lee_Company" + "$ref": "#/$defs/_Pol" }, { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" + "$ref": "#/$defs/_Ptlp" }, { - "$ref": "#/$defs/_Thorlabs" + "$ref": "#/$defs/_Ppt" }, { - "$ref": "#/$defs/_Tymphany" + "$ref": "#/$defs/_Pot" }, { - "$ref": "#/$defs/_Vieworks" + "$ref": "#/$defs/_Pd" }, { - "$ref": "#/$defs/_Vortran" + "$ref": "#/$defs/_Pdtg" }, { - "$ref": "#/$defs/_Ams_Osram" - } - ], - "title": "Instrument manufacturer" - }, - "temperature_control": { - "anyOf": [ + "$ref": "#/$defs/_Vispl" + }, { - "type": "boolean" + "$ref": "#/$defs/_Vispl1" }, { - "type": "null" - } - ], - "default": null, - "title": "Temperature control" - }, - "humidity_control": { - "anyOf": [ + "$ref": "#/$defs/_Vispl2_3" + }, { - "type": "boolean" + "$ref": "#/$defs/_Vispl4" }, { - "type": "null" - } - ], - "default": null, - "title": "Humidity control" - }, - "optical_tables": { - "default": [], - "items": { - "$ref": "#/$defs/OpticalTable" - }, - "title": "Optical table", - "type": "array" - }, - "enclosure": { - "anyOf": [ + "$ref": "#/$defs/_Vispl5" + }, { - "$ref": "#/$defs/Enclosure" + "$ref": "#/$defs/_Vispl6A" }, { - "type": "null" - } - ], - "default": null, - "title": "Enclosure" - }, - "objectives": { - "items": { - "$ref": "#/$defs/Objective" - }, - "title": "Objectives", - "type": "array" - }, - "detectors": { - "default": [], - "items": { - "$ref": "#/$defs/Detector" - }, - "title": "Detectors", - "type": "array" - }, - "light_sources": { - "default": [], - "items": { - "discriminator": { - "mapping": { - "Lamp": "#/$defs/Lamp", - "Laser": "#/$defs/Laser", - "Light emitting diode": "#/$defs/LightEmittingDiode" - }, - "propertyName": "device_type" + "$ref": "#/$defs/_Vispl6B" }, - "oneOf": [ - { - "$ref": "#/$defs/Laser" - }, - { - "$ref": "#/$defs/LightEmittingDiode" - }, - { - "$ref": "#/$defs/Lamp" - } - ] - }, - "title": "Light sources", - "type": "array" - }, - "lenses": { - "default": [], - "items": { - "$ref": "#/$defs/Lens" - }, - "title": "Lenses", - "type": "array" - }, - "fluorescence_filters": { - "default": [], - "items": { - "$ref": "#/$defs/Filter" - }, - "title": "Fluorescence filters", - "type": "array" - }, - "motorized_stages": { - "default": [], - "items": { - "$ref": "#/$defs/MotorizedStage" - }, - "title": "Motorized stages", - "type": "array" - }, - "scanning_stages": { - "default": [], - "items": { - "$ref": "#/$defs/ScanningStage" - }, - "title": "Scanning motorized stages", - "type": "array" - }, - "additional_devices": { - "default": [], - "items": { - "$ref": "#/$defs/AdditionalImagingDevice" - }, - "title": "Additional devices", - "type": "array" - }, - "calibration_date": { - "anyOf": [ { - "format": "date", - "type": "string" + "$ref": "#/$defs/_Tr" }, { - "type": "null" - } - ], - "default": null, - "description": "Date of most recent calibration", - "title": "Calibration date" - }, - "calibration_data": { - "anyOf": [ + "$ref": "#/$defs/_Vispor" + }, { - "type": "string" + "$ref": "#/$defs/_Vispor1" }, { - "type": "null" - } - ], - "default": null, - "description": "Path to calibration data from most recent calibration", - "title": "Calibration data" - }, - "com_ports": { - "default": [], - "items": { - "$ref": "#/$defs/Com" - }, - "title": "COM ports", - "type": "array" - }, - "daqs": { - "default": [], - "items": { - "$ref": "#/$defs/DAQDevice" - }, - "title": "DAQ", - "type": "array" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Vispor2_3" + }, { - "type": "string" + "$ref": "#/$defs/_Vispor4" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - } - }, - "required": [ - "modification_date", - "instrument_type", - "manufacturer", - "objectives" - ], - "title": "Instrument", - "type": "object" - }, - "IntraCerebellarVentricleInjection": { - "additionalProperties": false, - "description": "Description of an interacerebellar ventricle injection", - "properties": { - "injection_materials": { - "items": { - "discriminator": { - "mapping": { - "Reagent": "#/$defs/NonViralMaterial", - "Virus": "#/$defs/ViralMaterial" - }, - "propertyName": "material_type" + "$ref": "#/$defs/_Vispor5" }, - "oneOf": [ - { - "$ref": "#/$defs/ViralMaterial" - }, - { - "$ref": "#/$defs/NonViralMaterial" - } - ] - }, - "minItems": 1, - "title": "Injection material", - "type": "array" - }, - "recovery_time": { - "anyOf": [ { - "type": "number" + "$ref": "#/$defs/_Vispor6A" }, { - "type": "string" + "$ref": "#/$defs/_Vispor6B" }, { - "type": "null" - } - ], - "default": null, - "title": "Recovery time" - }, - "recovery_time_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Recovery time unit" - }, - "injection_duration": { - "anyOf": [ + "$ref": "#/$defs/_Post" + }, { - "type": "number" + "$ref": "#/$defs/_Prc" }, { - "type": "string" + "$ref": "#/$defs/_Pl" }, { - "type": "null" - } - ], - "default": null, - "title": "Injection duration" - }, - "injection_duration_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Injection duration unit" - }, - "instrument_id": { - "anyOf": [ + "$ref": "#/$defs/_Pl1" + }, { - "type": "string" + "$ref": "#/$defs/_Pl2_3" }, { - "type": "null" - } - ], - "default": null, - "title": "Instrument ID" - }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", - "type": "string" - }, - "injection_coordinate_ml": { - "anyOf": [ + "$ref": "#/$defs/_Pl5" + }, { - "type": "number" + "$ref": "#/$defs/_Pl6A" }, { - "type": "string" - } - ], - "title": "Injection coordinate ML (mm)" - }, - "injection_coordinate_ap": { - "anyOf": [ + "$ref": "#/$defs/_Pl6B" + }, { - "type": "number" + "$ref": "#/$defs/_Pst" }, { - "type": "string" - } - ], - "title": "Injection coordinate AP (mm)" - }, - "injection_coordinate_depth": { - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "title": "Injection coordinate depth (mm)", - "type": "array" - }, - "injection_coordinate_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Injection coordinate unit" - }, - "injection_coordinate_reference": { - "anyOf": [ + "$ref": "#/$defs/_Pre" + }, { - "$ref": "#/$defs/CoordinateReferenceLocation" + "$ref": "#/$defs/_Prt" }, { - "type": "null" - } - ], - "default": null, - "title": "Injection coordinate reference" - }, - "bregma_to_lambda_distance": { - "anyOf": [ + "$ref": "#/$defs/_Audp" + }, { - "type": "number" + "$ref": "#/$defs/_Audp1" }, { - "type": "string" + "$ref": "#/$defs/_Audp2_3" }, { - "type": "null" - } - ], - "default": null, - "description": "Distance between bregman and lambda", - "title": "Bregma to lambda (mm)" - }, - "bregma_to_lambda_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Bregma to lambda unit" - }, - "injection_angle": { - "anyOf": [ + "$ref": "#/$defs/_Audp4" + }, { - "type": "number" + "$ref": "#/$defs/_Audp5" }, { - "type": "string" - } - ], - "title": "Injection angle (deg)" - }, - "injection_angle_unit": { - "$ref": "#/$defs/AngleUnit", - "default": "degrees", - "title": "Injection angle unit" - }, - "targeted_structure": { - "anyOf": [ + "$ref": "#/$defs/_Audp6A" + }, { - "type": "string" + "$ref": "#/$defs/_Audp6B" }, { - "type": "null" - } - ], - "default": null, - "title": "Injection targeted brain structure" - }, - "injection_hemisphere": { - "anyOf": [ + "$ref": "#/$defs/_Mop" + }, { - "$ref": "#/$defs/Side" + "$ref": "#/$defs/_Mop1" }, { - "type": "null" - } - ], - "default": null, - "title": "Injection hemisphere" - }, - "procedure_type": { - "const": "ICV injection", - "default": "ICV injection", - "enum": [ - "ICV injection" - ], - "title": "Procedure Type", - "type": "string" - }, - "injection_volume": { - "description": "Injection volume, one value per location", - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "title": "Injection volume (nL)", - "type": "array" - }, - "injection_volume_unit": { - "$ref": "#/$defs/VolumeUnit", - "default": "nanoliter", - "title": "Injection volume unit" - } - }, - "required": [ - "injection_materials", - "protocol_id", - "injection_coordinate_ml", - "injection_coordinate_ap", - "injection_coordinate_depth", - "injection_angle", - "injection_volume" - ], - "title": "IntraCerebellarVentricleInjection", - "type": "object" - }, - "IntraCisternalMagnaInjection": { - "additionalProperties": false, - "description": "Description of an interacisternal magna injection", - "properties": { - "injection_materials": { - "items": { - "discriminator": { - "mapping": { - "Reagent": "#/$defs/NonViralMaterial", - "Virus": "#/$defs/ViralMaterial" - }, - "propertyName": "material_type" + "$ref": "#/$defs/_Mop2_3" }, - "oneOf": [ - { - "$ref": "#/$defs/ViralMaterial" - }, - { - "$ref": "#/$defs/NonViralMaterial" - } - ] - }, - "minItems": 1, - "title": "Injection material", - "type": "array" - }, - "recovery_time": { - "anyOf": [ { - "type": "number" + "$ref": "#/$defs/_Mop5" }, { - "type": "string" + "$ref": "#/$defs/_Mop6A" }, { - "type": "null" - } - ], - "default": null, - "title": "Recovery time" - }, - "recovery_time_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Recovery time unit" - }, - "injection_duration": { - "anyOf": [ + "$ref": "#/$defs/_Mop6B" + }, { - "type": "number" + "$ref": "#/$defs/_Ssp" }, { - "type": "string" + "$ref": "#/$defs/_Ssp_Bfd" }, { - "type": "null" - } - ], - "default": null, - "title": "Injection duration" - }, - "injection_duration_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Injection duration unit" - }, - "instrument_id": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_Bfd1" + }, { - "type": "string" + "$ref": "#/$defs/_Ssp_Bfd2_3" }, { - "type": "null" - } - ], - "default": null, - "title": "Instrument ID" - }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", - "type": "string" - }, - "injection_coordinate_ml": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_Bfd4" + }, { - "type": "number" + "$ref": "#/$defs/_Ssp_Bfd5" }, { - "type": "string" - } - ], - "title": "Injection coordinate ML (mm)" - }, - "injection_coordinate_ap": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_Bfd6A" + }, { - "type": "number" + "$ref": "#/$defs/_Ssp_Bfd6B" }, { - "type": "string" - } - ], - "title": "Injection coordinate AP (mm)" - }, - "injection_coordinate_depth": { - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "title": "Injection coordinate depth (mm)", - "type": "array" - }, - "injection_coordinate_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Injection coordinate unit" - }, - "injection_coordinate_reference": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_Ll" + }, { - "$ref": "#/$defs/CoordinateReferenceLocation" + "$ref": "#/$defs/_Ssp_Ll1" }, { - "type": "null" - } - ], - "default": null, - "title": "Injection coordinate reference" - }, - "bregma_to_lambda_distance": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_Ll2_3" + }, { - "type": "number" + "$ref": "#/$defs/_Ssp_Ll4" }, { - "type": "string" + "$ref": "#/$defs/_Ssp_Ll5" }, { - "type": "null" - } - ], - "default": null, - "description": "Distance between bregman and lambda", - "title": "Bregma to lambda (mm)" - }, - "bregma_to_lambda_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Bregma to lambda unit" - }, - "injection_angle": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_Ll6A" + }, { - "type": "number" + "$ref": "#/$defs/_Ssp_Ll6B" }, { - "type": "string" - } - ], - "title": "Injection angle (deg)" - }, - "injection_angle_unit": { - "$ref": "#/$defs/AngleUnit", - "default": "degrees", - "title": "Injection angle unit" - }, - "targeted_structure": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_M" + }, { - "type": "string" + "$ref": "#/$defs/_Ssp_M1" }, { - "type": "null" - } - ], - "default": null, - "title": "Injection targeted brain structure" - }, - "injection_hemisphere": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_M2_3" + }, { - "$ref": "#/$defs/Side" + "$ref": "#/$defs/_Ssp_M4" }, { - "type": "null" - } - ], - "default": null, - "title": "Injection hemisphere" - }, - "procedure_type": { - "const": "ICM injection", - "default": "ICM injection", - "enum": [ - "ICM injection" - ], - "title": "Procedure Type", - "type": "string" - }, - "injection_volume": { - "description": "Injection volume, one value per location", - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "title": "Injection volume (nL)", - "type": "array" - }, - "injection_volume_unit": { - "$ref": "#/$defs/VolumeUnit", - "default": "nanoliter", - "title": "Injection volume unit" - } - }, - "required": [ - "injection_materials", - "protocol_id", - "injection_coordinate_ml", - "injection_coordinate_ap", - "injection_coordinate_depth", - "injection_angle", - "injection_volume" - ], - "title": "IntraCisternalMagnaInjection", - "type": "object" - }, - "IntraperitonealInjection": { - "additionalProperties": false, - "description": "Description of an intraperitoneal injection procedure", - "properties": { - "injection_materials": { - "items": { - "discriminator": { - "mapping": { - "Reagent": "#/$defs/NonViralMaterial", - "Virus": "#/$defs/ViralMaterial" - }, - "propertyName": "material_type" + "$ref": "#/$defs/_Ssp_M5" }, - "oneOf": [ - { - "$ref": "#/$defs/ViralMaterial" - }, - { - "$ref": "#/$defs/NonViralMaterial" - } - ] - }, - "minItems": 1, - "title": "Injection material", - "type": "array" - }, - "recovery_time": { - "anyOf": [ { - "type": "number" + "$ref": "#/$defs/_Ssp_M6A" }, { - "type": "string" + "$ref": "#/$defs/_Ssp_M6B" }, { - "type": "null" - } - ], - "default": null, - "title": "Recovery time" - }, - "recovery_time_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Recovery time unit" - }, - "injection_duration": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_N" + }, { - "type": "number" + "$ref": "#/$defs/_Ssp_N1" }, { - "type": "string" + "$ref": "#/$defs/_Ssp_N2_3" }, { - "type": "null" - } - ], - "default": null, - "title": "Injection duration" - }, - "injection_duration_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Injection duration unit" - }, - "instrument_id": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_N4" + }, { - "type": "string" + "$ref": "#/$defs/_Ssp_N5" }, { - "type": "null" - } - ], - "default": null, - "title": "Instrument ID" - }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", - "type": "string" - }, - "procedure_type": { - "const": "Intraperitoneal injection", - "default": "Intraperitoneal injection", - "enum": [ - "Intraperitoneal injection" - ], - "title": "Procedure Type", - "type": "string" - }, - "injection_volume": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_N6A" + }, { - "type": "number" + "$ref": "#/$defs/_Ssp_N6B" }, { - "type": "string" - } - ], - "title": "Injection volume (uL)" - }, - "injection_volume_unit": { - "$ref": "#/$defs/VolumeUnit", - "default": "microliter", - "title": "Injection volume unit" - } - }, - "required": [ - "injection_materials", - "protocol_id", - "injection_volume" - ], - "title": "IntraperitonealInjection", - "type": "object" - }, - "IontophoresisInjection": { - "additionalProperties": false, - "description": "Description of an iotophoresis injection procedure", - "properties": { - "injection_materials": { - "items": { - "discriminator": { - "mapping": { - "Reagent": "#/$defs/NonViralMaterial", - "Virus": "#/$defs/ViralMaterial" - }, - "propertyName": "material_type" + "$ref": "#/$defs/_Ssp_Tr" }, - "oneOf": [ - { - "$ref": "#/$defs/ViralMaterial" - }, - { - "$ref": "#/$defs/NonViralMaterial" - } - ] - }, - "minItems": 1, - "title": "Injection material", - "type": "array" - }, - "recovery_time": { - "anyOf": [ { - "type": "number" + "$ref": "#/$defs/_Ssp_Tr1" }, { - "type": "string" + "$ref": "#/$defs/_Ssp_Tr2_3" }, { - "type": "null" - } - ], - "default": null, - "title": "Recovery time" - }, - "recovery_time_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Recovery time unit" - }, - "injection_duration": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_Tr4" + }, { - "type": "number" + "$ref": "#/$defs/_Ssp_Tr5" }, { - "type": "string" + "$ref": "#/$defs/_Ssp_Tr6A" }, { - "type": "null" - } - ], - "default": null, - "title": "Injection duration" - }, - "injection_duration_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Injection duration unit" - }, - "instrument_id": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_Tr6B" + }, { - "type": "string" + "$ref": "#/$defs/_Ssp_Un" }, { - "type": "null" - } - ], - "default": null, - "title": "Instrument ID" - }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", - "type": "string" - }, - "injection_coordinate_ml": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_Un1" + }, { - "type": "number" + "$ref": "#/$defs/_Ssp_Un2_3" }, { - "type": "string" - } - ], - "title": "Injection coordinate ML (mm)" - }, - "injection_coordinate_ap": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_Un4" + }, { - "type": "number" + "$ref": "#/$defs/_Ssp_Un5" }, { - "type": "string" - } - ], - "title": "Injection coordinate AP (mm)" - }, - "injection_coordinate_depth": { - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "title": "Injection coordinate depth (mm)", - "type": "array" - }, - "injection_coordinate_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Injection coordinate unit" - }, - "injection_coordinate_reference": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_Un6A" + }, { - "$ref": "#/$defs/CoordinateReferenceLocation" + "$ref": "#/$defs/_Ssp_Un6B" }, { - "type": "null" - } - ], - "default": null, - "title": "Injection coordinate reference" - }, - "bregma_to_lambda_distance": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_Ul" + }, { - "type": "number" + "$ref": "#/$defs/_Ssp_Ul1" }, { - "type": "string" + "$ref": "#/$defs/_Ssp_Ul2_3" }, { - "type": "null" - } - ], - "default": null, - "description": "Distance between bregman and lambda", - "title": "Bregma to lambda (mm)" - }, - "bregma_to_lambda_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Bregma to lambda unit" - }, - "injection_angle": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_Ul4" + }, { - "type": "number" + "$ref": "#/$defs/_Ssp_Ul5" }, { - "type": "string" - } - ], - "title": "Injection angle (deg)" - }, - "injection_angle_unit": { - "$ref": "#/$defs/AngleUnit", - "default": "degrees", - "title": "Injection angle unit" - }, - "targeted_structure": { - "anyOf": [ + "$ref": "#/$defs/_Ssp_Ul6A" + }, { - "type": "string" + "$ref": "#/$defs/_Ssp_Ul6B" }, { - "type": "null" - } - ], - "default": null, - "title": "Injection targeted brain structure" - }, - "injection_hemisphere": { - "anyOf": [ + "$ref": "#/$defs/_Visp" + }, { - "$ref": "#/$defs/Side" + "$ref": "#/$defs/_Visp1" }, { - "type": "null" - } - ], - "default": null, - "title": "Injection hemisphere" - }, - "procedure_type": { - "const": "Iontophoresis injection", - "default": "Iontophoresis injection", - "enum": [ - "Iontophoresis injection" - ], - "title": "Procedure Type", - "type": "string" - }, - "injection_current": { - "anyOf": [ + "$ref": "#/$defs/_Visp2_3" + }, { - "type": "number" + "$ref": "#/$defs/_Visp4" }, { - "type": "string" - } - ], - "title": "Injection current (uA)" - }, - "injection_current_unit": { - "$ref": "#/$defs/CurrentUnit", - "default": "microamps", - "title": "Injection current unit" - }, - "alternating_current": { - "title": "Alternating current", - "type": "string" - } - }, - "required": [ - "injection_materials", - "protocol_id", - "injection_coordinate_ml", - "injection_coordinate_ap", - "injection_coordinate_depth", - "injection_angle", - "injection_current", - "alternating_current" - ], - "title": "IontophoresisInjection", - "type": "object" - }, - "Lamp": { - "additionalProperties": false, - "description": "Description of a Lamp lightsource", - "properties": { - "device_type": { - "const": "Lamp", - "default": "Lamp", - "enum": [ - "Lamp" - ], - "title": "Device Type", - "type": "string" - }, - "name": { - "title": "Device name", - "type": "string" - }, - "serial_number": { - "anyOf": [ + "$ref": "#/$defs/_Visp5" + }, { - "type": "string" + "$ref": "#/$defs/_Visp6A" }, { - "type": "null" - } - ], - "default": null, - "title": "Serial number" - }, - "manufacturer": { - "anyOf": [ + "$ref": "#/$defs/_Visp6B" + }, { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ] + "$ref": "#/$defs/_Psv" }, { - "type": "null" - } - ], - "default": null, - "title": "Manufacturer" - }, - "model": { - "anyOf": [ + "$ref": "#/$defs/_Pros" + }, { - "type": "string" + "$ref": "#/$defs/_Pyr" }, { - "type": "null" - } - ], - "default": null, - "title": "Model" - }, - "path_to_cad": { - "anyOf": [ + "$ref": "#/$defs/_Rn" + }, { - "type": "string" + "$ref": "#/$defs/_Rt" }, { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" - }, - "port_index": { - "anyOf": [ + "$ref": "#/$defs/_Rch" + }, { - "type": "string" + "$ref": "#/$defs/_Rhp" }, { - "type": "null" - } - ], - "default": null, - "title": "Port index" - }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Rpf" + }, { - "type": "string" + "$ref": "#/$defs/_Rsp" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - }, - "wavelength_min": { - "anyOf": [ + "$ref": "#/$defs/_Rspd" + }, { - "type": "integer" + "$ref": "#/$defs/_Rspd1" }, { - "type": "null" - } - ], - "default": null, - "title": "Wavelength minimum (nm)" - }, - "wavelength_max": { - "anyOf": [ + "$ref": "#/$defs/_Rspd2_3" + }, { - "type": "integer" + "$ref": "#/$defs/_Rspd4" }, { - "type": "null" - } - ], - "default": null, - "title": "Wavelength maximum (nm)" - }, - "wavelength_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "nanometer", - "title": "Wavelength unit" - }, - "temperature": { - "anyOf": [ + "$ref": "#/$defs/_Rspd5" + }, { - "type": "integer" + "$ref": "#/$defs/_Rspd6A" }, { - "type": "null" - } - ], - "default": null, - "title": "Temperature (K)" - }, - "temperature_unit": { - "$ref": "#/$defs/TemperatureUnit", - "default": "Kelvin", - "title": "Temperature unit" - } - }, - "required": [ - "name" - ], - "title": "Lamp", - "type": "object" - }, - "Laser": { - "additionalProperties": false, - "description": "Laser module with a specific wavelength (may be a sub-component of a larger assembly)", - "properties": { - "device_type": { - "const": "Laser", - "default": "Laser", - "enum": [ - "Laser" - ], - "title": "Device Type", - "type": "string" - }, - "name": { - "title": "Device name", - "type": "string" - }, - "serial_number": { - "anyOf": [ + "$ref": "#/$defs/_Rspd6B" + }, { - "type": "string" + "$ref": "#/$defs/_Rspagl" }, { - "type": "null" - } - ], - "default": null, - "title": "Serial number" - }, - "manufacturer": { - "discriminator": { - "mapping": { - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Quantifi": "#/$defs/_Quantifi", - "Vortran": "#/$defs/_Vortran" + "$ref": "#/$defs/_Rspagl1" }, - "propertyName": "name" - }, - "oneOf": [ { - "$ref": "#/$defs/_Coherent_Scientific" + "$ref": "#/$defs/_Rspagl2_3" }, { - "$ref": "#/$defs/_Hamamatsu" + "$ref": "#/$defs/_Rspagl5" }, { - "$ref": "#/$defs/_Oxxius" + "$ref": "#/$defs/_Rspagl6A" }, { - "$ref": "#/$defs/_Quantifi" + "$ref": "#/$defs/_Rspagl6B" }, { - "$ref": "#/$defs/_Vortran" + "$ref": "#/$defs/_Rspv" }, { - "$ref": "#/$defs/_Other" - } - ], - "title": "Manufacturer" - }, - "model": { - "anyOf": [ + "$ref": "#/$defs/_Rspv1" + }, { - "type": "string" + "$ref": "#/$defs/_Rspv2_3" }, { - "type": "null" - } - ], - "default": null, - "title": "Model" - }, - "path_to_cad": { - "anyOf": [ + "$ref": "#/$defs/_Rspv5" + }, { - "type": "string" + "$ref": "#/$defs/_Rspv6A" }, { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" - }, - "port_index": { - "anyOf": [ + "$ref": "#/$defs/_Rspv6B" + }, { - "type": "string" + "$ref": "#/$defs/_Rh" }, { - "type": "null" - } - ], - "default": null, - "title": "Port index" - }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Rl" + }, { - "type": "string" + "$ref": "#/$defs/_Visrl1" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - }, - "wavelength": { - "title": "Wavelength (nm)", - "type": "integer" - }, - "wavelength_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "nanometer", - "title": "Wavelength unit" - }, - "maximum_power": { - "anyOf": [ + "$ref": "#/$defs/_Visrl2_3" + }, { - "type": "number" + "$ref": "#/$defs/_Visrl4" }, { - "type": "string" + "$ref": "#/$defs/_Visrl5" }, { - "type": "null" - } - ], - "default": null, - "title": "Maximum power (mW)" - }, - "power_unit": { - "$ref": "#/$defs/PowerUnit", - "default": "milliwatt", - "title": "Power unit" - }, - "coupling": { - "anyOf": [ + "$ref": "#/$defs/_Visrl6A" + }, { - "$ref": "#/$defs/Coupling" + "$ref": "#/$defs/_Visrl6B" }, { - "type": "null" - } - ], - "default": null, - "title": "Coupling" - }, - "coupling_efficiency": { - "anyOf": [ + "$ref": "#/$defs/_Visrl" + }, { - "maximum": 100.0, - "minimum": 0.0, - "type": "number" + "$ref": "#/$defs/_Mos" }, { - "type": "string" + "$ref": "#/$defs/_Mos1" }, { - "type": "null" - } - ], - "default": null, - "title": "Coupling efficiency (percent)" - }, - "coupling_efficiency_unit": { - "const": "percent", - "default": "percent", - "enum": [ - "percent" - ], - "title": "Coupling efficiency unit", - "type": "string" - }, - "item_number": { - "anyOf": [ + "$ref": "#/$defs/_Mos2_3" + }, { - "type": "string" + "$ref": "#/$defs/_Mos5" }, { - "type": "null" - } - ], - "default": null, - "title": "Item number" - } - }, - "required": [ - "name", - "manufacturer", - "wavelength" - ], - "title": "Laser", - "type": "object" - }, - "LaserAssembly": { - "additionalProperties": false, - "description": "Assembly for optogenetic stimulation", - "properties": { - "name": { - "title": "Laser assembly name", - "type": "string" - }, - "manipulator": { - "$ref": "#/$defs/Manipulator" - }, - "lasers": { - "items": { - "$ref": "#/$defs/Laser" - }, - "title": "Lasers connected to this module", - "type": "array" - }, - "collimator": { - "$ref": "#/$defs/Device", - "title": "Collimator" - }, - "fiber": { - "$ref": "#/$defs/Patch", - "title": "Fiber patch" - } - }, - "required": [ - "name", - "manipulator", - "lasers", - "collimator", - "fiber" - ], - "title": "LaserAssembly", - "type": "object" - }, - "LaserConfig": { - "additionalProperties": false, - "description": "Description of laser settings in a session", - "properties": { - "device_type": { - "const": "Laser", - "default": "Laser", - "enum": [ - "Laser" - ], - "title": "Device Type", - "type": "string" - }, - "name": { - "description": "Must match rig json", - "title": "Name", - "type": "string" - }, - "wavelength": { - "title": "Wavelength (nm)", - "type": "integer" - }, - "wavelength_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "nanometer", - "title": "Wavelength unit" - }, - "excitation_power": { - "anyOf": [ + "$ref": "#/$defs/_Mos6A" + }, { - "type": "number" + "$ref": "#/$defs/_Mos6B" }, { - "type": "string" + "$ref": "#/$defs/_Sf" }, { - "type": "null" - } - ], - "default": null, - "title": "Excitation power (mW)" - }, - "excitation_power_unit": { - "$ref": "#/$defs/PowerUnit", - "default": "milliwatt", - "title": "Excitation power unit" - } - }, - "required": [ - "name", - "wavelength" - ], - "title": "LaserConfig", - "type": "object" - }, - "Lens": { - "additionalProperties": false, - "description": "Lens", - "properties": { - "device_type": { - "const": "Lens", - "default": "Lens", - "enum": [ - "Lens" - ], - "title": "Device Type", - "type": "string" - }, - "name": { - "title": "Device name", - "type": "string" - }, - "serial_number": { - "anyOf": [ + "$ref": "#/$defs/_Sh" + }, { - "type": "string" + "$ref": "#/$defs/_Sim" }, { - "type": "null" - } - ], - "default": null, - "title": "Serial number" - }, - "manufacturer": { - "discriminator": { - "mapping": { - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Computar": "#/$defs/_Computar", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Leica": "#/$defs/_Leica", - "Mitutuyo": "#/$defs/_Mitutuyo", - "Navitar": "#/$defs/_Navitar", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Other": "#/$defs/_Other", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Tamron": "#/$defs/_Tamron", - "Thorlabs": "#/$defs/_Thorlabs" + "$ref": "#/$defs/_Mo" }, - "propertyName": "name" - }, - "oneOf": [ { - "$ref": "#/$defs/_Computar" + "$ref": "#/$defs/_Ss" }, { - "$ref": "#/$defs/_Edmund_Optics" + "$ref": "#/$defs/_Spvc" }, { - "$ref": "#/$defs/_Fujinon" + "$ref": "#/$defs/_Spvi" }, { - "$ref": "#/$defs/_Hamamatsu" + "$ref": "#/$defs/_Spvo" }, { - "$ref": "#/$defs/_Infinity_Photo_Optical" + "$ref": "#/$defs/_Spiv" }, { - "$ref": "#/$defs/_Leica" + "$ref": "#/$defs/_Str" }, { - "$ref": "#/$defs/_Mitutuyo" + "$ref": "#/$defs/_Strd" }, { - "$ref": "#/$defs/_Navitar" + "$ref": "#/$defs/_Strv" }, { - "$ref": "#/$defs/_Nikon" + "$ref": "#/$defs/_Samy" }, { - "$ref": "#/$defs/_Olympus" + "$ref": "#/$defs/_Slc" }, { - "$ref": "#/$defs/_Schneider_Kreuznach" + "$ref": "#/$defs/_Sco" }, { - "$ref": "#/$defs/_Tamron" + "$ref": "#/$defs/_Sfo" }, { - "$ref": "#/$defs/_Thorlabs" + "$ref": "#/$defs/_Subg" }, { - "$ref": "#/$defs/_Carl_Zeiss" + "$ref": "#/$defs/_Sub" }, { - "$ref": "#/$defs/_Other" - } - ], - "title": "Manufacturer" - }, - "model": { - "anyOf": [ + "$ref": "#/$defs/_Sld" + }, { - "type": "string" + "$ref": "#/$defs/_Smt" }, { - "type": "null" - } - ], - "default": null, - "title": "Model" - }, - "path_to_cad": { - "anyOf": [ + "$ref": "#/$defs/_Spa" + }, { - "type": "string" + "$ref": "#/$defs/_Spf" }, { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" - }, - "port_index": { - "anyOf": [ + "$ref": "#/$defs/_Spfm" + }, { - "type": "string" + "$ref": "#/$defs/_Spfp" }, { - "type": "null" - } - ], - "default": null, - "title": "Port index" - }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Sbpv" + }, { - "type": "string" + "$ref": "#/$defs/_Si" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - }, - "focal_length": { - "anyOf": [ + "$ref": "#/$defs/_Snc" + }, { - "type": "number" + "$ref": "#/$defs/_Snr" }, { - "type": "string" + "$ref": "#/$defs/_Stn" }, { - "type": "null" - } - ], - "default": null, - "title": "Focal length of the lens (mm)" - }, - "focal_length_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Focal length unit" - }, - "size": { - "anyOf": [ + "$ref": "#/$defs/_Cs" + }, { - "$ref": "#/$defs/LensSize" + "$ref": "#/$defs/_Scm" }, { - "type": "null" - } - ], - "default": null, - "title": "Size (inches)" - }, - "lens_size_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "inch", - "title": "Lens size unit" - }, - "optimized_wavelength_range": { - "anyOf": [ + "$ref": "#/$defs/_Scdg" + }, { - "type": "string" + "$ref": "#/$defs/_Scdw" }, { - "type": "null" - } - ], - "default": null, - "title": "Optimized wavelength range (nm)" - }, - "wavelength_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "nanometer", - "title": "Wavelength unit" - }, - "max_aperture": { - "anyOf": [ + "$ref": "#/$defs/_Scig" + }, { - "type": "string" + "$ref": "#/$defs/_Sciw" }, { - "type": "null" - } - ], - "default": null, - "title": "Max aperture (e.g. f/2)" - } - }, - "required": [ - "name", - "manufacturer" - ], - "title": "Lens", - "type": "object" - }, - "LensSize": { - "description": "Lens size value", - "enum": [ - 1, - 2 - ], - "title": "LensSize", - "type": "integer" - }, - "LickSensorType": { - "description": "Type of lick sensor", - "enum": [ - "Capacitive", - "Piezoelectric" - ], - "title": "LickSensorType", - "type": "string" - }, - "LightCycle": { - "additionalProperties": false, - "description": "Description of vivarium light cycle times", - "properties": { - "lights_on_time": { - "description": "Time in UTC that lights were turned on", - "format": "time", - "title": "Lights on time", - "type": "string" - }, - "lights_off_time": { - "description": "Time in UTC that lights were turned off", - "format": "time", - "title": "Lights off time", - "type": "string" - } - }, - "required": [ - "lights_on_time", - "lights_off_time" - ], - "title": "LightCycle", - "type": "object" - }, - "LightEmittingDiode": { - "additionalProperties": false, - "description": "Description of a Light Emitting Diode (LED) device", - "properties": { - "device_type": { - "const": "Light emitting diode", - "default": "Light emitting diode", - "enum": [ - "Light emitting diode" - ], - "title": "Device Type", - "type": "string" - }, - "name": { - "title": "Device name", - "type": "string" - }, - "serial_number": { - "anyOf": [ + "$ref": "#/$defs/_Scop" + }, { - "type": "string" + "$ref": "#/$defs/_Scs" }, { - "type": "null" - } - ], - "default": null, - "title": "Serial number" - }, - "manufacturer": { - "discriminator": { - "mapping": { - "Doric": "#/$defs/_Doric", - "Other": "#/$defs/_Other", - "Prizmatix": "#/$defs/_Prizmatix", - "Thorlabs": "#/$defs/_Thorlabs", - "ams OSRAM": "#/$defs/_Ams_Osram" + "$ref": "#/$defs/_Scsg" }, - "propertyName": "name" - }, - "oneOf": [ { - "$ref": "#/$defs/_Ams_Osram" + "$ref": "#/$defs/_Sczo" }, { - "$ref": "#/$defs/_Doric" + "$ref": "#/$defs/_Soc" }, { - "$ref": "#/$defs/_Prizmatix" + "$ref": "#/$defs/_Socl" }, { - "$ref": "#/$defs/_Thorlabs" + "$ref": "#/$defs/_Socm" }, { - "$ref": "#/$defs/_Other" - } - ], - "title": "Manufacturer" - }, - "model": { - "anyOf": [ + "$ref": "#/$defs/_Por" + }, { - "type": "string" + "$ref": "#/$defs/_Suv" }, { - "type": "null" - } - ], - "default": null, - "title": "Model" - }, - "path_to_cad": { - "anyOf": [ + "$ref": "#/$defs/_Sss" + }, { - "type": "string" + "$ref": "#/$defs/_Sss1" }, { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" - }, - "port_index": { - "anyOf": [ + "$ref": "#/$defs/_Sss2_3" + }, { - "type": "string" + "$ref": "#/$defs/_Sss4" }, { - "type": "null" - } - ], - "default": null, - "title": "Port index" - }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Sss5" + }, { - "type": "string" + "$ref": "#/$defs/_Sss6A" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - }, - "wavelength": { - "title": "Wavelength (nm)", - "type": "integer" - }, - "wavelength_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "nanometer", - "title": "Wavelength unit" - }, - "bandwidth": { - "anyOf": [ + "$ref": "#/$defs/_Sss6B" + }, { - "type": "integer" + "$ref": "#/$defs/_Sch" }, { - "type": "null" - } - ], - "default": null, - "title": "Bandwidth (FWHM)" - }, - "bandwidth_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "nanometer", - "title": "Bandwidth unit" - } - }, - "required": [ - "name", - "manufacturer", - "wavelength" - ], - "title": "LightEmittingDiode", - "type": "object" - }, - "LightEmittingDiodeConfig": { - "additionalProperties": false, - "description": "Description of LED settings", - "properties": { - "device_type": { - "const": "Light emitting diode", - "default": "Light emitting diode", - "enum": [ - "Light emitting diode" - ], - "title": "Device Type", - "type": "string" - }, - "name": { - "title": "Name", - "type": "string" - }, - "excitation_power": { - "anyOf": [ + "$ref": "#/$defs/_Sgn" + }, { - "type": "number" + "$ref": "#/$defs/_Sg" }, { - "type": "string" + "$ref": "#/$defs/_Sum" }, { - "type": "null" - } - ], - "default": null, - "title": "Excitation power (mW)" - }, - "excitation_power_unit": { - "$ref": "#/$defs/PowerUnit", - "default": "milliwatt", - "title": "Excitation power unit" - } - }, - "required": [ - "name" - ], - "title": "LightEmittingDiodeConfig", - "type": "object" - }, - "MRIScan": { - "additionalProperties": false, - "description": "Description of a 3D scan", - "properties": { - "scan_index": { - "title": "Scan index", - "type": "integer" - }, - "scan_type": { - "$ref": "#/$defs/ScanType", - "title": "Scan type" - }, - "primary_scan": { - "description": "Indicates the primary scan used for downstream analysis", - "title": "Primary scan", - "type": "boolean" - }, - "mri_scanner": { - "anyOf": [ + "$ref": "#/$defs/_Su3" + }, { - "$ref": "#/$defs/Scanner" + "$ref": "#/$defs/_So" }, { - "type": "null" - } - ], - "default": null, - "title": "MRI scanner" - }, - "scan_sequence_type": { - "$ref": "#/$defs/MriScanSequence", - "title": "Scan sequence" - }, - "rare_factor": { - "anyOf": [ + "$ref": "#/$defs/_Sut" + }, { - "type": "integer" + "$ref": "#/$defs/_Tt" }, { - "type": "null" - } - ], - "default": null, - "title": "RARE factor" - }, - "echo_time": { - "anyOf": [ + "$ref": "#/$defs/_Ttd" + }, { - "type": "number" + "$ref": "#/$defs/_Ttv" }, { - "type": "string" - } - ], - "title": "Echo time (ms)" - }, - "effective_echo_time": { - "anyOf": [ + "$ref": "#/$defs/_Trn" + }, { - "type": "number" + "$ref": "#/$defs/_Tea" }, { - "type": "string" + "$ref": "#/$defs/_Tea1" }, { - "type": "null" - } - ], - "default": null, - "title": "Effective echo time (ms)" - }, - "echo_time_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "millisecond", - "title": "Echo time unit" - }, - "repetition_time": { - "anyOf": [ + "$ref": "#/$defs/_Tea2_3" + }, { - "type": "number" + "$ref": "#/$defs/_Tea4" }, { - "type": "string" - } - ], - "title": "Repetition time (ms)" - }, - "repetition_time_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "millisecond", - "title": "Repetition time unit" - }, - "vc_orientation": { - "anyOf": [ + "$ref": "#/$defs/_Tea5" + }, { - "$ref": "#/$defs/Rotation3dTransform" + "$ref": "#/$defs/_Tea6A" }, { - "type": "null" - } - ], - "default": null, - "title": "Scan orientation" - }, - "vc_position": { - "anyOf": [ + "$ref": "#/$defs/_Tea6B" + }, { - "$ref": "#/$defs/Translation3dTransform" + "$ref": "#/$defs/_Th" }, { - "type": "null" - } - ], - "default": null, - "title": "Scan position" - }, - "subject_position": { - "$ref": "#/$defs/SubjectPosition", - "title": "Subject position" - }, - "voxel_sizes": { - "anyOf": [ + "$ref": "#/$defs/_Dorpm" + }, { - "$ref": "#/$defs/Scale3dTransform" + "$ref": "#/$defs/_Dorsm" }, { - "type": "null" - } - ], - "default": null, - "description": "Resolution", - "title": "Voxel sizes" - }, - "processing_steps": { - "default": [], - "items": { - "enum": [ - "Fiducial segmentation", - "Image atlas alignment", - "Skull stripping" - ], - "type": "string" - }, - "title": "Processing Steps", - "type": "array" - }, - "additional_scan_parameters": { - "$ref": "#/$defs/AindGeneric", - "title": "Parameters" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Trs" + }, { - "type": "string" + "$ref": "#/$defs/_Iv" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - } - }, - "required": [ - "scan_index", - "scan_type", - "primary_scan", - "scan_sequence_type", - "echo_time", - "repetition_time", - "subject_position", - "additional_scan_parameters" - ], - "title": "MRIScan", - "type": "object" - }, - "MagneticStrength": { - "description": "Strength of magnet", - "enum": [ - 7, - 14 - ], - "title": "MagneticStrength", - "type": "integer" - }, - "Maintenance": { - "additionalProperties": false, - "description": "Generic maintenance class", - "properties": { - "maintenance_date": { - "format": "date-time", - "title": "Date and time of maintenance", - "type": "string" - }, - "device_name": { - "description": "Must match a device name in rig/instrument", - "title": "Device name", - "type": "string" - }, - "description": { - "description": "Description on maintenance procedure", - "title": "Description", - "type": "string" - }, - "protocol_id": { - "anyOf": [ + "$ref": "#/$defs/_Tu" + }, { - "type": "string" + "$ref": "#/$defs/_Tm" }, { - "type": "null" - } - ], - "default": null, - "title": "Protocol ID" - }, - "reagents": { - "default": [], - "items": { - "$ref": "#/$defs/Reagent" - }, - "title": "Reagents", - "type": "array" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Tmd" + }, { - "type": "string" + "$ref": "#/$defs/_Tmv" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - } - }, - "required": [ - "maintenance_date", - "device_name", - "description" - ], - "title": "Maintenance", - "type": "object" - }, - "Manipulator": { - "additionalProperties": false, - "description": "Manipulator used on a dome module", - "properties": { - "device_type": { - "const": "Manipulator", - "default": "Manipulator", - "enum": [ - "Manipulator" - ], - "title": "Device Type", - "type": "string" - }, - "name": { - "title": "Device name", - "type": "string" - }, - "serial_number": { - "anyOf": [ + "$ref": "#/$defs/_Uvu" + }, { - "type": "string" + "$ref": "#/$defs/_Ov" }, { - "type": "null" - } - ], - "default": null, - "title": "Serial number" - }, - "manufacturer": { - "discriminator": { - "mapping": { - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "Other": "#/$defs/_Other" + "$ref": "#/$defs/_Val" }, - "propertyName": "name" - }, - "oneOf": [ { - "$ref": "#/$defs/_New_Scale_Technologies" + "$ref": "#/$defs/_Audv" }, { - "$ref": "#/$defs/_Other" - } - ], - "title": "Manufacturer" - }, - "model": { - "anyOf": [ + "$ref": "#/$defs/_Audv1" + }, { - "type": "string" + "$ref": "#/$defs/_Audv2_3" }, { - "type": "null" - } - ], - "default": null, - "title": "Model" - }, - "path_to_cad": { - "anyOf": [ + "$ref": "#/$defs/_Audv4" + }, { - "type": "string" + "$ref": "#/$defs/_Audv5" }, { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" - }, - "port_index": { - "anyOf": [ + "$ref": "#/$defs/_Audv6A" + }, { - "type": "string" + "$ref": "#/$defs/_Audv6B" }, { - "type": "null" - } - ], - "default": null, - "title": "Port index" - }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Vco" + }, { - "type": "string" + "$ref": "#/$defs/_Vent" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - } - }, - "required": [ - "name", - "manufacturer" - ], - "title": "Manipulator", - "type": "object" - }, - "ManipulatorModule": { - "additionalProperties": false, - "description": "A dome module connected to a 3-axis manipulator", - "properties": { - "assembly_name": { - "title": "Assembly name", - "type": "string" - }, - "arc_angle": { - "anyOf": [ + "$ref": "#/$defs/_Vm" + }, { - "type": "number" + "$ref": "#/$defs/_Lgv" }, { - "type": "string" - } - ], - "title": "Arc Angle (deg)" - }, - "module_angle": { - "anyOf": [ + "$ref": "#/$defs/_Vp" + }, { - "type": "number" + "$ref": "#/$defs/_Vpl" }, { - "type": "string" - } - ], - "title": "Module Angle (deg)" - }, - "angle_unit": { - "$ref": "#/$defs/AngleUnit", - "default": "degrees", - "title": "Angle unit" - }, - "rotation_angle": { - "anyOf": [ + "$ref": "#/$defs/_Vplpc" + }, { - "type": "number" + "$ref": "#/$defs/_Vpm" }, { - "type": "string" + "$ref": "#/$defs/_Vpmpc" }, { - "type": "null" - } - ], - "default": null, - "title": "Rotation Angle (deg)" - }, - "coordinate_transform": { - "anyOf": [ + "$ref": "#/$defs/_Pmv" + }, { - "type": "string" + "$ref": "#/$defs/_Vta" }, { - "type": "null" - } - ], - "default": null, - "description": "Path to coordinate transform", - "title": "Transform from local manipulator axes to rig" - }, - "calibration_date": { - "anyOf": [ + "$ref": "#/$defs/_Vtn" + }, { - "format": "date-time", - "type": "string" + "$ref": "#/$defs/_Vlpo" }, { - "type": "null" - } - ], - "default": null, - "title": "Date on which coordinate transform was last calibrated" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Vmh" + }, { - "type": "string" + "$ref": "#/$defs/_Vmpo" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - }, - "primary_targeted_structure": { - "title": "Targeted structure", - "type": "string" - }, - "other_targeted_structure": { - "anyOf": [ + "$ref": "#/$defs/_Verm" + }, { - "items": { - "type": "string" - }, - "type": "array" + "$ref": "#/$defs/_Vnc" }, { - "type": "null" - } - ], - "default": null, - "title": "Other targeted structure" - }, - "targeted_ccf_coordinates": { - "default": [], - "items": { - "$ref": "#/$defs/CcfCoords" - }, - "title": "Targeted CCF coordinates", - "type": "array" - }, - "manipulator_coordinates": { - "$ref": "#/$defs/Coordinates3d", - "title": "Manipulator coordinates" - }, - "anatomical_coordinates": { - "anyOf": [ + "$ref": "#/$defs/_Vecb" + }, { - "$ref": "#/$defs/Coordinates3d" + "$ref": "#/$defs/_Visc" }, { - "type": "null" - } - ], - "default": null, - "title": "Anatomical coordinates" - }, - "anatomical_reference": { - "anyOf": [ + "$ref": "#/$defs/_Visc1" + }, { - "enum": [ - "Bregma", - "Lambda" - ], - "type": "string" + "$ref": "#/$defs/_Visc2_3" }, { - "type": "null" - } - ], - "default": null, - "title": "Anatomical coordinate reference" - }, - "surface_z": { - "anyOf": [ + "$ref": "#/$defs/_Visc4" + }, { - "type": "number" + "$ref": "#/$defs/_Visc5" }, { - "type": "string" + "$ref": "#/$defs/_Visc6A" }, { - "type": "null" - } - ], - "default": null, - "title": "Surface z" - }, - "surface_z_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Surface z unit" - }, - "dye": { - "anyOf": [ + "$ref": "#/$defs/_Visc6B" + }, { - "type": "string" + "$ref": "#/$defs/_Vis" }, { - "type": "null" - } - ], - "default": null, - "title": "Dye" - }, - "implant_hole_number": { - "anyOf": [ + "$ref": "#/$defs/_Xi" + }, { - "type": "integer" + "$ref": "#/$defs/_Zi" }, { - "type": "null" - } - ], - "default": null, - "title": "Implant hole number" - } - }, - "required": [ - "assembly_name", - "arc_angle", - "module_angle", - "primary_targeted_structure", - "manipulator_coordinates" - ], - "title": "ManipulatorModule", - "type": "object" - }, - "MassUnit": { - "description": "Enumeration of Mass Measurements", - "enum": [ - "kilogram", - "gram", - "milligram", - "microgram", - "nanogram" - ], - "title": "MassUnit", - "type": "string" - }, - "MemoryUnit": { - "description": "Computer memory units", - "enum": [ - "Byte", - "Kilobyte", - "Megabyte", - "Gigabyte", - "Terabyte", - "Petabyte", - "Exabyte" - ], - "title": "MemoryUnit", - "type": "string" - }, - "MetadataStatus": { - "description": "Status of Metadata", - "enum": [ - "Valid", - "Invalid", - "Missing", - "Unknown" - ], - "title": "MetadataStatus", - "type": "string" - }, - "Monitor": { - "additionalProperties": false, - "description": "Description of visual display for visual stimuli", - "properties": { - "device_type": { - "const": "Monitor", - "default": "Monitor", - "enum": [ - "Monitor" - ], - "title": "Device Type", - "type": "string" - }, - "name": { - "title": "Device name", - "type": "string" - }, - "serial_number": { - "anyOf": [ + "$ref": "#/$defs/_Alv" + }, { - "type": "string" + "$ref": "#/$defs/_Amc" }, { - "type": "null" - } - ], - "default": null, - "title": "Serial number" - }, - "manufacturer": { - "discriminator": { - "mapping": { - "ASUS": "#/$defs/_Asus", - "LG": "#/$defs/_Lg", - "Other": "#/$defs/_Other" + "$ref": "#/$defs/_Aco" }, - "propertyName": "name" - }, - "oneOf": [ { - "$ref": "#/$defs/_Asus" + "$ref": "#/$defs/_Act" }, { - "$ref": "#/$defs/_Lg" + "$ref": "#/$defs/_Arb" }, { - "$ref": "#/$defs/_Other" - } - ], - "title": "Manufacturer" - }, - "model": { - "anyOf": [ + "$ref": "#/$defs/_Ar" + }, { - "type": "string" + "$ref": "#/$defs/_Bic" }, { - "type": "null" - } - ], - "default": null, - "title": "Model" - }, - "path_to_cad": { - "anyOf": [ + "$ref": "#/$defs/_Bsc" + }, { - "type": "string" + "$ref": "#/$defs/_C" }, { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" - }, - "port_index": { - "anyOf": [ + "$ref": "#/$defs/_Cpd" + }, { - "type": "string" + "$ref": "#/$defs/_Cbc" }, { - "type": "null" - } - ], - "default": null, - "title": "Port index" - }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Cbp" + }, { - "type": "string" + "$ref": "#/$defs/_Cbf" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - }, - "refresh_rate": { - "minimum": 60, - "title": "Refresh rate (Hz)", - "type": "integer" - }, - "width": { - "title": "Width (pixels)", - "type": "integer" - }, - "height": { - "title": "Height (pixels)", - "type": "integer" - }, - "size_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "pixel", - "title": "Size unit" - }, - "viewing_distance": { - "anyOf": [ + "$ref": "#/$defs/_Aq" + }, { - "type": "number" + "$ref": "#/$defs/_Epsc" }, { - "type": "string" - } - ], - "title": "Viewing distance (cm)" - }, - "viewing_distance_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "centimeter", - "title": "Viewing distance unit" - }, - "position": { - "anyOf": [ + "$ref": "#/$defs/_Mfbc" + }, { - "$ref": "#/$defs/RelativePosition" + "$ref": "#/$defs/_Cett" }, { - "type": "null" - } - ], - "default": null, - "title": "Relative position of the monitor" - }, - "contrast": { - "anyOf": [ + "$ref": "#/$defs/_Chpl" + }, { - "maximum": 100, - "minimum": 0, - "type": "integer" + "$ref": "#/$defs/_Cing" }, { - "type": "null" - } - ], - "default": null, - "description": "Monitor's contrast setting", - "title": "Contrast" - }, - "brightness": { - "anyOf": [ + "$ref": "#/$defs/_Cviiin" + }, { - "maximum": 100, - "minimum": 0, - "type": "integer" + "$ref": "#/$defs/_Fx" }, { - "type": "null" - } - ], - "default": null, - "description": "Monitor's brightness setting", - "title": "Brightness" - } - }, - "required": [ - "name", - "manufacturer", - "refresh_rate", - "width", - "height", - "viewing_distance" - ], - "title": "Monitor", - "type": "object" - }, - "MotorizedStage": { - "additionalProperties": false, - "description": "Description of motorized stage", - "properties": { - "device_type": { - "const": "Motorized stage", - "default": "Motorized stage", - "enum": [ - "Motorized stage" - ], - "title": "Device Type", - "type": "string" - }, - "name": { - "title": "Device name", - "type": "string" - }, - "serial_number": { - "anyOf": [ + "$ref": "#/$defs/_Stc" + }, { - "type": "string" + "$ref": "#/$defs/_Cc" }, { - "type": "null" + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" } ], - "default": null, - "title": "Serial number" + "title": "Targeted structure" }, - "manufacturer": { + "other_targeted_structure": { "anyOf": [ { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" + "items": { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ] + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ] + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Other targeted structure" + }, + "targeted_ccf_coordinates": { + "default": [], + "items": { + "$ref": "#/$defs/CcfCoords" + }, + "title": "Targeted CCF coordinates", + "type": "array" + }, + "manipulator_coordinates": { + "$ref": "#/$defs/Coordinates3d", + "title": "Manipulator coordinates" + }, + "anatomical_coordinates": { + "anyOf": [ + { + "$ref": "#/$defs/Coordinates3d" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Anatomical coordinates" + }, + "anatomical_reference": { + "anyOf": [ + { + "enum": [ + "Bregma", + "Lambda" + ], + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Anatomical coordinate reference" + }, + "surface_z": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Surface z" + }, + "surface_z_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Surface z unit" + }, + "dye": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Dye" + }, + "implant_hole_number": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Implant hole number" + }, + "fiber_connections": { + "default": [], + "items": { + "$ref": "#/$defs/FiberConnectionConfig" + }, + "title": "Fiber photometry devices", + "type": "array" + } + }, + "required": [ + "assembly_name", + "arc_angle", + "module_angle", + "primary_targeted_structure", + "manipulator_coordinates" + ], + "title": "FiberModule", + "type": "object" + }, + "FiberProbe": { + "additionalProperties": false, + "description": "Description of a fiber optic probe", + "properties": { + "device_type": { + "const": "Fiber optic probe", + "default": "Fiber optic probe", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "core_diameter": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Core diameter (um)" + }, + "core_diameter_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Core diameter unit" + }, + "numerical_aperture": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Numerical aperture" + }, + "ferrule_material": { + "anyOf": [ + { + "$ref": "#/$defs/FerruleMaterial" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Ferrule material" + }, + "active_length": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Length of taper", + "title": "Active length (mm)" + }, + "total_length": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Total length (mm)" + }, + "length_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Length unit" + } + }, + "required": [ + "name", + "core_diameter", + "numerical_aperture", + "total_length" + ], + "title": "FiberProbe", + "type": "object" + }, + "FieldOfView": { + "additionalProperties": false, + "description": "Description of an imaging field of view", + "properties": { + "index": { + "title": "Index", + "type": "integer" + }, + "imaging_depth": { + "title": "Imaging depth (um)", + "type": "integer" + }, + "imaging_depth_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Imaging depth unit" + }, + "targeted_structure": { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ], + "title": "Targeted structure" + }, + "fov_coordinate_ml": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "FOV coordinate ML" + }, + "fov_coordinate_ap": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "FOV coordinate AP" + }, + "fov_coordinate_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "FOV coordinate unit" + }, + "fov_reference": { + "description": "Reference for ML/AP coordinates", + "title": "FOV reference", + "type": "string" + }, + "fov_width": { + "title": "FOV width (pixels)", + "type": "integer" + }, + "fov_height": { + "title": "FOV height (pixels)", + "type": "integer" + }, + "fov_size_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "pixel", + "title": "FOV size unit" + }, + "magnification": { + "title": "Magnification", + "type": "string" + }, + "fov_scale_factor": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "FOV scale factor (um/pixel)" + }, + "fov_scale_factor_unit": { + "default": "um/pixel", + "title": "FOV scale factor unit", + "type": "string" + }, + "frame_rate": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Frame rate (Hz)" + }, + "frame_rate_unit": { + "$ref": "#/$defs/FrequencyUnit", + "default": "hertz", + "title": "Frame rate unit" + }, + "coupled_fov_index": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Coupled planes for multiscope", + "title": "Coupled FOV" + }, + "power": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For coupled planes, this power is shared by both planes", + "title": "Power" + }, + "power_unit": { + "$ref": "#/$defs/PowerUnit", + "default": "percent", + "title": "Power unit" + }, + "power_ratio": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Power ratio for coupled planes" + }, + "scanfield_z": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Z stage position of the fastz actuator for a given targeted depth" + }, + "scanfield_z_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Z stage position unit" + }, + "scanimage_roi_index": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "ScanImage ROI index" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "index", + "imaging_depth", + "targeted_structure", + "fov_coordinate_ml", + "fov_coordinate_ap", + "fov_reference", + "fov_width", + "fov_height", + "magnification", + "fov_scale_factor" + ], + "title": "FieldOfView", + "type": "object" + }, + "Filter": { + "additionalProperties": false, + "description": "Filter used in a light path", + "properties": { + "device_type": { + "const": "Filter", + "default": "Filter", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "discriminator": { + "mapping": { + "Chroma": "#/$defs/_Chroma", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Other": "#/$defs/_Other", + "Semrock": "#/$defs/_Semrock", + "Thorlabs": "#/$defs/_Thorlabs" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Other" + } + ], + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "filter_type": { + "$ref": "#/$defs/aind_data_schema__components__devices__FilterType", + "title": "Type of filter" + }, + "diameter": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Diameter (mm)" + }, + "width": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Width (mm)" + }, + "height": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Height (mm)" + }, + "size_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Size unit" + }, + "thickness": { + "anyOf": [ + { + "minimum": 0.0, + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Thickness (mm)" + }, + "thickness_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Thickness unit" + }, + "filter_wheel_index": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Filter wheel index" + }, + "cut_off_wavelength": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Cut-off wavelength (nm)" + }, + "cut_on_wavelength": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Cut-on wavelength (nm)" + }, + "center_wavelength": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Center wavelength (nm)" + }, + "wavelength_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "nanometer", + "title": "Wavelength unit" + }, + "description": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "More details about filter properties and where/how it is being used", + "title": "Description" + } + }, + "required": [ + "name", + "manufacturer", + "filter_type" + ], + "title": "Filter", + "type": "object" + }, + "Fluorophore": { + "description": "Fluorophores used in HCR and Immunolabeling", + "enum": [ + "Alexa Fluor 405", + "Alexa Fluor 488", + "Alexa Fluor 546", + "Alexa Fluor 568", + "Alexa Fluor 594", + "Alexa Fluor 633", + "Alexa Fluor 647", + "ATTO 488", + "ATTO 565", + "ATTO 643", + "Cyanine Cy 3" + ], + "title": "Fluorophore", + "type": "string" + }, + "FrequencyUnit": { + "description": "Enumeration of Frequency Measurements", + "enum": [ + "kilohertz", + "hertz", + "millihertz" + ], + "title": "FrequencyUnit", + "type": "string" + }, + "Funding": { + "additionalProperties": false, + "description": "Description of funding sources", + "properties": { + "funder": { + "discriminator": { + "mapping": { + "Allen Institute": "#/$defs/_Allen_Institute", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + } + ], + "title": "Funder" + }, + "grant_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Grant number" + }, + "fundee": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Person(s) funded by this mechanism", + "title": "Fundee" + } + }, + "required": [ + "funder" + ], + "title": "Funding", + "type": "object" + }, + "GroundWireMaterial": { + "description": "Ground wire material name", + "enum": [ + "Silver", + "Platinum iridium" + ], + "title": "GroundWireMaterial", + "type": "string" + }, + "Group": { + "description": "Data collection group name", + "enum": [ + "behavior", + "ephys", + "MSMA", + "ophys", + "NBA" + ], + "title": "Group", + "type": "string" + }, + "HCRProbe": { + "additionalProperties": false, + "description": "Description of an oligo probe used for HCR", + "properties": { + "name": { + "title": "Name", + "type": "string" + }, + "source": { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ], + "title": "Source" + }, + "rrid": { + "anyOf": [ + { + "$ref": "#/$defs/PIDName" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Research Resource ID" + }, + "lot_number": { + "title": "Lot number", + "type": "string" + }, + "expiration_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lot expiration date" + }, + "species": { + "discriminator": { + "mapping": { + "Callithrix jacchus": "#/$defs/_Callithrix_Jacchus", + "Homo sapiens": "#/$defs/_Homo_Sapiens", + "Macaca mulatta": "#/$defs/_Macaca_Mulatta", + "Mus musculus": "#/$defs/_Mus_Musculus", + "Rattus norvegicus": "#/$defs/_Rattus_Norvegicus" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Callithrix_Jacchus" + }, + { + "$ref": "#/$defs/_Homo_Sapiens" + }, + { + "$ref": "#/$defs/_Macaca_Mulatta" + }, + { + "$ref": "#/$defs/_Mus_Musculus" + }, + { + "$ref": "#/$defs/_Rattus_Norvegicus" + } + ], + "title": "Species" + }, + "gene": { + "$ref": "#/$defs/PIDName", + "title": "Gene name, accession number, and registry" + }, + "probe_sequences": { + "items": { + "type": "string" + }, + "title": "Probe sequences", + "type": "array" + }, + "readout": { + "$ref": "#/$defs/HCRReadout", + "title": "Readout" + }, + "initiator_name": { + "title": "Initiator name", + "type": "string" + } + }, + "required": [ + "name", + "source", + "lot_number", + "species", + "gene", + "probe_sequences", + "readout", + "initiator_name" + ], + "title": "HCRProbe", + "type": "object" + }, + "HCRReadout": { + "additionalProperties": false, + "description": "Description of a readout for HCR", + "properties": { + "name": { + "title": "Name", + "type": "string" + }, + "source": { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ], + "title": "Source" + }, + "rrid": { + "anyOf": [ + { + "$ref": "#/$defs/PIDName" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Research Resource ID" + }, + "lot_number": { + "title": "Lot number", + "type": "string" + }, + "expiration_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lot expiration date" + }, + "fluorophore": { + "$ref": "#/$defs/Fluorophore" + }, + "excitation_wavelength": { + "title": "Excitation wavelength (nm)", + "type": "integer" + }, + "excitation_wavelength_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "nanometer", + "title": "Excitation wavelength unit" + }, + "stain_type": { + "$ref": "#/$defs/StainType", + "title": "Stain type" + }, + "initiator_name": { + "title": "Initiator name", + "type": "string" + } + }, + "required": [ + "name", + "source", + "lot_number", + "fluorophore", + "excitation_wavelength", + "stain_type", + "initiator_name" + ], + "title": "HCRReadout", + "type": "object" + }, + "HCRSeries": { + "additionalProperties": false, + "description": "Description of series of HCR staining rounds for mFISH", + "properties": { + "codebook_name": { + "title": "Codebook name", + "type": "string" + }, + "number_of_rounds": { + "title": "Number of round", + "type": "integer" + }, + "hcr_rounds": { + "items": { + "$ref": "#/$defs/HybridizationChainReaction" + }, + "title": "Hybridization Chain Reaction rounds", + "type": "array" + }, + "strip_qc_compatible": { + "title": "Strip QC compatible", + "type": "boolean" + } + }, + "required": [ + "codebook_name", + "number_of_rounds", + "hcr_rounds", + "strip_qc_compatible" + ], + "title": "HCRSeries", + "type": "object" + }, + "HarpDevice": { + "additionalProperties": false, + "description": "DAQ that uses the Harp protocol for synchronization and data transmission", + "properties": { + "device_type": { + "const": "Harp device", + "default": "Harp device", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "default": { + "name": "Open Ephys Production Site", + "abbreviation": "OEPS", + "registry": { + "abbreviation": "ROR", + "name": "Research Organization Registry" + }, + "registry_identifier": "007rkz355" + }, + "discriminator": { + "mapping": { + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "National Instruments": "#/$defs/_National_Instruments", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Other": "#/$defs/_Other", + "Second Order Effects": "#/$defs/_Second_Order_Effects" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Other" + } + ], + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "data_interface": { + "$ref": "#/$defs/DataInterface", + "default": "USB", + "title": "Data interface" + }, + "computer_name": { + "title": "Name of computer controlling this DAQ", + "type": "string" + }, + "channels": { + "default": [], + "items": { + "$ref": "#/$defs/DAQChannel" + }, + "title": "DAQ channels", + "type": "array" + }, + "firmware_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Firmware version" + }, + "hardware_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Hardware version" + }, + "harp_device_type": { + "discriminator": { + "mapping": { + "Behavior": "#/$defs/aind_data_schema_models__harp_types___Behavior", + "Camera Controller": "#/$defs/_Camera_Controller", + "Clock Synchronizer": "#/$defs/_Clock_Synchronizer", + "Cuttlefish": "#/$defs/_Cuttlefish", + "Generic Harp Device": "#/$defs/_Generic_Harp_Device", + "Input Expander": "#/$defs/_Input_Expander", + "Lickety Split": "#/$defs/_Lickety_Split", + "Load Cells": "#/$defs/_Load_Cells", + "Olfactometer": "#/$defs/_Olfactometer", + "Sniff Detector": "#/$defs/_Sniff_Detector", + "Sound Card": "#/$defs/_Sound_Card", + "Stepper Driver": "#/$defs/_Stepper_Driver", + "Synchronizer": "#/$defs/_Synchronizer", + "Timestamp Generator Gen 1": "#/$defs/_Timestamp_Generator_Gen_1", + "Timestamp Generator Gen 3": "#/$defs/_Timestamp_Generator_Gen_3", + "Treadmill": "#/$defs/_Treadmill" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__harp_types___Behavior" + }, + { + "$ref": "#/$defs/_Camera_Controller" + }, + { + "$ref": "#/$defs/_Clock_Synchronizer" + }, + { + "$ref": "#/$defs/_Cuttlefish" + }, + { + "$ref": "#/$defs/_Generic_Harp_Device" + }, + { + "$ref": "#/$defs/_Input_Expander" + }, + { + "$ref": "#/$defs/_Lickety_Split" + }, + { + "$ref": "#/$defs/_Load_Cells" + }, + { + "$ref": "#/$defs/_Olfactometer" + }, + { + "$ref": "#/$defs/_Sniff_Detector" + }, + { + "$ref": "#/$defs/_Sound_Card" + }, + { + "$ref": "#/$defs/_Stepper_Driver" + }, + { + "$ref": "#/$defs/_Synchronizer" + }, + { + "$ref": "#/$defs/_Timestamp_Generator_Gen_1" + }, + { + "$ref": "#/$defs/_Timestamp_Generator_Gen_3" + }, + { + "$ref": "#/$defs/_Treadmill" + } + ], + "title": "Type of Harp device" + }, + "core_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Core version" + }, + "tag_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Tag version" + }, + "is_clock_generator": { + "title": "Is Clock Generator", + "type": "boolean" + } + }, + "required": [ + "name", + "computer_name", + "harp_device_type", + "is_clock_generator" + ], + "title": "HarpDevice", + "type": "object" + }, + "Headframe": { + "additionalProperties": false, + "description": "Description of headframe procedure", + "properties": { + "procedure_type": { + "const": "Headframe", + "default": "Headframe", + "title": "Procedure Type", + "type": "string" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "headframe_type": { + "title": "Headframe type", + "type": "string" + }, + "headframe_part_number": { + "title": "Headframe part number", + "type": "string" + }, + "headframe_material": { + "anyOf": [ + { + "$ref": "#/$defs/HeadframeMaterial" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Headframe material" + }, + "well_part_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Well part number" + }, + "well_type": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Well type" + } + }, + "required": [ + "protocol_id", + "headframe_type", + "headframe_part_number" + ], + "title": "Headframe", + "type": "object" + }, + "HeadframeMaterial": { + "description": "Headframe material name", + "enum": [ + "Steel", + "Titanium", + "White Zirconia" + ], + "title": "HeadframeMaterial", + "type": "string" + }, + "Headstage": { + "additionalProperties": false, + "description": "Headstage used with an ephys probe", + "properties": { + "device_type": { + "const": "Headstage", + "default": "Headstage", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "name" + ], + "title": "Headstage", + "type": "object" + }, + "HomeCageEnrichment": { + "description": "Materials provided in animal home cage", + "enum": [ + "None", + "Plastic shelter", + "Plastic tube", + "Running wheel", + "Other" + ], + "title": "HomeCageEnrichment", + "type": "string" + }, + "Housing": { + "additionalProperties": false, + "description": "Description of subject housing", + "properties": { + "cage_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Cage ID" + }, + "room_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Room ID" + }, + "light_cycle": { + "anyOf": [ + { + "$ref": "#/$defs/LightCycle" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Light cycle" + }, + "home_cage_enrichment": { + "default": [], + "items": { + "$ref": "#/$defs/HomeCageEnrichment" + }, + "title": "Home cage enrichment", + "type": "array" + }, + "cohoused_subjects": { + "default": [], + "description": "List of IDs of other subjects housed in same cage", + "items": { + "type": "string" + }, + "title": "Co-housed subjects", + "type": "array" + } + }, + "title": "Housing", + "type": "object" + }, + "HybridizationChainReaction": { + "additionalProperties": false, + "description": "Description of an HCR staining round", + "properties": { + "round_index": { + "title": "Round index", + "type": "integer" + }, + "start_time": { + "format": "date-time", + "title": "Round start time", + "type": "string" + }, + "end_time": { + "format": "date-time", + "title": "Round end time", + "type": "string" + }, + "HCR_probes": { + "items": { + "$ref": "#/$defs/HCRProbe" + }, + "title": "HCR probes", + "type": "array" + }, + "other_probes": { + "default": [], + "items": { + "$ref": "#/$defs/OligoProbe" + }, + "title": "Other probes", + "type": "array" + }, + "probe_concentration": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Probe concentration (M)" + }, + "probe_concentration_unit": { + "default": "M", + "title": "Probe concentration unit", + "type": "string" + }, + "other_stains": { + "default": [], + "items": { + "$ref": "#/$defs/Stain" + }, + "title": "Other stains", + "type": "array" + }, + "instrument_id": { + "title": "Instrument ID", + "type": "string" + } + }, + "required": [ + "round_index", + "start_time", + "end_time", + "HCR_probes", + "probe_concentration", + "instrument_id" + ], + "title": "HybridizationChainReaction", + "type": "object" + }, + "ImageAxis": { + "additionalProperties": false, + "description": "Description of an image axis", + "properties": { + "name": { + "$ref": "#/$defs/AxisName", + "title": "Name" + }, + "direction": { + "$ref": "#/$defs/AnatomicalDirection", + "description": "Tissue direction as the value of axis increases. If Other describe in notes." + }, + "dimension": { + "description": "Reference axis number for stitching", + "title": "Dimension", + "type": "integer" + }, + "unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Axis physical units" + } + }, + "required": [ + "name", + "direction", + "dimension" + ], + "title": "ImageAxis", + "type": "object" + }, + "ImagingDeviceType": { + "description": "Imaginge device type name", + "enum": [ + "Beam expander", + "Sample Chamber", + "Diffuser", + "Galvo", + "Laser combiner", + "Laser coupler", + "Prism", + "Objective", + "Rotation mount", + "Slit", + "Tunable lens", + "Other" + ], + "title": "ImagingDeviceType", + "type": "string" + }, + "ImagingInstrumentType": { + "description": "Experiment type name", + "enum": [ + "confocal", + "diSPIM", + "exaSPIM", + "ecephys", + "mesoSPIM", + "Other", + "SmartSPIM", + "Two photon" + ], + "title": "ImagingInstrumentType", + "type": "string" + }, + "Immersion": { + "additionalProperties": false, + "description": "Description of immersion medium", + "properties": { + "medium": { + "$ref": "#/$defs/ImmersionMedium", + "title": "Immersion medium" + }, + "refractive_index": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Index of refraction" + } + }, + "required": [ + "medium", + "refractive_index" + ], + "title": "Immersion", + "type": "object" + }, + "ImmersionMedium": { + "description": "Immersion medium name", + "enum": [ + "air", + "multi", + "oil", + "PBS", + "water", + "other", + "easy index", + "ethyl cinnimate", + "aqueous clearing buffer" + ], + "title": "ImmersionMedium", + "type": "string" + }, + "ImmunolabelClass": { + "description": "Type of antibodies", + "enum": [ + "Primary", + "Secondary", + "Conjugate" + ], + "title": "ImmunolabelClass", + "type": "string" + }, + "Instrument": { + "additionalProperties": false, + "description": "Description of an instrument, which is a collection of devices", + "properties": { + "describedBy": { + "const": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/instrument.py", + "default": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/instrument.py", + "title": "Describedby", + "type": "string" + }, + "schema_version": { + "const": "1.0.4", + "default": "1.0.4", + "title": "Schema Version", + "type": "string" + }, + "instrument_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Unique instrument identifier, name convention: --", + "title": "Instrument ID" + }, + "modification_date": { + "format": "date", + "title": "Date of modification", + "type": "string" + }, + "instrument_type": { + "$ref": "#/$defs/ImagingInstrumentType", + "title": "Instrument type" + }, + "manufacturer": { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ], + "title": "Instrument manufacturer" + }, + "temperature_control": { + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Temperature control" + }, + "humidity_control": { + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Humidity control" + }, + "optical_tables": { + "default": [], + "items": { + "$ref": "#/$defs/OpticalTable" + }, + "title": "Optical table", + "type": "array" + }, + "enclosure": { + "anyOf": [ + { + "$ref": "#/$defs/Enclosure" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Enclosure" + }, + "objectives": { + "items": { + "$ref": "#/$defs/Objective" + }, + "title": "Objectives", + "type": "array" + }, + "detectors": { + "default": [], + "items": { + "$ref": "#/$defs/Detector" + }, + "title": "Detectors", + "type": "array" + }, + "light_sources": { + "default": [], + "items": { + "discriminator": { + "mapping": { + "Lamp": "#/$defs/Lamp", + "Laser": "#/$defs/Laser", + "Light emitting diode": "#/$defs/LightEmittingDiode" + }, + "propertyName": "device_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/Laser" + }, + { + "$ref": "#/$defs/LightEmittingDiode" + }, + { + "$ref": "#/$defs/Lamp" + } + ] + }, + "title": "Light sources", + "type": "array" + }, + "lenses": { + "default": [], + "items": { + "$ref": "#/$defs/Lens" + }, + "title": "Lenses", + "type": "array" + }, + "fluorescence_filters": { + "default": [], + "items": { + "$ref": "#/$defs/Filter" + }, + "title": "Fluorescence filters", + "type": "array" + }, + "motorized_stages": { + "default": [], + "items": { + "$ref": "#/$defs/MotorizedStage" + }, + "title": "Motorized stages", + "type": "array" + }, + "scanning_stages": { + "default": [], + "items": { + "$ref": "#/$defs/ScanningStage" + }, + "title": "Scanning motorized stages", + "type": "array" + }, + "additional_devices": { + "default": [], + "items": { + "$ref": "#/$defs/AdditionalImagingDevice" + }, + "title": "Additional devices", + "type": "array" + }, + "calibration_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Date of most recent calibration", + "title": "Calibration date" + }, + "calibration_data": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Path to calibration data from most recent calibration", + "title": "Calibration data" + }, + "com_ports": { + "default": [], + "items": { + "$ref": "#/$defs/Com" + }, + "title": "COM ports", + "type": "array" + }, + "daqs": { + "default": [], + "items": { + "$ref": "#/$defs/DAQDevice" + }, + "title": "DAQ", + "type": "array" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "modification_date", + "instrument_type", + "manufacturer", + "objectives" + ], + "title": "Instrument", + "type": "object" + }, + "IntraCerebellarVentricleInjection": { + "additionalProperties": false, + "description": "Description of an interacerebellar ventricle injection", + "properties": { + "injection_materials": { + "items": { + "discriminator": { + "mapping": { + "Reagent": "#/$defs/NonViralMaterial", + "Virus": "#/$defs/ViralMaterial" + }, + "propertyName": "material_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/ViralMaterial" + }, + { + "$ref": "#/$defs/NonViralMaterial" + } + ] + }, + "minItems": 1, + "title": "Injection material", + "type": "array" + }, + "recovery_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Recovery time" + }, + "recovery_time_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Recovery time unit" + }, + "injection_duration": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection duration" + }, + "injection_duration_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Injection duration unit" + }, + "instrument_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instrument ID" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "injection_coordinate_ml": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection coordinate ML (mm)" + }, + "injection_coordinate_ap": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection coordinate AP (mm)" + }, + "injection_coordinate_depth": { + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "title": "Injection coordinate depth (mm)", + "type": "array" + }, + "injection_coordinate_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Injection coordinate unit" + }, + "injection_coordinate_reference": { + "anyOf": [ + { + "$ref": "#/$defs/CoordinateReferenceLocation" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection coordinate reference" + }, + "bregma_to_lambda_distance": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Distance between bregman and lambda", + "title": "Bregma to lambda (mm)" + }, + "bregma_to_lambda_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Bregma to lambda unit" + }, + "injection_angle": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection angle (deg)" + }, + "injection_angle_unit": { + "$ref": "#/$defs/AngleUnit", + "default": "degrees", + "title": "Injection angle unit" + }, + "targeted_structure": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection targeted brain structure" + }, + "injection_hemisphere": { + "anyOf": [ + { + "$ref": "#/$defs/Side" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection hemisphere" + }, + "procedure_type": { + "const": "ICV injection", + "default": "ICV injection", + "title": "Procedure Type", + "type": "string" + }, + "injection_volume": { + "description": "Injection volume, one value per location", + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "title": "Injection volume (nL)", + "type": "array" + }, + "injection_volume_unit": { + "$ref": "#/$defs/VolumeUnit", + "default": "nanoliter", + "title": "Injection volume unit" + } + }, + "required": [ + "injection_materials", + "protocol_id", + "injection_coordinate_ml", + "injection_coordinate_ap", + "injection_coordinate_depth", + "injection_angle", + "injection_volume" + ], + "title": "IntraCerebellarVentricleInjection", + "type": "object" + }, + "IntraCisternalMagnaInjection": { + "additionalProperties": false, + "description": "Description of an interacisternal magna injection", + "properties": { + "injection_materials": { + "items": { + "discriminator": { + "mapping": { + "Reagent": "#/$defs/NonViralMaterial", + "Virus": "#/$defs/ViralMaterial" + }, + "propertyName": "material_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/ViralMaterial" + }, + { + "$ref": "#/$defs/NonViralMaterial" + } + ] + }, + "minItems": 1, + "title": "Injection material", + "type": "array" + }, + "recovery_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Recovery time" + }, + "recovery_time_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Recovery time unit" + }, + "injection_duration": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection duration" + }, + "injection_duration_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Injection duration unit" + }, + "instrument_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instrument ID" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "injection_coordinate_ml": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection coordinate ML (mm)" + }, + "injection_coordinate_ap": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection coordinate AP (mm)" + }, + "injection_coordinate_depth": { + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "title": "Injection coordinate depth (mm)", + "type": "array" + }, + "injection_coordinate_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Injection coordinate unit" + }, + "injection_coordinate_reference": { + "anyOf": [ + { + "$ref": "#/$defs/CoordinateReferenceLocation" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection coordinate reference" + }, + "bregma_to_lambda_distance": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Distance between bregman and lambda", + "title": "Bregma to lambda (mm)" + }, + "bregma_to_lambda_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Bregma to lambda unit" + }, + "injection_angle": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection angle (deg)" + }, + "injection_angle_unit": { + "$ref": "#/$defs/AngleUnit", + "default": "degrees", + "title": "Injection angle unit" + }, + "targeted_structure": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection targeted brain structure" + }, + "injection_hemisphere": { + "anyOf": [ + { + "$ref": "#/$defs/Side" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection hemisphere" + }, + "procedure_type": { + "const": "ICM injection", + "default": "ICM injection", + "title": "Procedure Type", + "type": "string" + }, + "injection_volume": { + "description": "Injection volume, one value per location", + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "title": "Injection volume (nL)", + "type": "array" + }, + "injection_volume_unit": { + "$ref": "#/$defs/VolumeUnit", + "default": "nanoliter", + "title": "Injection volume unit" + } + }, + "required": [ + "injection_materials", + "protocol_id", + "injection_coordinate_ml", + "injection_coordinate_ap", + "injection_coordinate_depth", + "injection_angle", + "injection_volume" + ], + "title": "IntraCisternalMagnaInjection", + "type": "object" + }, + "IntraperitonealInjection": { + "additionalProperties": false, + "description": "Description of an intraperitoneal injection procedure", + "properties": { + "injection_materials": { + "items": { + "discriminator": { + "mapping": { + "Reagent": "#/$defs/NonViralMaterial", + "Virus": "#/$defs/ViralMaterial" + }, + "propertyName": "material_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/ViralMaterial" + }, + { + "$ref": "#/$defs/NonViralMaterial" + } + ] + }, + "minItems": 1, + "title": "Injection material", + "type": "array" + }, + "recovery_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Recovery time" + }, + "recovery_time_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Recovery time unit" + }, + "injection_duration": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection duration" + }, + "injection_duration_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Injection duration unit" + }, + "instrument_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instrument ID" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "procedure_type": { + "const": "Intraperitoneal injection", + "default": "Intraperitoneal injection", + "title": "Procedure Type", + "type": "string" + }, + "injection_volume": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection volume (uL)" + }, + "injection_volume_unit": { + "$ref": "#/$defs/VolumeUnit", + "default": "microliter", + "title": "Injection volume unit" + } + }, + "required": [ + "injection_materials", + "protocol_id", + "injection_volume" + ], + "title": "IntraperitonealInjection", + "type": "object" + }, + "IontophoresisInjection": { + "additionalProperties": false, + "description": "Description of an iotophoresis injection procedure", + "properties": { + "injection_materials": { + "items": { + "discriminator": { + "mapping": { + "Reagent": "#/$defs/NonViralMaterial", + "Virus": "#/$defs/ViralMaterial" + }, + "propertyName": "material_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/ViralMaterial" + }, + { + "$ref": "#/$defs/NonViralMaterial" + } + ] + }, + "minItems": 1, + "title": "Injection material", + "type": "array" + }, + "recovery_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Recovery time" + }, + "recovery_time_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Recovery time unit" + }, + "injection_duration": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection duration" + }, + "injection_duration_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Injection duration unit" + }, + "instrument_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instrument ID" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "injection_coordinate_ml": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection coordinate ML (mm)" + }, + "injection_coordinate_ap": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection coordinate AP (mm)" + }, + "injection_coordinate_depth": { + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "title": "Injection coordinate depth (mm)", + "type": "array" + }, + "injection_coordinate_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Injection coordinate unit" + }, + "injection_coordinate_reference": { + "anyOf": [ + { + "$ref": "#/$defs/CoordinateReferenceLocation" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection coordinate reference" + }, + "bregma_to_lambda_distance": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Distance between bregman and lambda", + "title": "Bregma to lambda (mm)" + }, + "bregma_to_lambda_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Bregma to lambda unit" + }, + "injection_angle": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection angle (deg)" + }, + "injection_angle_unit": { + "$ref": "#/$defs/AngleUnit", + "default": "degrees", + "title": "Injection angle unit" + }, + "targeted_structure": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection targeted brain structure" + }, + "injection_hemisphere": { + "anyOf": [ + { + "$ref": "#/$defs/Side" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection hemisphere" + }, + "procedure_type": { + "const": "Iontophoresis injection", + "default": "Iontophoresis injection", + "title": "Procedure Type", + "type": "string" + }, + "injection_current": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection current (uA)" + }, + "injection_current_unit": { + "$ref": "#/$defs/CurrentUnit", + "default": "microamps", + "title": "Injection current unit" + }, + "alternating_current": { + "title": "Alternating current", + "type": "string" + } + }, + "required": [ + "injection_materials", + "protocol_id", + "injection_coordinate_ml", + "injection_coordinate_ap", + "injection_coordinate_depth", + "injection_angle", + "injection_current", + "alternating_current" + ], + "title": "IontophoresisInjection", + "type": "object" + }, + "Lamp": { + "additionalProperties": false, + "description": "Description of a Lamp lightsource", + "properties": { + "device_type": { + "const": "Lamp", + "default": "Lamp", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "wavelength_min": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Wavelength minimum (nm)" + }, + "wavelength_max": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Wavelength maximum (nm)" + }, + "wavelength_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "nanometer", + "title": "Wavelength unit" + }, + "temperature": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Temperature (K)" + }, + "temperature_unit": { + "$ref": "#/$defs/TemperatureUnit", + "default": "Kelvin", + "title": "Temperature unit" + } + }, + "required": [ + "name" + ], + "title": "Lamp", + "type": "object" + }, + "Laser": { + "additionalProperties": false, + "description": "Laser module with a specific wavelength (may be a sub-component of a larger assembly)", + "properties": { + "device_type": { + "const": "Laser", + "default": "Laser", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "discriminator": { + "mapping": { + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Quantifi": "#/$defs/_Quantifi", + "Vortran": "#/$defs/_Vortran" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Other" + } + ], + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "wavelength": { + "title": "Wavelength (nm)", + "type": "integer" + }, + "wavelength_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "nanometer", + "title": "Wavelength unit" + }, + "maximum_power": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Maximum power (mW)" + }, + "power_unit": { + "$ref": "#/$defs/PowerUnit", + "default": "milliwatt", + "title": "Power unit" + }, + "coupling": { + "anyOf": [ + { + "$ref": "#/$defs/Coupling" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Coupling" + }, + "coupling_efficiency": { + "anyOf": [ + { + "maximum": 100.0, + "minimum": 0.0, + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Coupling efficiency (percent)" + }, + "coupling_efficiency_unit": { + "const": "percent", + "default": "percent", + "title": "Coupling efficiency unit", + "type": "string" + }, + "item_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Item number" + } + }, + "required": [ + "name", + "manufacturer", + "wavelength" + ], + "title": "Laser", + "type": "object" + }, + "LaserAssembly": { + "additionalProperties": false, + "description": "Assembly for optogenetic stimulation", + "properties": { + "name": { + "title": "Laser assembly name", + "type": "string" + }, + "manipulator": { + "$ref": "#/$defs/Manipulator" + }, + "lasers": { + "items": { + "$ref": "#/$defs/Laser" + }, + "title": "Lasers connected to this module", + "type": "array" + }, + "collimator": { + "$ref": "#/$defs/Device", + "title": "Collimator" + }, + "fiber": { + "$ref": "#/$defs/Patch", + "title": "Fiber patch" + } + }, + "required": [ + "name", + "manipulator", + "lasers", + "collimator", + "fiber" + ], + "title": "LaserAssembly", + "type": "object" + }, + "LaserConfig": { + "additionalProperties": false, + "description": "Description of laser settings in a session", + "properties": { + "device_type": { + "const": "Laser", + "default": "Laser", + "title": "Device Type", + "type": "string" + }, + "name": { + "description": "Must match rig json", + "title": "Name", + "type": "string" + }, + "wavelength": { + "title": "Wavelength (nm)", + "type": "integer" + }, + "wavelength_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "nanometer", + "title": "Wavelength unit" + }, + "excitation_power": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Excitation power (mW)" + }, + "excitation_power_unit": { + "$ref": "#/$defs/PowerUnit", + "default": "milliwatt", + "title": "Excitation power unit" + } + }, + "required": [ + "name", + "wavelength" + ], + "title": "LaserConfig", + "type": "object" + }, + "Lens": { + "additionalProperties": false, + "description": "Lens", + "properties": { + "device_type": { + "const": "Lens", + "default": "Lens", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "discriminator": { + "mapping": { + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Computar": "#/$defs/_Computar", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Leica": "#/$defs/_Leica", + "Mitutuyo": "#/$defs/_Mitutuyo", + "Navitar": "#/$defs/_Navitar", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Other": "#/$defs/_Other", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Tamron": "#/$defs/_Tamron", + "Thorlabs": "#/$defs/_Thorlabs" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Other" + } + ], + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "focal_length": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Focal length of the lens (mm)" + }, + "focal_length_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Focal length unit" + }, + "size": { + "anyOf": [ + { + "$ref": "#/$defs/LensSize" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Size (inches)" + }, + "lens_size_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "inch", + "title": "Lens size unit" + }, + "optimized_wavelength_range": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Optimized wavelength range (nm)" + }, + "wavelength_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "nanometer", + "title": "Wavelength unit" + }, + "max_aperture": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Max aperture (e.g. f/2)" + } + }, + "required": [ + "name", + "manufacturer" + ], + "title": "Lens", + "type": "object" + }, + "LensSize": { + "description": "Lens size value", + "enum": [ + 1, + 2 + ], + "title": "LensSize", + "type": "integer" + }, + "LickSensorType": { + "description": "Type of lick sensor", + "enum": [ + "Capacitive", + "Conductive", + "Piezoelectric" + ], + "title": "LickSensorType", + "type": "string" + }, + "LightCycle": { + "additionalProperties": false, + "description": "Description of vivarium light cycle times", + "properties": { + "lights_on_time": { + "description": "Time in UTC that lights were turned on", + "format": "time", + "title": "Lights on time", + "type": "string" + }, + "lights_off_time": { + "description": "Time in UTC that lights were turned off", + "format": "time", + "title": "Lights off time", + "type": "string" + } + }, + "required": [ + "lights_on_time", + "lights_off_time" + ], + "title": "LightCycle", + "type": "object" + }, + "LightEmittingDiode": { + "additionalProperties": false, + "description": "Description of a Light Emitting Diode (LED) device", + "properties": { + "device_type": { + "const": "Light emitting diode", + "default": "Light emitting diode", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "discriminator": { + "mapping": { + "Doric": "#/$defs/_Doric", + "Other": "#/$defs/_Other", + "Prizmatix": "#/$defs/_Prizmatix", + "Thorlabs": "#/$defs/_Thorlabs", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Ams_Osram" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Other" + } + ], + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "wavelength": { + "title": "Wavelength (nm)", + "type": "integer" + }, + "wavelength_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "nanometer", + "title": "Wavelength unit" + }, + "bandwidth": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Bandwidth (FWHM)" + }, + "bandwidth_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "nanometer", + "title": "Bandwidth unit" + } + }, + "required": [ + "name", + "manufacturer", + "wavelength" + ], + "title": "LightEmittingDiode", + "type": "object" + }, + "LightEmittingDiodeConfig": { + "additionalProperties": false, + "description": "Description of LED settings", + "properties": { + "device_type": { + "const": "Light emitting diode", + "default": "Light emitting diode", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Name", + "type": "string" + }, + "excitation_power": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Excitation power (mW)" + }, + "excitation_power_unit": { + "$ref": "#/$defs/PowerUnit", + "default": "milliwatt", + "title": "Excitation power unit" + } + }, + "required": [ + "name" + ], + "title": "LightEmittingDiodeConfig", + "type": "object" + }, + "MRIScan": { + "additionalProperties": false, + "description": "Description of a 3D scan", + "properties": { + "scan_index": { + "title": "Scan index", + "type": "integer" + }, + "scan_type": { + "$ref": "#/$defs/ScanType", + "title": "Scan type" + }, + "primary_scan": { + "description": "Indicates the primary scan used for downstream analysis", + "title": "Primary scan", + "type": "boolean" + }, + "mri_scanner": { + "anyOf": [ + { + "$ref": "#/$defs/Scanner" + }, + { + "type": "null" + } + ], + "default": null, + "title": "MRI scanner" + }, + "scan_sequence_type": { + "$ref": "#/$defs/MriScanSequence", + "title": "Scan sequence" + }, + "rare_factor": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "RARE factor" + }, + "echo_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Echo time (ms)" + }, + "effective_echo_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Effective echo time (ms)" + }, + "echo_time_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "millisecond", + "title": "Echo time unit" + }, + "repetition_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Repetition time (ms)" + }, + "repetition_time_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "millisecond", + "title": "Repetition time unit" + }, + "vc_orientation": { + "anyOf": [ + { + "$ref": "#/$defs/Rotation3dTransform" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Scan orientation" + }, + "vc_position": { + "anyOf": [ + { + "$ref": "#/$defs/Translation3dTransform" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Scan position" + }, + "subject_position": { + "$ref": "#/$defs/SubjectPosition", + "title": "Subject position" + }, + "voxel_sizes": { + "anyOf": [ + { + "$ref": "#/$defs/Scale3dTransform" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Resolution", + "title": "Voxel sizes" + }, + "processing_steps": { + "default": [], + "items": { + "enum": [ + "Fiducial segmentation", + "Image atlas alignment", + "Skull stripping" + ], + "type": "string" + }, + "title": "Processing Steps", + "type": "array" + }, + "additional_scan_parameters": { + "$ref": "#/$defs/AindGeneric", + "title": "Parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "scan_index", + "scan_type", + "primary_scan", + "scan_sequence_type", + "echo_time", + "repetition_time", + "subject_position", + "additional_scan_parameters" + ], + "title": "MRIScan", + "type": "object" + }, + "MagneticStrength": { + "description": "Strength of magnet", + "enum": [ + 7, + 14 + ], + "title": "MagneticStrength", + "type": "integer" + }, + "Maintenance": { + "additionalProperties": false, + "description": "Generic maintenance class", + "properties": { + "maintenance_date": { + "format": "date-time", + "title": "Date and time of maintenance", + "type": "string" + }, + "device_name": { + "description": "Must match a device name in rig/instrument", + "title": "Device name", + "type": "string" + }, + "description": { + "description": "Description on maintenance procedure", + "title": "Description", + "type": "string" + }, + "protocol_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Protocol ID" + }, + "reagents": { + "default": [], + "items": { + "$ref": "#/$defs/Reagent" + }, + "title": "Reagents", + "type": "array" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "maintenance_date", + "device_name", + "description" + ], + "title": "Maintenance", + "type": "object" + }, + "Manipulator": { + "additionalProperties": false, + "description": "Manipulator used on a dome module", + "properties": { + "device_type": { + "const": "Manipulator", + "default": "Manipulator", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "discriminator": { + "mapping": { + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "Other": "#/$defs/_Other" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_Other" + } + ], + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "name", + "manufacturer" + ], + "title": "Manipulator", + "type": "object" + }, + "ManipulatorModule": { + "additionalProperties": false, + "description": "A dome module connected to a 3-axis manipulator", + "properties": { + "assembly_name": { + "title": "Assembly name", + "type": "string" + }, + "arc_angle": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Arc Angle (deg)" + }, + "module_angle": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Module Angle (deg)" + }, + "angle_unit": { + "$ref": "#/$defs/AngleUnit", + "default": "degrees", + "title": "Angle unit" + }, + "rotation_angle": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Rotation Angle (deg)" + }, + "coordinate_transform": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Path to coordinate transform", + "title": "Transform from local manipulator axes to rig" + }, + "calibration_date": { + "anyOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Date on which coordinate transform was last calibrated" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "primary_targeted_structure": { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ], + "title": "Targeted structure" + }, + "other_targeted_structure": { + "anyOf": [ + { + "items": { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ] + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Other targeted structure" + }, + "targeted_ccf_coordinates": { + "default": [], + "items": { + "$ref": "#/$defs/CcfCoords" + }, + "title": "Targeted CCF coordinates", + "type": "array" + }, + "manipulator_coordinates": { + "$ref": "#/$defs/Coordinates3d", + "title": "Manipulator coordinates" + }, + "anatomical_coordinates": { + "anyOf": [ + { + "$ref": "#/$defs/Coordinates3d" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Anatomical coordinates" + }, + "anatomical_reference": { + "anyOf": [ + { + "enum": [ + "Bregma", + "Lambda" + ], + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Anatomical coordinate reference" + }, + "surface_z": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Surface z" + }, + "surface_z_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Surface z unit" + }, + "dye": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Dye" + }, + "implant_hole_number": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Implant hole number" + } + }, + "required": [ + "assembly_name", + "arc_angle", + "module_angle", + "primary_targeted_structure", + "manipulator_coordinates" + ], + "title": "ManipulatorModule", + "type": "object" + }, + "MassUnit": { + "description": "Enumeration of Mass Measurements", + "enum": [ + "kilogram", + "gram", + "milligram", + "microgram", + "nanogram" + ], + "title": "MassUnit", + "type": "string" + }, + "MemoryUnit": { + "description": "Computer memory units", + "enum": [ + "Byte", + "Kilobyte", + "Megabyte", + "Gigabyte", + "Terabyte", + "Petabyte", + "Exabyte" + ], + "title": "MemoryUnit", + "type": "string" + }, + "MetadataStatus": { + "description": "Status of Metadata", + "enum": [ + "Valid", + "Invalid", + "Missing", + "Unknown" + ], + "title": "MetadataStatus", + "type": "string" + }, + "Monitor": { + "additionalProperties": false, + "description": "Description of visual display for visual stimuli", + "properties": { + "device_type": { + "const": "Monitor", + "default": "Monitor", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "discriminator": { + "mapping": { + "ASUS": "#/$defs/_Asus", + "LG": "#/$defs/_Lg", + "Other": "#/$defs/_Other" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Other" + } + ], + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "refresh_rate": { + "minimum": 60, + "title": "Refresh rate (Hz)", + "type": "integer" + }, + "width": { + "title": "Width (pixels)", + "type": "integer" + }, + "height": { + "title": "Height (pixels)", + "type": "integer" + }, + "size_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "pixel", + "title": "Size unit" + }, + "viewing_distance": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Viewing distance (cm)" + }, + "viewing_distance_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "centimeter", + "title": "Viewing distance unit" + }, + "position": { + "anyOf": [ + { + "$ref": "#/$defs/RelativePosition" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Relative position of the monitor" + }, + "contrast": { + "anyOf": [ + { + "maximum": 100, + "minimum": 0, + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Monitor's contrast setting", + "title": "Contrast" + }, + "brightness": { + "anyOf": [ + { + "maximum": 100, + "minimum": 0, + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Monitor's brightness setting", + "title": "Brightness" + } + }, + "required": [ + "name", + "manufacturer", + "refresh_rate", + "width", + "height", + "viewing_distance" + ], + "title": "Monitor", + "type": "object" + }, + "MotorizedStage": { + "additionalProperties": false, + "description": "Description of motorized stage", + "properties": { + "device_type": { + "const": "Motorized stage", + "default": "Motorized stage", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "travel": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Travel of device (mm)" + }, + "travel_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Travel unit" + }, + "firmware": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Firmware" + } + }, + "required": [ + "name", + "travel" + ], + "title": "MotorizedStage", + "type": "object" + }, + "MriScanSequence": { + "description": "MRI scan sequence", + "enum": [ + "RARE", + "Other" + ], + "title": "MriScanSequence", + "type": "string" + }, + "MyomatrixArray": { + "additionalProperties": false, + "description": "Description of a Myomatrix array", + "properties": { + "device_type": { + "const": "Myomatrix Array", + "default": "Myomatrix Array", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "array_type": { + "$ref": "#/$defs/MyomatrixArrayType", + "title": "Array type" + } + }, + "required": [ + "name", + "array_type" + ], + "title": "MyomatrixArray", + "type": "object" + }, + "MyomatrixArrayType": { + "description": "Type of Myomatrix array", + "enum": [ + "Injected", + "Sutured" + ], + "title": "MyomatrixArrayType", + "type": "string" + }, + "MyomatrixContact": { + "additionalProperties": false, + "description": "\"Description of a contact on a myomatrix thread", + "properties": { + "body_part": { + "discriminator": { + "mapping": { + "EMAPA_16748": "#/$defs/_Tail", + "EMAPA_17412": "#/$defs/_Forelimb", + "EMAPA_17458": "#/$defs/_Hindlimb", + "EMAPA_31857": "#/$defs/_Trunk", + "EMAPA_31858": "#/$defs/_Head", + "EMAPA_35587": "#/$defs/_Neck" + }, + "propertyName": "registry_identifier" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Forelimb" + }, + { + "$ref": "#/$defs/_Head" + }, + { + "$ref": "#/$defs/_Hindlimb" + }, + { + "$ref": "#/$defs/_Neck" + }, + { + "$ref": "#/$defs/_Tail" + }, + { + "$ref": "#/$defs/_Trunk" + } + ], + "title": "Body part of contact insertion" + }, + "side": { + "$ref": "#/$defs/Side", + "title": "Body side" + }, + "muscle": { + "discriminator": { + "mapping": { + "EMAPA_18177": "#/$defs/_Deltoid", + "EMAPA_18179": "#/$defs/_Pectoralis_Major", + "EMAPA_19108": "#/$defs/_Biceps_Brachii", + "EMAPA_19111": "#/$defs/_Triceps_Brachii", + "EMAPA_19319": "#/$defs/_Flexor_Digitorum_Profundus", + "EMAPA_25053": "#/$defs/_Tendon_Of_Biceps_Brachii", + "EMAPA_25054": "#/$defs/_Long_Head_Of_Biceps_Brachii", + "EMAPA_25055": "#/$defs/_Short_Head_Of_Biceps_Brachii", + "EMAPA_36163": "#/$defs/_Pars_Scapularis_Of_Deltoid", + "EMAPA_36184": "#/$defs/_Lateral_Head_Of_Triceps_Brachii", + "EMAPA_36185": "#/$defs/_Long_Head_Of_Triceps_Brachii", + "EMAPA_36186": "#/$defs/_Medial_Head_Of_Triceps_Brachii", + "EMAPA_36189": "#/$defs/_Extensor_Carpi_Radialis_Longus", + "EMAPA_36190": "#/$defs/_Extensor_Carpi_Ulnaris", + "EMAPA_36191": "#/$defs/_Extensor_Digitorum_Communis", + "EMAPA_36192": "#/$defs/_Extensor_Digitorum_Lateralis", + "EMAPA_36197": "#/$defs/_Flexor_Carpi_Radialis", + "EMAPA_36198": "#/$defs/_Flexor_Carpi_Ulnaris" + }, + "propertyName": "registry_identifier" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Deltoid" + }, + { + "$ref": "#/$defs/_Pectoralis_Major" + }, + { + "$ref": "#/$defs/_Triceps_Brachii" + }, + { + "$ref": "#/$defs/_Lateral_Head_Of_Triceps_Brachii" + }, + { + "$ref": "#/$defs/_Long_Head_Of_Triceps_Brachii" + }, + { + "$ref": "#/$defs/_Medial_Head_Of_Triceps_Brachii" + }, + { + "$ref": "#/$defs/_Biceps_Brachii" + }, + { + "$ref": "#/$defs/_Long_Head_Of_Biceps_Brachii" + }, + { + "$ref": "#/$defs/_Short_Head_Of_Biceps_Brachii" + }, + { + "$ref": "#/$defs/_Tendon_Of_Biceps_Brachii" + }, + { + "$ref": "#/$defs/_Pars_Scapularis_Of_Deltoid" + }, + { + "$ref": "#/$defs/_Extensor_Carpi_Radialis_Longus" + }, + { + "$ref": "#/$defs/_Extensor_Digitorum_Communis" + }, + { + "$ref": "#/$defs/_Extensor_Digitorum_Lateralis" + }, + { + "$ref": "#/$defs/_Extensor_Carpi_Ulnaris" + }, + { + "$ref": "#/$defs/_Flexor_Carpi_Radialis" + }, + { + "$ref": "#/$defs/_Flexor_Carpi_Ulnaris" + }, + { + "$ref": "#/$defs/_Flexor_Digitorum_Profundus" + } + ], + "title": "Muscle of contact insertion" + }, + "in_muscle": { + "title": "In muscle", + "type": "boolean" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "body_part", + "side", + "muscle", + "in_muscle" + ], + "title": "MyomatrixContact", + "type": "object" + }, + "MyomatrixInsertion": { + "additionalProperties": false, + "description": "Description of a Myomatrix array insertion for EMG", + "properties": { + "procedure_type": { + "const": "Myomatrix_Insertion", + "default": "Myomatrix_Insertion", + "title": "Procedure Type", + "type": "string" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "myomatrix_array": { + "$ref": "#/$defs/MyomatrixArray", + "title": "Myomatrix array" + }, + "threads": { + "items": { + "$ref": "#/$defs/MyomatrixThread" + }, + "title": "Array threads", + "type": "array" + } + }, + "required": [ + "protocol_id", + "myomatrix_array", + "threads" + ], + "title": "MyomatrixInsertion", + "type": "object" + }, + "MyomatrixThread": { + "additionalProperties": false, + "description": "Description of a thread of a myomatrix array", + "properties": { + "ground_electrode_location": { + "discriminator": { + "mapping": { + "EMAPA_16748": "#/$defs/_Tail", + "EMAPA_17412": "#/$defs/_Forelimb", + "EMAPA_17458": "#/$defs/_Hindlimb", + "EMAPA_31857": "#/$defs/_Trunk", + "EMAPA_31858": "#/$defs/_Head", + "EMAPA_35587": "#/$defs/_Neck" + }, + "propertyName": "registry_identifier" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Forelimb" + }, + { + "$ref": "#/$defs/_Head" + }, + { + "$ref": "#/$defs/_Hindlimb" + }, + { + "$ref": "#/$defs/_Neck" + }, + { + "$ref": "#/$defs/_Tail" + }, + { + "$ref": "#/$defs/_Trunk" + } + ], + "title": "Location of ground electrode" + }, + "contacts": { + "items": { + "$ref": "#/$defs/MyomatrixContact" + }, + "title": "Contacts", + "type": "array" + } + }, + "required": [ + "ground_electrode_location", + "contacts" + ], + "title": "MyomatrixThread", + "type": "object" + }, + "NanojectInjection": { + "additionalProperties": false, + "description": "Description of a nanoject injection procedure", + "properties": { + "injection_materials": { + "items": { + "discriminator": { + "mapping": { + "Reagent": "#/$defs/NonViralMaterial", + "Virus": "#/$defs/ViralMaterial" + }, + "propertyName": "material_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/ViralMaterial" + }, + { + "$ref": "#/$defs/NonViralMaterial" + } + ] + }, + "minItems": 1, + "title": "Injection material", + "type": "array" + }, + "recovery_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Recovery time" + }, + "recovery_time_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Recovery time unit" + }, + "injection_duration": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection duration" + }, + "injection_duration_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Injection duration unit" + }, + "instrument_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instrument ID" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "injection_coordinate_ml": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection coordinate ML (mm)" + }, + "injection_coordinate_ap": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection coordinate AP (mm)" + }, + "injection_coordinate_depth": { + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "title": "Injection coordinate depth (mm)", + "type": "array" + }, + "injection_coordinate_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Injection coordinate unit" + }, + "injection_coordinate_reference": { + "anyOf": [ + { + "$ref": "#/$defs/CoordinateReferenceLocation" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection coordinate reference" + }, + "bregma_to_lambda_distance": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Distance between bregman and lambda", + "title": "Bregma to lambda (mm)" + }, + "bregma_to_lambda_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Bregma to lambda unit" + }, + "injection_angle": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection angle (deg)" + }, + "injection_angle_unit": { + "$ref": "#/$defs/AngleUnit", + "default": "degrees", + "title": "Injection angle unit" + }, + "targeted_structure": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection targeted brain structure" + }, + "injection_hemisphere": { + "anyOf": [ + { + "$ref": "#/$defs/Side" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection hemisphere" + }, + "procedure_type": { + "const": "Nanoject injection", + "default": "Nanoject injection", + "title": "Procedure Type", + "type": "string" + }, + "injection_volume": { + "description": "Injection volume, one value per location", + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "title": "Injection volume (nL)", + "type": "array" + }, + "injection_volume_unit": { + "$ref": "#/$defs/VolumeUnit", + "default": "nanoliter", + "title": "Injection volume unit" + } + }, + "required": [ + "injection_materials", + "protocol_id", + "injection_coordinate_ml", + "injection_coordinate_ap", + "injection_coordinate_depth", + "injection_angle", + "injection_volume" + ], + "title": "NanojectInjection", + "type": "object" + }, + "NeuropixelsBasestation": { + "additionalProperties": false, + "description": "PXI-based Neuropixels DAQ", + "properties": { + "device_type": { + "const": "Neuropixels basestation", + "default": "Neuropixels basestation", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "default": { + "name": "Interuniversity Microelectronics Center", + "abbreviation": "IMEC", + "registry": { + "abbreviation": "ROR", + "name": "Research Organization Registry" + }, + "registry_identifier": "02kcbn207" + }, + "discriminator": { + "mapping": { + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + } + ], + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "data_interface": { + "const": "PXI", + "default": "PXI", + "title": "Data Interface", + "type": "string" + }, + "computer_name": { + "title": "Name of computer controlling this DAQ", + "type": "string" + }, + "channels": { + "default": [], + "items": { + "$ref": "#/$defs/DAQChannel" + }, + "title": "DAQ channels", + "type": "array" + }, + "firmware_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Firmware version" + }, + "hardware_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Hardware version" + }, + "basestation_firmware_version": { + "title": "Basestation firmware version", + "type": "string" + }, + "bsc_firmware_version": { + "title": "Basestation connect board firmware", + "type": "string" + }, + "slot": { + "title": "Slot number for this basestation", + "type": "integer" + }, + "ports": { + "items": { + "$ref": "#/$defs/ProbePort" + }, + "title": "Basestation ports", + "type": "array" + } + }, + "required": [ + "name", + "computer_name", + "basestation_firmware_version", + "bsc_firmware_version", + "slot", + "ports" + ], + "title": "NeuropixelsBasestation", + "type": "object" + }, + "NonViralMaterial": { + "additionalProperties": false, + "description": "Description of a non-viral injection material", + "properties": { + "name": { + "title": "Name", + "type": "string" + }, + "source": { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ], + "title": "Source" + }, + "rrid": { + "anyOf": [ + { + "$ref": "#/$defs/PIDName" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Research Resource ID" + }, + "lot_number": { + "title": "Lot number", + "type": "string" + }, + "expiration_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lot expiration date" + }, + "material_type": { + "const": "Reagent", + "default": "Reagent", + "title": "Injection material type", + "type": "string" + }, + "concentration": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Must provide concentration unit", + "title": "Concentration" + }, + "concentration_unit": { + "default": "mg/mL", + "title": "Concentration unit", + "type": "string" + } + }, + "required": [ + "name", + "source", + "lot_number" + ], + "title": "NonViralMaterial", + "type": "object" + }, + "Objective": { + "additionalProperties": false, + "description": "Description of an objective device", + "properties": { + "device_type": { + "const": "Objective", + "default": "Objective", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "numerical_aperture": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Numerical aperture (in air)" + }, + "magnification": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Magnification" + }, + "immersion": { + "$ref": "#/$defs/ImmersionMedium", + "title": "Immersion" + }, + "objective_type": { + "anyOf": [ + { + "$ref": "#/$defs/ObjectiveType" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Objective type" + } + }, + "required": [ + "name", + "numerical_aperture", + "magnification", + "immersion" + ], + "title": "Objective", + "type": "object" + }, + "ObjectiveType": { + "description": "Objective type for Slap2", + "enum": [ + "Remote", + "Primary" + ], + "title": "ObjectiveType", + "type": "string" + }, + "Olfactometer": { + "additionalProperties": false, + "description": "Description of an olfactometer for odor stimuli", + "properties": { + "device_type": { + "const": "Olfactometer", + "default": "Olfactometer", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "default": { + "name": "Champalimaud Foundation", + "abbreviation": "Champalimaud", + "registry": { + "abbreviation": "ROR", + "name": "Research Organization Registry" + }, + "registry_identifier": "03g001n57" + }, + "discriminator": { + "mapping": { + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "National Instruments": "#/$defs/_National_Instruments", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Other": "#/$defs/_Other", + "Second Order Effects": "#/$defs/_Second_Order_Effects" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Other" + } + ], + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "data_interface": { + "$ref": "#/$defs/DataInterface", + "default": "USB", + "title": "Data interface" + }, + "computer_name": { + "title": "Name of computer controlling this DAQ", + "type": "string" + }, + "channels": { + "items": { + "$ref": "#/$defs/OlfactometerChannel" + }, + "title": "Channels", + "type": "array" + }, + "firmware_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Firmware version" + }, + "hardware_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Hardware version" + }, + "harp_device_type": { + "default": { + "whoami": 1140, + "name": "Olfactometer" + }, + "discriminator": { + "mapping": { + "Olfactometer": "#/$defs/_Olfactometer" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Olfactometer" + } + ], + "title": "Harp Device Type" + }, + "core_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Core version" + }, + "tag_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Tag version" + }, + "is_clock_generator": { + "title": "Is Clock Generator", + "type": "boolean" + } + }, + "required": [ + "name", + "computer_name", + "channels", + "is_clock_generator" + ], + "title": "Olfactometer", + "type": "object" + }, + "OlfactometerChannel": { + "additionalProperties": false, + "description": "description of a Olfactometer channel", + "properties": { + "channel_index": { + "title": "Channel index", + "type": "integer" + }, + "channel_type": { + "$ref": "#/$defs/ChannelType", + "default": "Odor", + "title": "Channel type" + }, + "flow_capacity": { + "default": 100, + "enum": [ + 100, + 1000 + ], + "title": "Flow capacity", + "type": "integer" + }, + "flow_unit": { + "default": "mL/min", + "title": "Flow unit", + "type": "string" + } + }, + "required": [ + "channel_index" + ], + "title": "OlfactometerChannel", + "type": "object" + }, + "OlfactometerChannelConfig": { + "additionalProperties": false, + "description": "Description of olfactometer channel configurations", + "properties": { + "channel_index": { + "title": "Channel index", + "type": "integer" + }, + "odorant": { + "title": "Odorant", + "type": "string" + }, + "odorant_dilution": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Odorant dilution" + }, + "odorant_dilution_unit": { + "$ref": "#/$defs/ConcentrationUnit", + "default": "% v/v", + "title": "Dilution unit" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "channel_index", + "odorant", + "odorant_dilution" + ], + "title": "OlfactometerChannelConfig", + "type": "object" + }, + "OlfactoryStimulation": { + "additionalProperties": false, + "description": "Description of a olfactory stimulus", + "properties": { + "stimulus_type": { + "const": "Olfactory Stimulation", + "default": "Olfactory Stimulation", + "title": "Stimulus Type", + "type": "string" + }, + "stimulus_name": { + "title": "Stimulus name", + "type": "string" + }, + "channels": { + "items": { + "$ref": "#/$defs/OlfactometerChannelConfig" + }, + "title": "Channels", + "type": "array" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "stimulus_name", + "channels" + ], + "title": "OlfactoryStimulation", + "type": "object" + }, + "OligoProbe": { + "additionalProperties": false, + "description": "Description of an oligonucleotide probe", + "properties": { + "name": { + "title": "Name", + "type": "string" + }, + "source": { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ], + "title": "Source" + }, + "rrid": { + "anyOf": [ + { + "$ref": "#/$defs/PIDName" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Research Resource ID" + }, + "lot_number": { + "title": "Lot number", + "type": "string" + }, + "expiration_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lot expiration date" + }, + "species": { + "discriminator": { + "mapping": { + "Callithrix jacchus": "#/$defs/_Callithrix_Jacchus", + "Homo sapiens": "#/$defs/_Homo_Sapiens", + "Macaca mulatta": "#/$defs/_Macaca_Mulatta", + "Mus musculus": "#/$defs/_Mus_Musculus", + "Rattus norvegicus": "#/$defs/_Rattus_Norvegicus" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Callithrix_Jacchus" + }, + { + "$ref": "#/$defs/_Homo_Sapiens" + }, + { + "$ref": "#/$defs/_Macaca_Mulatta" + }, + { + "$ref": "#/$defs/_Mus_Musculus" + }, + { + "$ref": "#/$defs/_Rattus_Norvegicus" + } + ], + "title": "Species" + }, + "gene": { + "$ref": "#/$defs/PIDName", + "title": "Gene name, accession number, and registry" + }, + "probe_sequences": { + "items": { + "type": "string" + }, + "title": "Probe sequences", + "type": "array" + }, + "readout": { + "$ref": "#/$defs/Readout" + } + }, + "required": [ + "name", + "source", + "lot_number", + "species", + "gene", + "probe_sequences", + "readout" + ], + "title": "OligoProbe", + "type": "object" + }, + "OpenEphysAcquisitionBoard": { + "additionalProperties": false, + "description": "Multichannel electrophysiology DAQ", + "properties": { + "device_type": { + "const": "Open Ephys acquisition board", + "default": "Open Ephys acquisition board", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "default": { + "name": "Open Ephys Production Site", + "abbreviation": "OEPS", + "registry": { + "abbreviation": "ROR", + "name": "Research Organization Registry" + }, + "registry_identifier": "007rkz355" + }, + "discriminator": { + "mapping": { + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "National Instruments": "#/$defs/_National_Instruments", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Other": "#/$defs/_Other", + "Second Order Effects": "#/$defs/_Second_Order_Effects" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Other" + } + ], + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "data_interface": { + "const": "USB", + "default": "USB", + "title": "Data Interface", + "type": "string" + }, + "computer_name": { + "title": "Name of computer controlling this DAQ", + "type": "string" + }, + "channels": { + "default": [], + "items": { + "$ref": "#/$defs/DAQChannel" + }, + "title": "DAQ channels", + "type": "array" + }, + "firmware_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Firmware version" + }, + "hardware_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Hardware version" + }, + "ports": { + "items": { + "$ref": "#/$defs/ProbePort" + }, + "title": "Acquisition board ports", + "type": "array" + } + }, + "required": [ + "name", + "computer_name", + "ports" + ], + "title": "OpenEphysAcquisitionBoard", + "type": "object" + }, + "OphysProbe": { + "additionalProperties": false, + "description": "Description of an implanted ophys probe", + "properties": { + "ophys_probe": { + "$ref": "#/$defs/FiberProbe", + "title": "Fiber probe" + }, + "targeted_structure": { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ], + "title": "Targeted structure" + }, + "stereotactic_coordinate_ap": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Stereotactic coordinate A/P (mm)" + }, + "stereotactic_coordinate_ml": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Stereotactic coordinate M/L (mm)" + }, + "stereotactic_coordinate_dv": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Stereotactic coordinate D/V (mm)" + }, + "stereotactic_coordinate_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Sterotactic coordinate unit" + }, + "stereotactic_coordinate_reference": { + "anyOf": [ + { + "$ref": "#/$defs/CoordinateReferenceLocation" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Stereotactic coordinate reference" + }, + "bregma_to_lambda_distance": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Distance between bregman and lambda", + "title": "Bregma to lambda (mm)" + }, + "bregma_to_lambda_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Bregma to lambda unit" + }, + "angle": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Angle (deg)" + }, + "angle_unit": { + "$ref": "#/$defs/AngleUnit", + "default": "degrees", + "title": "Angle unit" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "ophys_probe", + "targeted_structure", + "stereotactic_coordinate_ap", + "stereotactic_coordinate_ml", + "stereotactic_coordinate_dv", + "angle" + ], + "title": "OphysProbe", + "type": "object" + }, + "OpticalTable": { + "additionalProperties": false, + "description": "Description of Optical Table", + "properties": { + "device_type": { + "const": "Optical table", + "default": "Optical table", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "length": { + "anyOf": [ + { + "minimum": 0.0, + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Length (inches)" + }, + "width": { + "anyOf": [ + { + "minimum": 0.0, + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Width (inches)" + }, + "table_size_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "inch", + "title": "Table size unit" + }, + "vibration_control": { + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Vibration control" + } + }, + "required": [ + "name" + ], + "title": "OpticalTable", + "type": "object" + }, + "OptoStimulation": { + "additionalProperties": false, + "description": "Description of opto stimulation parameters", + "properties": { + "stimulus_type": { + "const": "Opto Stimulation", + "default": "Opto Stimulation", + "title": "Stimulus Type", + "type": "string" + }, + "stimulus_name": { + "title": "Stimulus name", + "type": "string" + }, + "pulse_shape": { + "$ref": "#/$defs/PulseShape", + "title": "Pulse shape" + }, + "pulse_frequency": { + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "title": "Pulse frequency (Hz)", + "type": "array" + }, + "pulse_frequency_unit": { + "$ref": "#/$defs/FrequencyUnit", + "default": "hertz", + "title": "Pulse frequency unit" + }, + "number_pulse_trains": { + "items": { + "type": "integer" + }, + "title": "Number of pulse trains", + "type": "array" + }, + "pulse_width": { + "items": { + "type": "integer" + }, + "title": "Pulse width (ms)", + "type": "array" + }, + "pulse_width_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "millisecond", + "title": "Pulse width unit" + }, + "pulse_train_duration": { + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "title": "Pulse train duration (s)", + "type": "array" + }, + "pulse_train_duration_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "second", + "title": "Pulse train duration unit" + }, + "fixed_pulse_train_interval": { + "title": "Fixed pulse train interval", + "type": "boolean" + }, + "pulse_train_interval": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Time between pulse trains", + "title": "Pulse train interval (s)" + }, + "pulse_train_interval_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "second", + "title": "Pulse train interval unit" + }, + "baseline_duration": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "description": "Duration of baseline recording prior to first pulse train", + "title": "Baseline duration (s)" + }, + "baseline_duration_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "second", + "title": "Baseline duration unit" + }, + "other_parameters": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Other parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "stimulus_name", + "pulse_shape", + "pulse_frequency", + "number_pulse_trains", + "pulse_width", + "pulse_train_duration", + "fixed_pulse_train_interval", + "baseline_duration" + ], + "title": "OptoStimulation", + "type": "object" + }, + "Origin": { + "description": "Coordinate reference origin point", + "enum": [ + "Bregma", + "Lambda", + "Other (see Notes)" + ], + "title": "Origin", + "type": "string" + }, + "OtherSubjectProcedure": { + "additionalProperties": false, + "description": "Description of non-surgical procedure performed on a subject", + "properties": { + "procedure_type": { + "const": "Other Subject Procedure", + "default": "Other Subject Procedure", + "title": "Procedure Type", + "type": "string" + }, + "protocol_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "DOI for protocols.io", + "title": "Protocol ID" + }, + "description": { + "title": "Description", + "type": "string" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "description" + ], + "title": "OtherSubjectProcedure", + "type": "object" + }, + "PIDName": { + "additionalProperties": false, + "description": "Model for associate a name with a persistent identifier (PID),\nthe registry for that PID, and abbreviation for that registry", + "properties": { + "name": { + "title": "Name", + "type": "string" + }, + "abbreviation": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Abbreviation" + }, + "registry": { + "anyOf": [ + { + "$ref": "#/$defs/BaseName" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Registry" + }, + "registry_identifier": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Registry identifier" + } + }, + "required": [ + "name" + ], + "title": "PIDName", + "type": "object" + }, + "Patch": { + "additionalProperties": false, + "description": "Description of a patch cord", + "properties": { + "device_type": { + "const": "Patch", + "default": "Patch", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "core_diameter": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Core diameter (um)" + }, + "numerical_aperture": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Numerical aperture" + }, + "photobleaching_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Photobleaching date" + } + }, + "required": [ + "name", + "core_diameter", + "numerical_aperture" + ], + "title": "Patch", + "type": "object" + }, + "Perfusion": { + "additionalProperties": false, + "description": "Description of a perfusion procedure that creates a specimen", + "properties": { + "procedure_type": { + "const": "Perfusion", + "default": "Perfusion", + "title": "Procedure Type", + "type": "string" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "output_specimen_ids": { + "description": "IDs of specimens resulting from this procedure.", + "items": { + "type": "string" + }, + "title": "Specimen ID", + "type": "array", + "uniqueItems": true + } + }, + "required": [ + "protocol_id", + "output_specimen_ids" + ], + "title": "Perfusion", + "type": "object" + }, + "PhotoStimulation": { + "additionalProperties": false, + "description": "Description of a photostimulation session", + "properties": { + "stimulus_type": { + "const": "Photo Stimulation", + "default": "Photo Stimulation", + "title": "Stimulus Type", + "type": "string" + }, + "stimulus_name": { + "title": "Stimulus name", + "type": "string" + }, + "number_groups": { + "title": "Number of groups", + "type": "integer" + }, + "groups": { + "items": { + "$ref": "#/$defs/PhotoStimulationGroup" + }, + "title": "Groups", + "type": "array" + }, + "inter_trial_interval": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Inter trial interval (s)" + }, + "inter_trial_interval_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "second", + "title": "Inter trial interval unit" + }, + "other_parameters": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Other parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "stimulus_name", + "number_groups", + "groups", + "inter_trial_interval" + ], + "title": "PhotoStimulation", + "type": "object" + }, + "PhotoStimulationGroup": { + "additionalProperties": false, + "description": "Description of a photostimulation group", + "properties": { + "group_index": { + "title": "Group index", + "type": "integer" + }, + "number_of_neurons": { + "title": "Number of neurons", + "type": "integer" + }, + "stimulation_laser_power": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Stimulation laser power (mW)" + }, + "stimulation_laser_power_unit": { + "$ref": "#/$defs/PowerUnit", + "default": "milliwatt", + "title": "Stimulation laser power unit" + }, + "number_trials": { + "title": "Number of trials", + "type": "integer" + }, + "number_spirals": { + "title": "Number of spirals", + "type": "integer" + }, + "spiral_duration": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Spiral duration (s)" + }, + "spiral_duration_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "second", + "title": "Spiral duration unit" + }, + "inter_spiral_interval": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Inter trial interval (s)" + }, + "inter_spiral_interval_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "second", + "title": "Inter trial interval unit" + }, + "other_parameters": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Other parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "group_index", + "number_of_neurons", + "stimulation_laser_power", + "number_trials", + "number_spirals", + "spiral_duration", + "inter_spiral_interval" + ], + "title": "PhotoStimulationGroup", + "type": "object" + }, + "PipelineProcess": { + "additionalProperties": false, + "description": "Description of a Processing Pipeline", + "properties": { + "data_processes": { + "items": { + "$ref": "#/$defs/DataProcess" + }, + "title": "Data processing", + "type": "array" + }, + "processor_full_name": { + "description": "Name of person responsible for processing pipeline", + "title": "Processor Full Name", + "type": "string" + }, + "pipeline_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Version of the pipeline", + "title": "Pipeline version" + }, + "pipeline_url": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "URL to the pipeline code", + "title": "Pipeline URL" + }, + "note": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "data_processes", + "processor_full_name" + ], + "title": "PipelineProcess", + "type": "object" + }, + "PockelsCell": { + "additionalProperties": false, + "description": "Description of a Pockels Cell", + "properties": { + "device_type": { + "const": "Pockels cell", + "default": "Pockels cell", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "polygonal_scanner": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Must match name of Polygonal scanner", + "title": "Polygonal scanner" + }, + "on_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "On time (fraction of cycle)" + }, + "off_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Off time (fraction of cycle)" + }, + "time_setting_unit": { + "$ref": "#/$defs/UnitlessUnit", + "default": "fraction of cycle", + "title": "Time setting unit" + }, + "beam_modulation": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Beam modulation (V)" + }, + "beam_modulation_unit": { + "$ref": "#/$defs/VoltageUnit", + "default": "Volts", + "title": "Beam modulation unit" + } + }, + "required": [ + "name" + ], + "title": "PockelsCell", + "type": "object" + }, + "PolygonalScanner": { + "additionalProperties": false, + "description": "Description of a Polygonal scanner", + "properties": { + "device_type": { + "const": "Polygonal scanner", + "default": "Polygonal scanner", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "speed": { + "title": "Speed (rpm)", + "type": "integer" + }, + "speed_unit": { + "$ref": "#/$defs/SpeedUnit", + "default": "rotations per minute", + "title": "Speed unit" + }, + "number_faces": { + "title": "Number of faces", + "type": "integer" + } + }, + "required": [ + "name", + "speed", + "number_faces" + ], + "title": "PolygonalScanner", + "type": "object" + }, + "PowerUnit": { + "description": "Unit for power, set or measured", + "enum": [ + "microwatt", + "milliwatt", + "percent" + ], + "title": "PowerUnit", + "type": "string" + }, + "ProbeModel": { + "description": "Probe model name", + "enum": [ + "Michigan uLED Probe (Version 1)", + "MPI Photonic Probe (Version 1)", + "Neuropixels Opto (Demonstrator)", + "Neuropixels UHD (Fixed)", + "Neuropixels UHD (Switchable)", + "Neuropixels 1.0", + "Neuropixels 2.0 (Single Shank)", + "Neuropixels 2.0 (Multi Shank)", + "Neuropixels 2.0 (Quad Base)" + ], + "title": "ProbeModel", + "type": "string" + }, + "ProbePort": { + "additionalProperties": false, + "description": "Port for a probe connection", + "properties": { + "index": { + "title": "One-based port index", + "type": "integer" + }, + "probes": { + "items": { + "type": "string" + }, + "title": "Names of probes connected to this port", + "type": "array" + } + }, + "required": [ + "index", + "probes" + ], + "title": "ProbePort", + "type": "object" + }, + "Procedures": { + "additionalProperties": false, + "description": "Description of all procedures performed on a subject", + "properties": { + "describedBy": { + "const": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/procedures.py", + "default": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/procedures.py", + "title": "Describedby", + "type": "string" + }, + "schema_version": { + "const": "1.1.4", + "default": "1.1.4", + "title": "Schema Version", + "type": "string" + }, + "subject_id": { + "description": "Unique identifier for the subject. If this is not a Allen LAS ID, indicate this in the Notes.", + "title": "Subject ID", + "type": "string" + }, + "subject_procedures": { + "default": [], + "items": { + "discriminator": { + "mapping": { + "Other Subject Procedure": "#/$defs/OtherSubjectProcedure", + "Surgery": "#/$defs/Surgery", + "Training": "#/$defs/TrainingProtocol", + "Water restriction": "#/$defs/WaterRestriction" + }, + "propertyName": "procedure_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/Surgery" + }, + { + "$ref": "#/$defs/TrainingProtocol" + }, + { + "$ref": "#/$defs/WaterRestriction" + }, + { + "$ref": "#/$defs/OtherSubjectProcedure" + } + ] + }, + "title": "Subject Procedures", + "type": "array" + }, + "specimen_procedures": { + "default": [], + "items": { + "$ref": "#/$defs/SpecimenProcedure" + }, + "title": "Specimen Procedures", + "type": "array" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "subject_id" + ], + "title": "Procedures", + "type": "object" + }, + "ProcessName": { + "description": "Process names", + "enum": [ + "Analysis", + "Compression", + "Denoising", + "dF/F estimation", + "Ephys curation", + "Ephys postprocessing", + "Ephys preprocessing", + "Ephys visualization", + "Fiducial segmentation", + "File format conversion", + "Fluorescence event detection", + "Image atlas alignment", + "Image background subtraction", + "Image cell classification", + "Image cell quantification", + "Image cell segmentation", + "Image cross-image alignment", + "Image destriping", + "Image flat-field correction", + "Image importing", + "Image mip visualization", + "Image thresholding", + "Image tile alignment", + "Image tile fusing", + "Image tile projection", + "Image spot detection", + "Image spot spectral unmixing", + "Model evaluation", + "Model training", + "Neuropil subtraction", + "Other", + "Simulation", + "Skull stripping", + "Spatial timeseries demixing", + "Spike sorting", + "Video motion correction", + "Video plane decrosstalk", + "Video ROI classification", + "Video ROI cross session matching", + "Video ROI segmentation", + "Video ROI timeseries extraction" + ], + "title": "ProcessName", + "type": "string" + }, + "Processing": { + "additionalProperties": false, + "description": "Description of all processes run on data", + "properties": { + "describedBy": { + "const": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/processing.py", + "default": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/processing.py", + "title": "Describedby", + "type": "string" + }, + "schema_version": { + "const": "1.1.4", + "default": "1.1.4", + "title": "Schema Version", + "type": "string" + }, + "processing_pipeline": { + "$ref": "#/$defs/PipelineProcess", + "description": "Pipeline used to process data", + "title": "Processing Pipeline" + }, + "analyses": { + "default": [], + "description": "Analysis steps taken after processing", + "items": { + "$ref": "#/$defs/AnalysisProcess" + }, + "title": "Analysis Steps", + "type": "array" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "processing_pipeline" + ], + "title": "Processing", + "type": "object" + }, + "ProcessingSteps": { + "additionalProperties": false, + "description": "Description of downstream processing steps", + "properties": { + "channel_name": { + "title": "Channel name", + "type": "string" + }, + "process_name": { + "items": { + "enum": [ + "Image atlas alignment", + "Image background subtraction", + "Image cell segmentation", + "Image destriping", + "Image flat-field correction", + "Image importing", + "Image thresholding", + "Image tile alignment", + "Image tile fusing", + "Image tile projection", + "File format conversion" + ], + "type": "string" + }, + "title": "Process Name", + "type": "array" + } + }, + "required": [ + "channel_name", + "process_name" + ], + "title": "ProcessingSteps", + "type": "object" + }, + "ProtectiveMaterial": { + "description": "Name of material applied to craniotomy", + "enum": [ + "Agarose", + "Duragel", + "Kwik-Cast", + "SORTA-clear", + "Other - see notes" + ], + "title": "ProtectiveMaterial", + "type": "string" + }, + "ProtectiveMaterialReplacement": { + "additionalProperties": false, + "description": "Description of a protective material replacement procedure in preparation for ephys recording", + "properties": { + "procedure_type": { + "const": "Ground wire", + "default": "Ground wire", + "title": "Procedure Type", + "type": "string" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "protective_material": { + "$ref": "#/$defs/ProtectiveMaterial", + "description": "New material being applied", + "title": "Protective material" + }, + "ground_wire_hole": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Ground wire hole" + }, + "ground_wire_material": { + "anyOf": [ + { + "$ref": "#/$defs/GroundWireMaterial" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Ground wire material" + }, + "ground_wire_diameter": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Ground wire diameter" + }, + "ground_wire_diameter_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "inch", + "title": "Ground wire diameter unit" + }, + "well_part_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Well part number" + }, + "well_type": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Well type" + } + }, + "required": [ + "protocol_id", + "protective_material" + ], + "title": "ProtectiveMaterialReplacement", + "type": "object" + }, + "PulseShape": { + "description": "Types of Opto stim pulse shapes", + "enum": [ + "Square", + "Ramp", + "Sinusoidal" + ], + "title": "PulseShape", + "type": "string" + }, + "QCEvaluation": { + "additionalProperties": false, + "description": "Description of one evaluation stage, with one or more metrics", + "properties": { + "modality": { + "discriminator": { + "mapping": { + "EMG": "#/$defs/_Emg", + "ISI": "#/$defs/aind_data_schema_models__modalities___Isi", + "MRI": "#/$defs/aind_data_schema_models__modalities___Mri", + "SPIM": "#/$defs/_Spim", + "behavior": "#/$defs/aind_data_schema_models__modalities___Behavior", + "behavior-videos": "#/$defs/_Behavior_Videos", + "confocal": "#/$defs/aind_data_schema_models__modalities___Confocal", + "ecephys": "#/$defs/aind_data_schema_models__modalities___Ecephys", + "fMOST": "#/$defs/_Fmost", + "fib": "#/$defs/_Fib", + "icephys": "#/$defs/_Icephys", + "merfish": "#/$defs/aind_data_schema_models__modalities___Merfish", + "pophys": "#/$defs/_Pophys", + "slap": "#/$defs/_Slap" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Behavior" + }, + { + "$ref": "#/$defs/_Behavior_Videos" + }, + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Confocal" + }, + { + "$ref": "#/$defs/_Emg" + }, + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Ecephys" + }, + { + "$ref": "#/$defs/_Fib" + }, + { + "$ref": "#/$defs/_Fmost" + }, + { + "$ref": "#/$defs/_Icephys" + }, + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Isi" + }, + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Mri" + }, + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Merfish" + }, + { + "$ref": "#/$defs/_Pophys" + }, + { + "$ref": "#/$defs/_Slap" + }, + { + "$ref": "#/$defs/_Spim" + } + ], + "title": "Modality" + }, + "stage": { + "$ref": "#/$defs/Stage", + "title": "Evaluation stage" + }, + "name": { + "title": "Evaluation name", + "type": "string" + }, + "description": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Evaluation description" + }, + "metrics": { + "items": { + "$ref": "#/$defs/QCMetric" + }, + "title": "QC metrics", + "type": "array" + }, + "tags": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Tags can be used to group QCEvaluation objects into groups", + "title": "Tags" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "allow_failed_metrics": { + "default": false, + "description": "Set to true for evaluations that are not critical to the overall state of QC for a data asset, this will allow individual metrics to fail while still passing the evaluation.", + "title": "Allow metrics to fail", + "type": "boolean" + }, + "latest_status": { + "$ref": "#/$defs/Status", + "default": null, + "title": "Evaluation status" + }, + "created": { + "format": "date-time", + "title": "Evaluation creation date", + "type": "string" + } + }, + "required": [ + "modality", + "stage", + "name", + "metrics" + ], + "title": "QCEvaluation", + "type": "object" + }, + "QCMetric": { + "description": "Description of a single quality control metric", + "properties": { + "name": { + "title": "Metric name", + "type": "string" + }, + "value": { + "title": "Metric value" + }, + "status_history": { + "default": [], + "items": { + "$ref": "#/$defs/QCStatus" + }, + "title": "Metric status history", + "type": "array" + }, + "description": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Metric description" + }, + "reference": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Metric reference image URL or plot type" + }, + "evaluated_assets": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Set to None except when a metric's calculation required data coming from a different data asset.", + "title": "List of asset names that this metric depends on" + } + }, + "required": [ + "name", + "value" + ], + "title": "QCMetric", + "type": "object" + }, + "QCStatus": { + "description": "Description of a QC status, set by an evaluator", + "properties": { + "evaluator": { + "title": "Status evaluator full name", + "type": "string" + }, + "status": { + "$ref": "#/$defs/Status" + }, + "timestamp": { + "format": "date-time", + "title": "Status date", + "type": "string" + } + }, + "required": [ + "evaluator", + "status", + "timestamp" + ], + "title": "QCStatus", + "type": "object" + }, + "QualityControl": { + "additionalProperties": false, + "description": "Description of quality metrics for a data asset", + "properties": { + "describedBy": { + "const": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/quality_control.py", + "default": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/quality_control.py", + "title": "Describedby", + "type": "string" + }, + "schema_version": { + "const": "1.2.2", + "default": "1.2.2", + "title": "Schema Version", + "type": "string" + }, + "evaluations": { + "items": { + "$ref": "#/$defs/QCEvaluation" + }, + "title": "Evaluations", + "type": "array" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "evaluations" + ], + "title": "QualityControl", + "type": "object" + }, + "Readout": { + "additionalProperties": false, + "description": "Description of a readout", + "properties": { + "name": { + "title": "Name", + "type": "string" + }, + "source": { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ], + "title": "Source" + }, + "rrid": { + "anyOf": [ + { + "$ref": "#/$defs/PIDName" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Research Resource ID" + }, + "lot_number": { + "title": "Lot number", + "type": "string" + }, + "expiration_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lot expiration date" + }, + "fluorophore": { + "$ref": "#/$defs/Fluorophore" + }, + "excitation_wavelength": { + "title": "Excitation wavelength (nm)", + "type": "integer" + }, + "excitation_wavelength_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "nanometer", + "title": "Excitation wavelength unit" + }, + "stain_type": { + "$ref": "#/$defs/StainType", + "title": "Stain type" + } + }, + "required": [ + "name", + "source", + "lot_number", + "fluorophore", + "excitation_wavelength", + "stain_type" + ], + "title": "Readout", + "type": "object" + }, + "Reagent": { + "additionalProperties": false, + "description": "Description of reagent used in procedure", + "properties": { + "name": { + "title": "Name", + "type": "string" + }, + "source": { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ], + "title": "Source" + }, + "rrid": { + "anyOf": [ + { + "$ref": "#/$defs/PIDName" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Research Resource ID" + }, + "lot_number": { + "title": "Lot number", + "type": "string" + }, + "expiration_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lot expiration date" + } + }, + "required": [ + "name", + "source", + "lot_number" + ], + "title": "Reagent", + "type": "object" + }, + "RelatedData": { + "additionalProperties": false, + "description": "Description of related data asset", + "properties": { + "related_data_path": { + "title": "Related data path", + "type": "string" + }, + "relation": { + "description": "Relation of data to this asset", + "title": "Relation", + "type": "string" + } + }, + "required": [ + "related_data_path", + "relation" + ], + "title": "RelatedData", + "type": "object" + }, + "RelativePosition": { + "additionalProperties": false, + "description": "Position and rotation of a device in a rig or instrument", + "properties": { + "device_position_transformations": { + "items": { + "discriminator": { + "mapping": { + "rotation": "#/$defs/Rotation3dTransform", + "translation": "#/$defs/Translation3dTransform" + }, + "propertyName": "type" + }, + "oneOf": [ + { + "$ref": "#/$defs/Translation3dTransform" + }, + { + "$ref": "#/$defs/Rotation3dTransform" + } + ] + }, + "title": "Device position transforms", + "type": "array" + }, + "device_origin": { + "description": "Reference point on device for position information", + "title": "Device origin", + "type": "string" + }, + "device_axes": { + "items": { + "$ref": "#/$defs/Axis" + }, + "maxItems": 3, + "minItems": 3, + "title": "Device axes", + "type": "array" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "device_position_transformations", + "device_origin", + "device_axes" + ], + "title": "RelativePosition", + "type": "object" + }, + "ResourceTimestamped": { + "additionalProperties": false, + "description": "Description of resource usage at a moment in time", + "properties": { + "timestamp": { + "format": "date-time", + "title": "Timestamp", + "type": "string" + }, + "usage": { + "title": "Usage", + "type": "number" + } + }, + "required": [ + "timestamp", + "usage" + ], + "title": "ResourceTimestamped", + "type": "object" + }, + "ResourceUsage": { + "additionalProperties": false, + "description": "Description of resources used by a process", + "properties": { + "os": { + "title": "Operating system", + "type": "string" + }, + "architecture": { + "title": "Architecture", + "type": "string" + }, + "cpu": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "CPU name" + }, + "cpu_cores": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "CPU cores" + }, + "gpu": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "GPU name" + }, + "system_memory": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "System memory" + }, + "system_memory_unit": { + "anyOf": [ + { + "$ref": "#/$defs/MemoryUnit" + }, + { + "type": "null" + } + ], + "default": null, + "title": "System memory unit" + }, + "ram": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "System RAM" + }, + "ram_unit": { + "anyOf": [ + { + "$ref": "#/$defs/MemoryUnit" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Ram unit" + }, + "cpu_usage": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/ResourceTimestamped" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "CPU usage" + }, + "gpu_usage": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/ResourceTimestamped" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "GPU usage" + }, + "ram_usage": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/ResourceTimestamped" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "RAM usage" + }, + "usage_unit": { + "default": "percent", + "title": "Usage unit", + "type": "string" + } + }, + "required": [ + "os", + "architecture" + ], + "title": "ResourceUsage", + "type": "object" + }, + "RetroOrbitalInjection": { + "additionalProperties": false, + "description": "Description of a retro-orbital injection procedure", + "properties": { + "injection_materials": { + "items": { + "discriminator": { + "mapping": { + "Reagent": "#/$defs/NonViralMaterial", + "Virus": "#/$defs/ViralMaterial" + }, + "propertyName": "material_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/ViralMaterial" + }, + { + "$ref": "#/$defs/NonViralMaterial" + } + ] + }, + "minItems": 1, + "title": "Injection material", + "type": "array" + }, + "recovery_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Recovery time" + }, + "recovery_time_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Recovery time unit" + }, + "injection_duration": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection duration" + }, + "injection_duration_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Injection duration unit" + }, + "instrument_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instrument ID" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "procedure_type": { + "const": "Retro-orbital injection", + "default": "Retro-orbital injection", + "title": "Procedure Type", + "type": "string" + }, + "injection_volume": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection volume (uL)" + }, + "injection_volume_unit": { + "$ref": "#/$defs/VolumeUnit", + "default": "microliter", + "title": "Injection volume unit" + }, + "injection_eye": { + "$ref": "#/$defs/Side", + "title": "Injection eye" + } + }, + "required": [ + "injection_materials", + "protocol_id", + "injection_volume", + "injection_eye" + ], + "title": "RetroOrbitalInjection", + "type": "object" + }, + "RewardDelivery": { + "additionalProperties": false, + "description": "Description of reward delivery system", + "properties": { + "device_type": { + "const": "Reward delivery", + "default": "Reward delivery", + "title": "Device Type", + "type": "string" + }, + "stage_type": { + "anyOf": [ + { + "$ref": "#/$defs/MotorizedStage" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Motorized stage" + }, + "reward_spouts": { + "items": { + "$ref": "#/$defs/RewardSpout" + }, + "title": "Water spouts", + "type": "array" + } + }, + "required": [ + "reward_spouts" + ], + "title": "RewardDelivery", + "type": "object" + }, + "RewardDeliveryConfig": { + "additionalProperties": false, + "description": "Description of reward delivery configuration", + "properties": { + "reward_solution": { + "$ref": "#/$defs/RewardSolution", + "description": "If Other use notes", + "title": "Reward solution" + }, + "reward_spouts": { + "items": { + "$ref": "#/$defs/RewardSpoutConfig" + }, + "title": "Reward spouts", + "type": "array" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "reward_solution", + "reward_spouts" + ], + "title": "RewardDeliveryConfig", + "type": "object" + }, + "RewardSolution": { + "description": "Reward solution name", + "enum": [ + "Water", + "Other" + ], + "title": "RewardSolution", + "type": "string" + }, + "RewardSpout": { + "additionalProperties": false, + "description": "Description of a reward spout", + "properties": { + "device_type": { + "const": "Reward spout", + "default": "Reward spout", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "side": { + "$ref": "#/$defs/SpoutSide", + "description": "If Other use notes", + "title": "Spout side" + }, + "spout_diameter": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Spout diameter (mm)" + }, + "spout_diameter_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Spout diameter unit" + }, + "spout_position": { + "anyOf": [ + { + "$ref": "#/$defs/RelativePosition" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Spout stage position" + }, + "solenoid_valve": { + "$ref": "#/$defs/Device", + "title": "Solenoid valve" + }, + "lick_sensor": { + "$ref": "#/$defs/Device", + "title": "Lick sensor" + }, + "lick_sensor_type": { + "anyOf": [ + { + "$ref": "#/$defs/LickSensorType" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lick sensor type" + } + }, + "required": [ + "name", + "side", + "spout_diameter", + "solenoid_valve", + "lick_sensor" + ], + "title": "RewardSpout", + "type": "object" + }, + "RewardSpoutConfig": { + "additionalProperties": false, + "description": "Reward spout session information", + "properties": { + "side": { + "$ref": "#/$defs/SpoutSide", + "description": "Must match rig", + "title": "Spout side" + }, + "starting_position": { + "$ref": "#/$defs/RelativePosition", + "title": "Starting position" + }, + "variable_position": { + "description": "True if spout position changes during session as tracked in data", + "title": "Variable position", + "type": "boolean" + } + }, + "required": [ + "side", + "starting_position", + "variable_position" + ], + "title": "RewardSpoutConfig", + "type": "object" + }, + "Rig": { + "additionalProperties": false, + "description": "Description of a rig", + "properties": { + "describedBy": { + "const": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/rig.py", + "default": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/rig.py", + "title": "Describedby", + "type": "string" + }, + "schema_version": { + "const": "1.0.4", + "default": "1.0.4", + "title": "Schema Version", + "type": "string" + }, + "rig_id": { + "description": "Unique rig identifier, name convention: --", + "pattern": "^[a-zA-Z0-9]+_[a-zA-Z0-9-]+_\\d{8}$", + "title": "Rig ID", + "type": "string" + }, + "modification_date": { + "format": "date", + "title": "Date of modification", + "type": "string" + }, + "mouse_platform": { + "discriminator": { + "mapping": { + "Arena": "#/$defs/Arena", + "Disc": "#/$defs/Disc", + "Treadmill": "#/$defs/Treadmill", + "Tube": "#/$defs/Tube", + "Wheel": "#/$defs/Wheel" + }, + "propertyName": "device_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/Disc" + }, + { + "$ref": "#/$defs/Wheel" + }, + { + "$ref": "#/$defs/Tube" + }, + { + "$ref": "#/$defs/Treadmill" + }, + { + "$ref": "#/$defs/Arena" + } + ], + "title": "Mouse Platform" + }, + "stimulus_devices": { + "default": [], + "items": { + "discriminator": { + "mapping": { + "Monitor": "#/$defs/Monitor", + "Olfactometer": "#/$defs/Olfactometer", + "Reward delivery": "#/$defs/RewardDelivery", + "Speaker": "#/$defs/Speaker" + }, + "propertyName": "device_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/Monitor" + }, + { + "$ref": "#/$defs/Olfactometer" + }, + { + "$ref": "#/$defs/RewardDelivery" + }, + { + "$ref": "#/$defs/Speaker" + } + ] + }, + "title": "Stimulus devices", + "type": "array" + }, + "cameras": { + "default": [], + "items": { + "$ref": "#/$defs/CameraAssembly" + }, + "title": "Camera assemblies", + "type": "array" + }, + "enclosure": { + "anyOf": [ + { + "$ref": "#/$defs/Enclosure" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Enclosure" + }, + "ephys_assemblies": { + "default": [], + "items": { + "$ref": "#/$defs/EphysAssembly" + }, + "title": "Ephys probes", + "type": "array" + }, + "fiber_assemblies": { + "default": [], + "items": { + "$ref": "#/$defs/FiberAssembly" + }, + "title": "Inserted fiber optics", + "type": "array" + }, + "stick_microscopes": { + "default": [], + "items": { + "$ref": "#/$defs/CameraAssembly" + }, + "title": "Stick microscopes", + "type": "array" + }, + "laser_assemblies": { + "default": [], + "items": { + "$ref": "#/$defs/LaserAssembly" + }, + "title": "Laser modules", + "type": "array" + }, + "patch_cords": { + "default": [], + "items": { + "$ref": "#/$defs/Patch" + }, + "title": "Patch cords", + "type": "array" + }, + "light_sources": { + "default": [], + "items": { + "discriminator": { + "mapping": { + "Lamp": "#/$defs/Lamp", + "Laser": "#/$defs/Laser", + "Light emitting diode": "#/$defs/LightEmittingDiode" + }, + "propertyName": "device_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/Laser" + }, + { + "$ref": "#/$defs/LightEmittingDiode" + }, + { + "$ref": "#/$defs/Lamp" + } + ] + }, + "title": "Light sources", + "type": "array" + }, + "detectors": { + "default": [], + "items": { + "$ref": "#/$defs/Detector" + }, + "title": "Detectors", + "type": "array" + }, + "objectives": { + "default": [], + "items": { + "$ref": "#/$defs/Objective" + }, + "title": "Objectives", + "type": "array" + }, + "filters": { + "default": [], + "items": { + "$ref": "#/$defs/Filter" + }, + "title": "Filters", + "type": "array" + }, + "lenses": { + "default": [], + "items": { + "$ref": "#/$defs/Lens" + }, + "title": "Lenses", + "type": "array" + }, + "digital_micromirror_devices": { + "default": [], + "items": { + "$ref": "#/$defs/DigitalMicromirrorDevice" + }, + "title": "DMDs", + "type": "array" + }, + "polygonal_scanners": { + "default": [], + "items": { + "$ref": "#/$defs/PolygonalScanner" + }, + "title": "Polygonal scanners", + "type": "array" + }, + "pockels_cells": { + "default": [], + "items": { + "$ref": "#/$defs/PockelsCell" + }, + "title": "Pockels cells", + "type": "array" + }, + "additional_devices": { + "default": [], + "items": { + "$ref": "#/$defs/Device" + }, + "title": "Additional devices", + "type": "array" + }, + "daqs": { + "default": [], + "items": { + "discriminator": { + "mapping": { + "DAQ Device": "#/$defs/DAQDevice", + "Harp device": "#/$defs/HarpDevice", + "Neuropixels basestation": "#/$defs/NeuropixelsBasestation", + "Open Ephys acquisition board": "#/$defs/OpenEphysAcquisitionBoard" + }, + "propertyName": "device_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/HarpDevice" + }, + { + "$ref": "#/$defs/NeuropixelsBasestation" + }, + { + "$ref": "#/$defs/OpenEphysAcquisitionBoard" + }, + { + "$ref": "#/$defs/DAQDevice" + } + ] + }, + "title": "Data acquisition devices", + "type": "array" + }, + "calibrations": { + "items": { + "$ref": "#/$defs/Calibration" + }, + "title": "Full calibration of devices", + "type": "array" + }, + "ccf_coordinate_transform": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Path to file that details the CCF-to-lab coordinate transform", + "title": "CCF coordinate transform" + }, + "origin": { + "anyOf": [ + { + "$ref": "#/$defs/Origin" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Origin point for rig position transforms" + }, + "rig_axes": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/Axis" + }, + "maxItems": 3, + "minItems": 3, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Rig axes" + }, + "modalities": { + "items": { + "discriminator": { + "mapping": { + "EMG": "#/$defs/_Emg", + "ISI": "#/$defs/aind_data_schema_models__modalities___Isi", + "MRI": "#/$defs/aind_data_schema_models__modalities___Mri", + "SPIM": "#/$defs/_Spim", + "behavior": "#/$defs/aind_data_schema_models__modalities___Behavior", + "behavior-videos": "#/$defs/_Behavior_Videos", + "confocal": "#/$defs/aind_data_schema_models__modalities___Confocal", + "ecephys": "#/$defs/aind_data_schema_models__modalities___Ecephys", + "fMOST": "#/$defs/_Fmost", + "fib": "#/$defs/_Fib", + "icephys": "#/$defs/_Icephys", + "merfish": "#/$defs/aind_data_schema_models__modalities___Merfish", + "pophys": "#/$defs/_Pophys", + "slap": "#/$defs/_Slap" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Behavior" + }, + { + "$ref": "#/$defs/_Behavior_Videos" + }, + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Confocal" + }, + { + "$ref": "#/$defs/_Emg" + }, + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Ecephys" + }, + { + "$ref": "#/$defs/_Fib" + }, + { + "$ref": "#/$defs/_Fmost" + }, + { + "$ref": "#/$defs/_Icephys" + }, + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Isi" + }, + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Mri" + }, + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Merfish" + }, + { + "$ref": "#/$defs/_Pophys" + }, + { + "$ref": "#/$defs/_Slap" + }, + { + "$ref": "#/$defs/_Spim" + } + ] + }, + "title": "Modalities", + "type": "array", + "uniqueItems": true + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "rig_id", + "modification_date", + "mouse_platform", + "calibrations", + "modalities" + ], + "title": "Rig", + "type": "object" + }, + "Rotation3dTransform": { + "additionalProperties": false, + "description": "Values to be vector-added to a 3D position. Often needed to specify a device or tile's origin.", + "properties": { + "type": { + "const": "rotation", + "default": "rotation", + "title": "Type", + "type": "string" + }, + "rotation": { + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "maxItems": 9, + "minItems": 9, + "title": "3D rotation matrix values (3x3) ", + "type": "array" + } + }, + "required": [ + "rotation" + ], + "title": "Rotation3dTransform", + "type": "object" + }, + "Scale3dTransform": { + "additionalProperties": false, + "description": "Values to be vector-multiplied with a 3D position, equivalent to the diagonals of a 3x3 transform matrix.\nRepresents voxel spacing if used as the first applied coordinate transform.", + "properties": { + "type": { + "const": "scale", + "default": "scale", + "title": "Type", + "type": "string" + }, + "scale": { + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "maxItems": 3, + "minItems": 3, + "title": "3D scale parameters", + "type": "array" + } + }, + "required": [ + "scale" + ], + "title": "Scale3dTransform", + "type": "object" + }, + "ScanType": { + "description": "Type of scan", + "enum": [ + "Set Up", + "3D Scan" + ], + "title": "ScanType", + "type": "string" + }, + "Scanner": { + "additionalProperties": false, + "description": "Description of a MRI Scanner", + "properties": { + "device_type": { + "const": "Scanner", + "default": "Scanner", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "scanner_location": { + "$ref": "#/$defs/ScannerLocation", + "title": "Scanner location" + }, + "magnetic_strength": { + "$ref": "#/$defs/MagneticStrength", + "title": "Magnetic strength (T)" + }, + "magnetic_strength_unit": { + "default": "T", + "title": "Magnetic strength unit", + "type": "string" + } + }, + "required": [ + "name", + "scanner_location", + "magnetic_strength" + ], + "title": "Scanner", + "type": "object" + }, + "ScannerLocation": { + "description": "location of scanner", + "enum": [ + "Fred Hutch", + "UW SLU" + ], + "title": "ScannerLocation", + "type": "string" + }, + "ScanningStage": { + "additionalProperties": false, + "description": "Description of a scanning motorized stages", + "properties": { + "device_type": { + "const": "Motorized stage", + "default": "Motorized stage", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "travel": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Travel of device (mm)" + }, + "travel_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Travel unit" + }, + "firmware": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Firmware" + }, + "stage_axis_direction": { + "$ref": "#/$defs/StageAxisDirection", + "title": "Direction of stage axis" + }, + "stage_axis_name": { + "$ref": "#/$defs/StageAxisName", + "title": "Name of stage axis" + } + }, + "required": [ + "name", + "travel", + "stage_axis_direction", + "stage_axis_name" + ], + "title": "ScanningStage", + "type": "object" + }, + "SectionOrientation": { + "description": "Orientation of sectioning", + "enum": [ + "Coronal", + "Sagittal", + "Transverse" + ], + "title": "SectionOrientation", + "type": "string" + }, + "SectionStrategy": { + "description": "Section strategy", + "enum": [ + "Whole Brain", + "Hemi Brain" + ], + "title": "SectionStrategy", + "type": "string" + }, + "Sectioning": { + "additionalProperties": false, + "description": "Description of a sectioning procedure", + "properties": { + "procedure_type": { + "const": "Sectioning", + "default": "Sectioning", + "title": "Procedure Type", + "type": "string" + }, + "number_of_slices": { + "title": "Number of slices", + "type": "integer" + }, + "output_specimen_ids": { + "items": { + "type": "string" + }, + "minItems": 1, + "title": "Output specimen ids", + "type": "array" + }, + "section_orientation": { + "$ref": "#/$defs/SectionOrientation", + "title": "Sectioning orientation" + }, + "section_thickness": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Section thickness" + }, + "section_thickness_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Section thickness unit" + }, + "section_distance_from_reference": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Section distance from reference" + }, + "section_distance_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Distance unit" + }, + "reference_location": { + "$ref": "#/$defs/CoordinateReferenceLocation", + "title": "Reference location for distance measurement" + }, + "section_strategy": { + "$ref": "#/$defs/SectionStrategy", + "title": "Slice strategy" + }, + "targeted_structure": { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ], + "title": "Targeted structure" + } + }, + "required": [ + "number_of_slices", + "output_specimen_ids", + "section_orientation", + "section_thickness", + "section_distance_from_reference", + "reference_location", + "section_strategy", + "targeted_structure" + ], + "title": "Sectioning", + "type": "object" + }, + "Session": { + "additionalProperties": false, + "description": "Description of a physiology and/or behavior session", + "properties": { + "describedBy": { + "const": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/session.py", + "default": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/session.py", + "title": "Describedby", + "type": "string" + }, + "schema_version": { + "const": "1.0.4", + "default": "1.0.4", + "title": "Schema Version", + "type": "string" + }, + "protocol_id": { + "default": [], + "description": "DOI for protocols.io", + "items": { + "type": "string" + }, + "title": "Protocol ID", + "type": "array" + }, + "experimenter_full_name": { + "description": "First and last name of the experimenter(s).", + "items": { + "type": "string" + }, + "title": "Experimenter(s) full name", + "type": "array" + }, + "session_start_time": { + "format": "date-time", + "title": "Session start time", + "type": "string" + }, + "session_end_time": { + "anyOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Session end time" + }, + "session_type": { + "title": "Session type", + "type": "string" + }, + "iacuc_protocol": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "IACUC protocol" + }, + "rig_id": { + "title": "Rig ID", + "type": "string" + }, + "calibrations": { + "default": [], + "description": "Calibrations of rig devices prior to session", + "items": { + "$ref": "#/$defs/Calibration" + }, + "title": "Calibrations", + "type": "array" + }, + "maintenance": { + "default": [], + "description": "Maintenance of rig devices prior to session", + "items": { + "$ref": "#/$defs/Maintenance" + }, + "title": "Maintenance", + "type": "array" + }, + "subject_id": { + "title": "Subject ID", + "type": "string" + }, + "animal_weight_prior": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Animal weight before procedure", + "title": "Animal weight (g)" + }, + "animal_weight_post": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Animal weight after procedure", + "title": "Animal weight (g)" + }, + "weight_unit": { + "$ref": "#/$defs/MassUnit", + "default": "gram", + "title": "Weight unit" + }, + "anaesthesia": { + "anyOf": [ + { + "$ref": "#/$defs/Anaesthetic" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Anaesthesia" + }, + "data_streams": { + "description": "A data stream is a collection of devices that are recorded simultaneously. Each session can include multiple streams (e.g., if the manipulators are moved to a new location)", + "items": { + "$ref": "#/$defs/Stream" + }, + "title": "Data streams", + "type": "array" + }, + "stimulus_epochs": { + "default": [], + "items": { + "$ref": "#/$defs/StimulusEpoch" + }, + "title": "Stimulus", + "type": "array" + }, + "mouse_platform_name": { + "title": "Mouse platform", + "type": "string" + }, + "active_mouse_platform": { + "description": "Is the mouse platform being actively controlled", + "title": "Active mouse platform", + "type": "boolean" + }, + "headframe_registration": { + "anyOf": [ + { + "$ref": "#/$defs/Affine3dTransform" + }, + { + "type": "null" + } + ], + "default": null, + "description": "MRI transform matrix for headframe", + "title": "Headframe registration" + }, + "reward_delivery": { + "anyOf": [ + { + "$ref": "#/$defs/RewardDeliveryConfig" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Reward delivery" + }, + "reward_consumed_total": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Total reward consumed (mL)" + }, + "reward_consumed_unit": { + "$ref": "#/$defs/VolumeUnit", + "default": "milliliter", + "title": "Reward consumed unit" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "experimenter_full_name", + "session_start_time", + "session_type", + "rig_id", + "subject_id", + "data_streams", + "mouse_platform_name", + "active_mouse_platform" + ], + "title": "Session", + "type": "object" + }, + "Sex": { + "description": "Subject sex name", + "enum": [ + "Female", + "Male" + ], + "title": "Sex", + "type": "string" + }, + "Side": { + "description": "Side of animal", + "enum": [ + "Left", + "Right", + "Midline" + ], + "title": "Side", + "type": "string" + }, + "Size3d": { + "additionalProperties": false, + "description": "3D size of an object", + "properties": { + "width": { + "title": "Width", + "type": "integer" + }, + "length": { + "title": "Length", + "type": "integer" + }, + "height": { + "title": "Height", + "type": "integer" + }, + "unit": { + "$ref": "#/$defs/SizeUnit", + "default": "meter", + "title": "Size unit" + } + }, + "required": [ + "width", + "length", + "height" + ], + "title": "Size3d", + "type": "object" + }, + "SizeUnit": { + "description": "Enumeration of Length Measurements", + "enum": [ + "meter", + "centimeter", + "millimeter", + "micrometer", + "nanometer", + "inch", + "pixel" + ], + "title": "SizeUnit", + "type": "string" + }, + "SlapFieldOfView": { + "additionalProperties": false, + "description": "Description of a Slap2 scan", + "properties": { + "index": { + "title": "Index", + "type": "integer" + }, + "imaging_depth": { + "title": "Imaging depth (um)", + "type": "integer" + }, + "imaging_depth_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Imaging depth unit" + }, + "targeted_structure": { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ], + "title": "Targeted structure" + }, + "fov_coordinate_ml": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "FOV coordinate ML" + }, + "fov_coordinate_ap": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "FOV coordinate AP" + }, + "fov_coordinate_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "FOV coordinate unit" + }, + "fov_reference": { + "description": "Reference for ML/AP coordinates", + "title": "FOV reference", + "type": "string" + }, + "fov_width": { + "title": "FOV width (pixels)", + "type": "integer" + }, + "fov_height": { + "title": "FOV height (pixels)", + "type": "integer" + }, + "fov_size_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "pixel", + "title": "FOV size unit" + }, + "magnification": { + "title": "Magnification", + "type": "string" + }, + "fov_scale_factor": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "FOV scale factor (um/pixel)" + }, + "fov_scale_factor_unit": { + "default": "um/pixel", + "title": "FOV scale factor unit", + "type": "string" + }, + "frame_rate": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Frame rate (Hz)" + }, + "frame_rate_unit": { + "$ref": "#/$defs/FrequencyUnit", + "default": "hertz", + "title": "Frame rate unit" + }, + "coupled_fov_index": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Coupled planes for multiscope", + "title": "Coupled FOV" + }, + "power": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For coupled planes, this power is shared by both planes", + "title": "Power" + }, + "power_unit": { + "$ref": "#/$defs/PowerUnit", + "default": "percent", + "title": "Power unit" + }, + "power_ratio": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Power ratio for coupled planes" + }, + "scanfield_z": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Z stage position of the fastz actuator for a given targeted depth" + }, + "scanfield_z_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Z stage position unit" + }, + "scanimage_roi_index": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "ScanImage ROI index" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "session_type": { + "$ref": "#/$defs/SlapSessionType", + "title": "Session type" + }, + "dmd_dilation_x": { + "title": "DMD Dilation X (pixels)", + "type": "integer" + }, + "dmd_dilation_y": { + "title": "DMD Dilation Y (pixels)", + "type": "integer" + }, + "dilation_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "pixel", + "title": "Dilation unit" + }, + "target_neuron": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Target neuron" + }, + "target_branch": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Target branch" + }, + "path_to_array_of_frame_rates": { + "title": "Array of frame rates", + "type": "string" + } + }, + "required": [ + "index", + "imaging_depth", + "targeted_structure", + "fov_coordinate_ml", + "fov_coordinate_ap", + "fov_reference", + "fov_width", + "fov_height", + "magnification", + "fov_scale_factor", + "session_type", + "dmd_dilation_x", + "dmd_dilation_y", + "path_to_array_of_frame_rates" + ], + "title": "SlapFieldOfView", + "type": "object" + }, + "SlapSessionType": { + "description": "Type of slap session", + "enum": [ + "Parent", + "Branch" + ], + "title": "SlapSessionType", + "type": "string" + }, + "Software": { + "additionalProperties": false, + "description": "Description of generic software", + "properties": { + "name": { + "title": "Software name", + "type": "string" + }, + "version": { + "title": "Software version", + "type": "string" + }, + "url": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "URL to commit being used" + }, + "parameters": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Software parameters" + } + }, + "required": [ + "name", + "version" + ], + "title": "Software", + "type": "object" + }, + "SoundIntensityUnit": { + "description": "Sound intensity units", + "enum": [ + "decibels" + ], + "title": "SoundIntensityUnit", + "type": "string" + }, + "Speaker": { + "additionalProperties": false, + "description": "Description of a speaker for auditory stimuli", + "properties": { + "device_type": { + "const": "Speaker", + "default": "Speaker", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "discriminator": { + "mapping": { + "ISL Products International": "#/$defs/_Isl_Products_International", + "Other": "#/$defs/_Other", + "Tymphany": "#/$defs/_Tymphany" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Other" + } + ], + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "position": { + "anyOf": [ + { + "$ref": "#/$defs/RelativePosition" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Relative position of the speaker" + } + }, + "required": [ + "name", + "manufacturer" + ], + "title": "Speaker", + "type": "object" + }, + "SpeakerConfig": { + "additionalProperties": false, + "description": "Description of auditory speaker configuration", + "properties": { + "name": { + "description": "Must match rig json", + "title": "Name", + "type": "string" + }, + "volume": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Volume (dB)" + }, + "volume_unit": { + "$ref": "#/$defs/SoundIntensityUnit", + "default": "decibels", + "title": "Volume unit" + } + }, + "required": [ + "name" + ], + "title": "SpeakerConfig", + "type": "object" + }, + "SpecimenProcedure": { + "additionalProperties": false, + "description": "Description of surgical or other procedure performed on a specimen", + "properties": { + "procedure_type": { + "$ref": "#/$defs/SpecimenProcedureType", + "title": "Procedure type" + }, + "procedure_name": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Name to clarify specific procedure used as needed", + "title": "Procedure name" + }, + "specimen_id": { + "title": "Specimen ID", + "type": "string" + }, + "start_date": { + "format": "date", + "title": "Start date", + "type": "string" + }, + "end_date": { + "format": "date", + "title": "End date", + "type": "string" + }, + "experimenter_full_name": { + "description": "First and last name of the experimenter.", + "title": "Experimenter full name", + "type": "string" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "items": { + "type": "string" + }, + "title": "Protocol ID", + "type": "array" + }, + "reagents": { + "default": [], + "items": { + "$ref": "#/$defs/Reagent" + }, + "title": "Reagents", + "type": "array" + }, + "hcr_series": { + "anyOf": [ + { + "$ref": "#/$defs/HCRSeries" + }, + { + "type": "null" + } + ], + "default": null, + "title": "HCR Series" + }, + "antibodies": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/Antibody" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Immunolabeling" + }, + "sectioning": { + "anyOf": [ + { + "$ref": "#/$defs/Sectioning" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Sectioning" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "procedure_type", + "specimen_id", + "start_date", + "end_date", + "experimenter_full_name", + "protocol_id" + ], + "title": "SpecimenProcedure", + "type": "object" + }, + "SpecimenProcedureType": { + "description": "Specimen procedures", + "enum": [ + "Clearing", + "Delipidation", + "Embedding", + "Expansion", + "Fixation", + "Fixation and permeabilization", + "Gelation", + "Hybridication and amplification", + "Hybridization Chain Reaction", + "Immunolabeling", + "Mounting", + "Other", + "Refractive index matching", + "Sectioning", + "Soak", + "Storage", + "Stripping", + "Tamoxifen induction" + ], + "title": "SpecimenProcedureType", + "type": "string" + }, + "SpeedUnit": { + "description": "Enumeration of Speed Measurements", + "enum": [ + "rotations per minute" + ], + "title": "SpeedUnit", + "type": "string" + }, + "SpoutSide": { + "description": "Spout sides", + "enum": [ + "Left", + "Right", + "Center", + "Other" + ], + "title": "SpoutSide", + "type": "string" + }, + "Stack": { + "additionalProperties": false, + "description": "Description of a two photon stack", + "properties": { + "channels": { + "items": { + "$ref": "#/$defs/StackChannel" + }, + "title": "Channels", + "type": "array" + }, + "number_of_planes": { + "title": "Number of planes", + "type": "integer" + }, + "step_size": { + "title": "Step size (um)", + "type": "number" + }, + "step_size_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Step size unit" + }, + "number_of_plane_repeats_per_volume": { + "title": "Number of repeats per volume", + "type": "integer" + }, + "number_of_volume_repeats": { + "title": "Number of volume repeats", + "type": "integer" + }, + "fov_coordinate_ml": { + "title": "FOV coordinate ML", + "type": "number" + }, + "fov_coordinate_ap": { + "title": "FOV coordinate AP", + "type": "number" + }, + "fov_coordinate_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "FOV coordinate unit" + }, + "fov_reference": { + "description": "Reference for ML/AP coordinates", + "title": "FOV reference", + "type": "string" + }, + "fov_width": { + "title": "FOV width (pixels)", + "type": "integer" + }, + "fov_height": { + "title": "FOV height (pixels)", + "type": "integer" + }, + "fov_size_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "pixel", + "title": "FOV size unit" + }, + "magnification": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Magnification" + }, + "fov_scale_factor": { + "title": "FOV scale factor (um/pixel)", + "type": "number" + }, + "fov_scale_factor_unit": { + "default": "um/pixel", + "title": "FOV scale factor unit", + "type": "string" + }, + "frame_rate": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Frame rate (Hz)" + }, + "frame_rate_unit": { + "$ref": "#/$defs/FrequencyUnit", + "default": "hertz", + "title": "Frame rate unit" + }, + "targeted_structure": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Targeted structure" + } + }, + "required": [ + "channels", + "number_of_planes", + "step_size", + "number_of_plane_repeats_per_volume", + "number_of_volume_repeats", + "fov_coordinate_ml", + "fov_coordinate_ap", + "fov_reference", + "fov_width", + "fov_height", + "fov_scale_factor", + "frame_rate" + ], + "title": "Stack", + "type": "object" + }, + "StackChannel": { + "additionalProperties": false, + "description": "Description of a Channel used in a Stack", + "properties": { + "channel_name": { + "title": "Channel", + "type": "string" + }, + "light_source_name": { + "description": "Must match device name", + "title": "Light source name", + "type": "string" + }, + "filter_names": { + "description": "Must match device names", + "items": { + "type": "string" + }, + "title": "Filter names", + "type": "array" + }, + "detector_name": { + "description": "Must match device name", + "title": "Detector name", + "type": "string" + }, + "additional_device_names": { + "default": [], + "items": { + "type": "string" + }, + "title": "Additional device names", + "type": "array" + }, + "excitation_wavelength": { + "maximum": 1000, + "minimum": 300, + "title": "Wavelength", + "type": "integer" + }, + "excitation_wavelength_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "nanometer", + "title": "Laser wavelength unit" + }, + "excitation_power": { + "maximum": 2000.0, + "title": "Laser power", + "type": "number" + }, + "excitation_power_unit": { + "$ref": "#/$defs/PowerUnit", + "default": "milliwatt", + "title": "Laser power unit" + }, + "filter_wheel_index": { + "title": "Filter wheel index", + "type": "integer" + }, + "dilation": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Dilation (pixels)" + }, + "dilation_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "pixel", + "title": "Dilation unit" + }, + "description": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Description" + }, + "start_depth": { + "title": "Starting depth (um)", + "type": "integer" + }, + "end_depth": { + "title": "Ending depth (um)", + "type": "integer" + }, + "depth_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Depth unit" + } + }, + "required": [ + "channel_name", + "light_source_name", + "filter_names", + "detector_name", + "excitation_wavelength", + "excitation_power", + "filter_wheel_index", + "start_depth", + "end_depth" + ], + "title": "StackChannel", + "type": "object" + }, + "Stage": { + "description": "QCEvaluation Stage\n\nWhen during data processing the QC metrics were derived.", + "enum": [ + "Raw data", + "Processing", + "Analysis", + "Multi-asset" + ], + "title": "Stage", + "type": "string" + }, + "StageAxisDirection": { + "description": "Direction of motion for motorized stage", + "enum": [ + "Detection axis", + "Illumination axis", + "Perpendicular axis" + ], + "title": "StageAxisDirection", + "type": "string" + }, + "StageAxisName": { + "description": "Axis names for motorized stages as configured by hardware", + "enum": [ + "X", + "Y", + "Z" + ], + "title": "StageAxisName", + "type": "string" + }, + "Stain": { + "additionalProperties": false, + "description": "Description of a non-oligo probe stain", + "properties": { + "name": { + "title": "Name", + "type": "string" + }, + "source": { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ], + "title": "Source" + }, + "rrid": { + "anyOf": [ + { + "$ref": "#/$defs/PIDName" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Research Resource ID" + }, + "lot_number": { + "title": "Lot number", + "type": "string" + }, + "expiration_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lot expiration date" + }, + "stain_type": { + "$ref": "#/$defs/StainType", + "title": "Stain type" + }, + "concentration": { + "$ref": "#/$defs/concentration", + "title": "Concentration (uM)" + } + }, + "required": [ + "name", + "source", + "lot_number", + "stain_type", + "concentration" + ], + "title": "Stain", + "type": "object" + }, + "StainType": { + "description": "Stain types for probes describing what is being labeled", + "enum": [ + "RNA", + "Nuclear", + "Fill" + ], + "title": "StainType", + "type": "string" + }, + "Status": { + "description": "QC Status", + "enum": [ + "Fail", + "Pass", + "Pending" + ], + "title": "Status", + "type": "string" + }, + "StimulusEpoch": { + "additionalProperties": false, + "description": "Description of stimulus used during session", + "properties": { + "stimulus_start_time": { + "description": "When a specific stimulus begins. This might be the same as the session start time.", + "format": "date-time", + "title": "Stimulus start time", + "type": "string" + }, + "stimulus_end_time": { + "description": "When a specific stimulus ends. This might be the same as the session end time.", + "format": "date-time", + "title": "Stimulus end time", + "type": "string" + }, + "stimulus_name": { + "title": "Stimulus name", + "type": "string" + }, + "session_number": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Session number" + }, + "software": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/Software" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": [], + "description": "The software used to control the behavior/stimulus (e.g. Bonsai)", + "title": "Software" + }, + "script": { + "anyOf": [ + { + "$ref": "#/$defs/Software" + }, + { + "type": "null" + } + ], + "default": null, + "description": "provide URL to the commit of the script and the parameters used", + "title": "Script" + }, + "stimulus_modalities": { + "items": { + "$ref": "#/$defs/StimulusModality" + }, + "title": "Stimulus modalities", + "type": "array" + }, + "stimulus_parameters": { + "anyOf": [ + { + "items": { + "discriminator": { + "mapping": { + "Auditory Stimulation": "#/$defs/AuditoryStimulation", + "Olfactory Stimulation": "#/$defs/OlfactoryStimulation", + "Opto Stimulation": "#/$defs/OptoStimulation", + "Photo Stimulation": "#/$defs/PhotoStimulation", + "Visual Stimulation": "#/$defs/VisualStimulation" + }, + "propertyName": "stimulus_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/AuditoryStimulation" + }, + { + "$ref": "#/$defs/OptoStimulation" + }, + { + "$ref": "#/$defs/OlfactoryStimulation" + }, + { + "$ref": "#/$defs/PhotoStimulation" + }, + { + "$ref": "#/$defs/VisualStimulation" + } + ] + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Stimulus parameters" + }, + "stimulus_device_names": { + "default": [], + "items": { + "type": "string" + }, + "title": "Stimulus devices", + "type": "array" + }, + "speaker_config": { + "anyOf": [ + { + "$ref": "#/$defs/SpeakerConfig" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Speaker Config" + }, + "light_source_config": { + "anyOf": [ + { + "items": { + "discriminator": { + "mapping": { + "Laser": "#/$defs/LaserConfig", + "Light emitting diode": "#/$defs/LightEmittingDiodeConfig" + }, + "propertyName": "device_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/LightEmittingDiodeConfig" + }, + { + "$ref": "#/$defs/LaserConfig" + } + ] + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": [], + "description": "Light sources for stimulation", + "title": "Light source config" + }, + "output_parameters": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Performance metrics" + }, + "reward_consumed_during_epoch": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Reward consumed during training (uL)" + }, + "reward_consumed_unit": { + "$ref": "#/$defs/VolumeUnit", + "default": "microliter", + "title": "Reward consumed unit" + }, + "trials_total": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Total trials" + }, + "trials_finished": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Finished trials" + }, + "trials_rewarded": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Rewarded trials" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "stimulus_start_time", + "stimulus_end_time", + "stimulus_name", + "stimulus_modalities" + ], + "title": "StimulusEpoch", + "type": "object" + }, + "StimulusModality": { + "description": "Types of stimulus modalities", + "enum": [ + "Auditory", + "Olfactory", + "Optogenetics", + "None", + "Virtual reality", + "Visual", + "Wheel friction" + ], + "title": "StimulusModality", + "type": "string" + }, + "Stream": { + "additionalProperties": false, + "description": "Data streams with a start and stop time", + "properties": { + "stream_start_time": { + "format": "date-time", + "title": "Stream start time", + "type": "string" + }, + "stream_end_time": { + "format": "date-time", + "title": "Stream stop time", + "type": "string" + }, + "daq_names": { + "default": [], + "items": { + "type": "string" + }, + "title": "DAQ devices", + "type": "array" + }, + "camera_names": { + "default": [], + "items": { + "type": "string" + }, + "title": "Cameras", + "type": "array" + }, + "light_sources": { + "default": [], + "items": { + "discriminator": { + "mapping": { + "Laser": "#/$defs/LaserConfig", + "Light emitting diode": "#/$defs/LightEmittingDiodeConfig" + }, + "propertyName": "device_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/LightEmittingDiodeConfig" + }, + { + "$ref": "#/$defs/LaserConfig" + } + ] + }, + "title": "Light Sources", + "type": "array" + }, + "ephys_modules": { + "default": [], + "items": { + "$ref": "#/$defs/ManipulatorModule" + }, + "title": "Ephys modules", + "type": "array" + }, + "stick_microscopes": { + "default": [], + "description": "Must match stick microscope assemblies in rig file", + "items": { + "$ref": "#/$defs/DomeModule" + }, + "title": "Stick microscopes", + "type": "array" + }, + "manipulator_modules": { + "default": [], + "items": { + "$ref": "#/$defs/ManipulatorModule" + }, + "title": "Manipulator modules", + "type": "array" + }, + "detectors": { + "default": [], + "items": { + "$ref": "#/$defs/DetectorConfig" + }, + "title": "Detectors", + "type": "array" + }, + "fiber_connections": { + "default": [], + "items": { + "$ref": "#/$defs/FiberConnectionConfig" + }, + "title": "Implanted fiber photometry devices", + "type": "array" + }, + "fiber_modules": { + "default": [], + "items": { + "$ref": "#/$defs/FiberModule" + }, + "title": "Inserted fiber modules", + "type": "array" + }, + "ophys_fovs": { + "default": [], + "items": { + "$ref": "#/$defs/FieldOfView" + }, + "title": "Fields of view", + "type": "array" + }, + "slap_fovs": { + "default": [], + "items": { + "$ref": "#/$defs/SlapFieldOfView" + }, + "title": "Slap2 fields of view", + "type": "array" + }, + "stack_parameters": { + "anyOf": [ + { + "$ref": "#/$defs/Stack" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Stack parameters" + }, + "mri_scans": { + "default": [], + "items": { + "$ref": "#/$defs/MRIScan" + }, + "title": "MRI scans", + "type": "array" + }, + "stream_modalities": { + "items": { + "discriminator": { + "mapping": { + "EMG": "#/$defs/_Emg", + "ISI": "#/$defs/aind_data_schema_models__modalities___Isi", + "MRI": "#/$defs/aind_data_schema_models__modalities___Mri", + "SPIM": "#/$defs/_Spim", + "behavior": "#/$defs/aind_data_schema_models__modalities___Behavior", + "behavior-videos": "#/$defs/_Behavior_Videos", + "confocal": "#/$defs/aind_data_schema_models__modalities___Confocal", + "ecephys": "#/$defs/aind_data_schema_models__modalities___Ecephys", + "fMOST": "#/$defs/_Fmost", + "fib": "#/$defs/_Fib", + "icephys": "#/$defs/_Icephys", + "merfish": "#/$defs/aind_data_schema_models__modalities___Merfish", + "pophys": "#/$defs/_Pophys", + "slap": "#/$defs/_Slap" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Behavior" + }, + { + "$ref": "#/$defs/_Behavior_Videos" + }, + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Confocal" + }, + { + "$ref": "#/$defs/_Emg" + }, + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Ecephys" + }, + { + "$ref": "#/$defs/_Fib" + }, + { + "$ref": "#/$defs/_Fmost" + }, + { + "$ref": "#/$defs/_Icephys" + }, + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Isi" + }, + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Mri" + }, + { + "$ref": "#/$defs/aind_data_schema_models__modalities___Merfish" + }, + { + "$ref": "#/$defs/_Pophys" + }, + { + "$ref": "#/$defs/_Slap" + }, + { + "$ref": "#/$defs/_Spim" + } + ] + }, + "title": "Modalities", + "type": "array" + }, + "software": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/Software" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": [], + "title": "Data stream software information" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "stream_start_time", + "stream_end_time", + "stream_modalities" + ], + "title": "Stream", + "type": "object" + }, + "Subject": { + "additionalProperties": false, + "description": "Description of a subject of data collection", + "properties": { + "describedBy": { + "const": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/subject.py", + "default": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/subject.py", + "title": "Describedby", + "type": "string" + }, + "schema_version": { + "const": "1.0.3", + "default": "1.0.3", + "title": "Schema Version", + "type": "string" + }, + "subject_id": { + "description": "Unique identifier for the subject. If this is not a Allen LAS ID, indicate this in the Notes.", + "title": "Subject ID", + "type": "string" + }, + "sex": { + "$ref": "#/$defs/Sex" + }, + "date_of_birth": { + "format": "date", + "title": "Date of birth", + "type": "string" + }, + "genotype": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Genotype of the animal providing both alleles", + "title": "Genotype" + }, + "species": { + "discriminator": { + "mapping": { + "Callithrix jacchus": "#/$defs/_Callithrix_Jacchus", + "Homo sapiens": "#/$defs/_Homo_Sapiens", + "Macaca mulatta": "#/$defs/_Macaca_Mulatta", + "Mus musculus": "#/$defs/_Mus_Musculus", + "Rattus norvegicus": "#/$defs/_Rattus_Norvegicus" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Callithrix_Jacchus" + }, + { + "$ref": "#/$defs/_Homo_Sapiens" + }, + { + "$ref": "#/$defs/_Macaca_Mulatta" + }, + { + "$ref": "#/$defs/_Mus_Musculus" + }, + { + "$ref": "#/$defs/_Rattus_Norvegicus" + } + ], + "title": "Species" + }, + "alleles": { + "default": [], + "description": "Allele names and persistent IDs", + "items": { + "$ref": "#/$defs/PIDName" + }, + "title": "Alleles", + "type": "array" + }, + "background_strain": { + "anyOf": [ + { + "$ref": "#/$defs/BackgroundStrain" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Background strain" + }, + "breeding_info": { + "anyOf": [ + { + "$ref": "#/$defs/BreedingInfo" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Breeding Info" + }, + "source": { + "description": "Where the subject was acquired from. If bred in-house, use Allen Institute.", + "discriminator": { + "mapping": { + "Allen Institute": "#/$defs/_Allen_Institute", + "Columbia University": "#/$defs/_Columbia_University", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "New York University": "#/$defs/_New_York_University", + "Other": "#/$defs/_Other" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Other" + } + ], + "title": "Source" + }, + "rrid": { + "anyOf": [ + { + "$ref": "#/$defs/PIDName" + }, + { + "type": "null" + } + ], + "default": null, + "description": "RRID of mouse if acquired from supplier", + "title": "RRID" + }, + "restrictions": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Any restrictions on use or publishing based on subject source", + "title": "Restrictions" + }, + "wellness_reports": { + "default": [], + "items": { + "$ref": "#/$defs/WellnessReport" + }, + "title": "Wellness Report", + "type": "array" + }, + "housing": { + "anyOf": [ + { + "$ref": "#/$defs/Housing" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Housing" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "subject_id", + "sex", + "date_of_birth", + "species", + "source" + ], + "title": "Subject", + "type": "object" + }, + "SubjectPosition": { + "description": "Subject position", + "enum": [ + "Prone", + "Supine" + ], + "title": "SubjectPosition", + "type": "string" + }, + "Surgery": { + "additionalProperties": false, + "description": "Description of subject procedures performed at one time", + "properties": { + "procedure_type": { + "const": "Surgery", + "default": "Surgery", + "title": "Procedure Type", + "type": "string" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "start_date": { + "format": "date", + "title": "Start date", + "type": "string" + }, + "experimenter_full_name": { + "description": "First and last name of the experimenter.", + "title": "Experimenter full name", + "type": "string" + }, + "iacuc_protocol": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "IACUC protocol" + }, + "animal_weight_prior": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Animal weight before procedure", + "title": "Animal weight (g)" + }, + "animal_weight_post": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Animal weight after procedure", + "title": "Animal weight (g)" + }, + "weight_unit": { + "$ref": "#/$defs/MassUnit", + "default": "gram", + "title": "Weight unit" + }, + "anaesthesia": { + "anyOf": [ + { + "$ref": "#/$defs/Anaesthetic" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Anaesthesia" + }, + "workstation_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Workstation ID" + }, + "procedures": { + "items": { + "discriminator": { + "mapping": { + "Craniotomy": "#/$defs/Craniotomy", + "Fiber implant": "#/$defs/FiberImplant", + "Ground wire": "#/$defs/ProtectiveMaterialReplacement", + "Headframe": "#/$defs/Headframe", + "ICM injection": "#/$defs/IntraCisternalMagnaInjection", + "ICV injection": "#/$defs/IntraCerebellarVentricleInjection", + "Intraperitoneal injection": "#/$defs/IntraperitonealInjection", + "Iontophoresis injection": "#/$defs/IontophoresisInjection", + "Myomatrix_Insertion": "#/$defs/MyomatrixInsertion", + "Nanoject injection": "#/$defs/NanojectInjection", + "Other Subject Procedure": "#/$defs/OtherSubjectProcedure", + "Perfusion": "#/$defs/Perfusion", + "Retro-orbital injection": "#/$defs/RetroOrbitalInjection" + }, + "propertyName": "procedure_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/Craniotomy" + }, + { + "$ref": "#/$defs/FiberImplant" + }, + { + "$ref": "#/$defs/Headframe" + }, + { + "$ref": "#/$defs/IntraCerebellarVentricleInjection" + }, + { + "$ref": "#/$defs/IntraCisternalMagnaInjection" + }, + { + "$ref": "#/$defs/IntraperitonealInjection" + }, + { + "$ref": "#/$defs/IontophoresisInjection" + }, + { + "$ref": "#/$defs/MyomatrixInsertion" + }, + { + "$ref": "#/$defs/NanojectInjection" + }, + { + "$ref": "#/$defs/OtherSubjectProcedure" + }, + { + "$ref": "#/$defs/Perfusion" + }, + { + "$ref": "#/$defs/ProtectiveMaterialReplacement" + }, + { + "$ref": "#/$defs/RetroOrbitalInjection" + } + ] + }, + "minItems": 1, + "title": "Procedures", + "type": "array" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "protocol_id", + "start_date", + "experimenter_full_name", + "procedures" + ], + "title": "Surgery", + "type": "object" + }, + "TarsVirusIdentifiers": { + "additionalProperties": false, + "description": "TARS data for a viral prep", + "properties": { + "virus_tars_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Virus ID, usually begins 'AiV'" + }, + "plasmid_tars_alias": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Alias used to reference the plasmid, usually begins 'AiP'", + "title": "Plasmid alias" + }, + "prep_lot_number": { + "title": "Preparation lot number", + "type": "string" + }, + "prep_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Date this prep lot was titered", + "title": "Preparation lot date" + }, + "prep_type": { + "anyOf": [ + { + "$ref": "#/$defs/VirusPrepType" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Viral prep type" + }, + "prep_protocol": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Prep protocol" + } + }, + "required": [ + "prep_lot_number" + ], + "title": "TarsVirusIdentifiers", + "type": "object" + }, + "TemperatureUnit": { + "description": "Temperature units", + "enum": [ + "Celsius", + "Kelvin" + ], + "title": "TemperatureUnit", + "type": "string" + }, + "TimeUnit": { + "description": "Enumeration of Time Measurements", + "enum": [ + "hour", + "minute", + "second", + "millisecond", + "microsecond", + "nanosecond" + ], + "title": "TimeUnit", + "type": "string" + }, + "TrainingProtocol": { + "additionalProperties": false, + "description": "Description of an animal training protocol", + "properties": { + "procedure_type": { + "const": "Training", + "default": "Training", + "title": "Procedure Type", + "type": "string" + }, + "training_name": { + "title": "Training protocol name", + "type": "string" + }, + "protocol_id": { + "title": "Training protocol ID", + "type": "string" + }, + "start_date": { + "format": "date", + "title": "Training protocol start date", + "type": "string" + }, + "end_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Training protocol end date" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "training_name", + "protocol_id", + "start_date" + ], + "title": "TrainingProtocol", + "type": "object" + }, + "Translation3dTransform": { + "additionalProperties": false, + "description": "Values to be vector-added to a 3D position. Often needed to specify a device or tile's origin.", + "properties": { + "type": { + "const": "translation", + "default": "translation", + "title": "Type", + "type": "string" + }, + "translation": { + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "maxItems": 3, + "minItems": 3, + "title": "3D translation parameters", + "type": "array" + } + }, + "required": [ + "translation" + ], + "title": "Translation3dTransform", + "type": "object" + }, + "Treadmill": { + "additionalProperties": false, + "description": "Description of treadmill platform", + "properties": { + "device_type": { + "const": "Treadmill", + "default": "Treadmill", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "surface_material": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Surface material" + }, + "date_surface_replaced": { + "anyOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Date surface replaced" + }, + "treadmill_width": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Width of treadmill (mm)" + }, + "width_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "centimeter", + "title": "Width unit" + } + }, + "required": [ + "name", + "treadmill_width" + ], + "title": "Treadmill", + "type": "object" + }, + "TriggerType": { + "description": "Types of detector triggers", + "enum": [ + "Internal", + "External" + ], + "title": "TriggerType", + "type": "string" + }, + "Tube": { + "additionalProperties": false, + "description": "Description of a tube platform", + "properties": { + "device_type": { + "const": "Tube", + "default": "Tube", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "surface_material": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Surface material" + }, + "date_surface_replaced": { + "anyOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Date surface replaced" + }, + "diameter": { + "anyOf": [ + { + "minimum": 0.0, + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Diameter" + }, + "diameter_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "centimeter", + "title": "Diameter unit" + } + }, + "required": [ + "name", + "diameter" + ], + "title": "Tube", + "type": "object" + }, + "UnitlessUnit": { + "description": "Unitless options", + "enum": [ + "percent", + "fraction of cycle" + ], + "title": "UnitlessUnit", + "type": "string" + }, + "ViralMaterial": { + "additionalProperties": false, + "description": "Description of viral material for injections", + "properties": { + "material_type": { + "const": "Virus", + "default": "Virus", + "title": "Injection material type", + "type": "string" + }, + "name": { + "description": "Full genome for virus construct", + "title": "Full genome name", + "type": "string" + }, + "tars_identifiers": { + "anyOf": [ + { + "$ref": "#/$defs/TarsVirusIdentifiers" + }, + { + "type": "null" + } + ], + "default": null, + "description": "TARS database identifiers", + "title": "TARS IDs" + }, + "addgene_id": { + "anyOf": [ + { + "$ref": "#/$defs/PIDName" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Registry must be Addgene", + "title": "Addgene id" + }, + "titer": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Final titer of viral material, accounting for mixture/diliution", + "title": "Effective titer (gc/mL)" + }, + "titer_unit": { + "default": "gc/mL", + "title": "Titer unit", + "type": "string" + } + }, + "required": [ + "name" + ], + "title": "ViralMaterial", + "type": "object" + }, + "VirusPrepType": { + "description": "Type of virus preparation", + "enum": [ + "Crude", + "Purified" + ], + "title": "VirusPrepType", + "type": "string" + }, + "VisualStimulation": { + "additionalProperties": false, + "description": "Description of visual stimulus parameters. Provides a high level description of stimulus.", + "properties": { + "stimulus_type": { + "const": "Visual Stimulation", + "default": "Visual Stimulation", + "title": "Stimulus Type", + "type": "string" + }, + "stimulus_name": { + "title": "Stimulus name", + "type": "string" + }, + "stimulus_parameters": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "description": "Define and list the parameter values used (e.g. all TF or orientation values)", + "title": "Stimulus parameters" + }, + "stimulus_template_name": { + "default": [], + "description": "Name of image set or movie displayed", + "items": { + "type": "string" + }, + "title": "Stimulus template name", + "type": "array" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "stimulus_name" + ], + "title": "VisualStimulation", + "type": "object" + }, + "VoltageUnit": { + "description": "Voltage units", + "enum": [ + "Volts" + ], + "title": "VoltageUnit", + "type": "string" + }, + "VolumeUnit": { + "description": "Enumeration of Volume Measurements", + "enum": [ + "liter", + "milliliter", + "microliter", + "nanoliter" + ], + "title": "VolumeUnit", + "type": "string" + }, + "WaterRestriction": { + "additionalProperties": false, + "description": "Description of a water restriction procedure", + "properties": { + "procedure_type": { + "const": "Water restriction", + "default": "Water restriction", + "title": "Procedure Type", + "type": "string" + }, + "iacuc_protocol": { + "title": "IACUC protocol", + "type": "string" + }, + "target_fraction_weight": { + "title": "Target fraction weight (%)", + "type": "integer" + }, + "target_fraction_weight_unit": { + "$ref": "#/$defs/UnitlessUnit", + "default": "percent", + "title": "Target fraction weight unit" + }, + "minimum_water_per_day": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Minimum water per day (mL)" + }, + "minimum_water_per_day_unit": { + "$ref": "#/$defs/VolumeUnit", + "default": "milliliter", + "title": "Minimum water per day unit" + }, + "baseline_weight": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "description": "Weight at start of water restriction", + "title": "Baseline weight (g)" + }, + "weight_unit": { + "$ref": "#/$defs/MassUnit", + "default": "gram", + "title": "Weight unit" + }, + "start_date": { + "format": "date", + "title": "Water restriction start date", + "type": "string" + }, + "end_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Water restriction end date" + } + }, + "required": [ + "iacuc_protocol", + "target_fraction_weight", + "minimum_water_per_day", + "baseline_weight", + "start_date" + ], + "title": "WaterRestriction", + "type": "object" + }, + "WellnessReport": { + "additionalProperties": false, + "description": "Wellness report on animal health", + "properties": { + "date": { + "format": "date", + "title": "Date", + "type": "string" + }, + "report": { + "title": "Report", + "type": "string" + } + }, + "required": [ + "date", + "report" + ], + "title": "WellnessReport", + "type": "object" + }, + "Wheel": { + "additionalProperties": false, + "description": "Description of a running wheel", + "properties": { + "device_type": { + "const": "Wheel", + "default": "Wheel", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "surface_material": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Surface material" + }, + "date_surface_replaced": { + "anyOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Date surface replaced" + }, + "radius": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Radius (mm)" + }, + "width": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Width (mm)" + }, + "size_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Size unit" + }, + "encoder": { + "$ref": "#/$defs/Device", + "title": "Encoder" + }, + "encoder_output": { + "anyOf": [ + { + "$ref": "#/$defs/DAQChannel" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Encoder DAQ channel" + }, + "pulse_per_revolution": { + "title": "Pulse per revolution", + "type": "integer" + }, + "magnetic_brake": { + "$ref": "#/$defs/Device", + "title": "Magnetic brake" + }, + "brake_output": { + "anyOf": [ + { + "$ref": "#/$defs/DAQChannel" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Brake DAQ channel" + }, + "torque_sensor": { + "$ref": "#/$defs/Device", + "title": "Torque sensor" + }, + "torque_output": { + "anyOf": [ + { + "$ref": "#/$defs/DAQChannel" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Torque DAQ channel" + } + }, + "required": [ + "name", + "radius", + "width", + "encoder", + "pulse_per_revolution", + "magnetic_brake", + "torque_sensor" + ], + "title": "Wheel", + "type": "object" + }, + "_Aa_Opto_Electronic": { + "description": "Model AA Opto Electronic", + "properties": { + "name": { + "const": "AA Opto Electronic", + "default": "AA Opto Electronic", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Aa_Opto_Electronic", + "type": "object" + }, + "_Aaa": { + "description": "Model AAA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior amygdalar area", + "default": "Anterior amygdalar area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AAA", + "default": "AAA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "23", + "default": "23", + "title": "Id", + "type": "string" + } + }, + "title": "_Aaa", + "type": "object" + }, + "_Abcam": { + "description": "Model Abcam", + "properties": { + "name": { + "const": "Abcam", + "default": "Abcam", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02e1wjw63", + "default": "02e1wjw63", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Abcam", + "type": "object" + }, + "_Aca": { + "description": "Model ACA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area", + "default": "Anterior cingulate area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACA", + "default": "ACA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "31", + "default": "31", + "title": "Id", + "type": "string" + } + }, + "title": "_Aca", + "type": "object" + }, + "_Acad": { + "description": "Model ACAd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part", + "default": "Anterior cingulate area, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd", + "default": "ACAd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "39", + "default": "39", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad", + "type": "object" + }, + "_Acad1": { + "description": "Model ACAd1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part, layer 1", + "default": "Anterior cingulate area, dorsal part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd1", + "default": "ACAd1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "935", + "default": "935", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad1", + "type": "object" + }, + "_Acad2_3": { + "description": "Model ACAd2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part, layer 2/3", + "default": "Anterior cingulate area, dorsal part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd2/3", + "default": "ACAd2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "211", + "default": "211", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad2_3", + "type": "object" + }, + "_Acad5": { + "description": "Model ACAd5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part, layer 5", + "default": "Anterior cingulate area, dorsal part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd5", + "default": "ACAd5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1015", + "default": "1015", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad5", + "type": "object" + }, + "_Acad6A": { + "description": "Model ACAd6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part, layer 6a", + "default": "Anterior cingulate area, dorsal part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd6a", + "default": "ACAd6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "919", + "default": "919", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad6A", + "type": "object" + }, + "_Acad6B": { + "description": "Model ACAd6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part, layer 6b", + "default": "Anterior cingulate area, dorsal part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd6b", + "default": "ACAd6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "927", + "default": "927", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad6B", + "type": "object" + }, + "_Acav": { + "description": "Model ACAv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part", + "default": "Anterior cingulate area, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv", + "default": "ACAv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "48", + "default": "48", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav", + "type": "object" + }, + "_Acav1": { + "description": "Model ACAv1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part, layer 1", + "default": "Anterior cingulate area, ventral part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv1", + "default": "ACAv1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "588", + "default": "588", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav1", + "type": "object" + }, + "_Acav2_3": { + "description": "Model ACAv2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part, layer 2/3", + "default": "Anterior cingulate area, ventral part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv2/3", + "default": "ACAv2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "296", + "default": "296", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav2_3", + "type": "object" + }, + "_Acav5": { + "description": "Model ACAv5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part, layer 5", + "default": "Anterior cingulate area, ventral part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv5", + "default": "ACAv5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "772", + "default": "772", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav5", + "type": "object" + }, + "_Acav6A": { + "description": "Model ACAv6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part, 6a", + "default": "Anterior cingulate area, ventral part, 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv6a", + "default": "ACAv6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "810", + "default": "810", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav6A", + "type": "object" + }, + "_Acav6B": { + "description": "Model ACAv6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part, 6b", + "default": "Anterior cingulate area, ventral part, 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv6b", + "default": "ACAv6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "819", + "default": "819", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav6B", + "type": "object" + }, + "_Acb": { + "description": "Model ACB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus accumbens", + "default": "Nucleus accumbens", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACB", + "default": "ACB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "56", + "default": "56", + "title": "Id", + "type": "string" + } + }, + "title": "_Acb", + "type": "object" + }, + "_Aco": { + "description": "Model aco", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "anterior commissure, olfactory limb", + "default": "anterior commissure, olfactory limb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "aco", + "default": "aco", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "900", + "default": "900", + "title": "Id", + "type": "string" + } + }, + "title": "_Aco", + "type": "object" + }, + "_Acs5": { + "description": "Model Acs5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory trigeminal nucleus", + "default": "Accessory trigeminal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "Acs5", + "default": "Acs5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "549009219", + "default": "549009219", + "title": "Id", + "type": "string" + } + }, + "title": "_Acs5", + "type": "object" + }, + "_Act": { + "description": "Model act", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "anterior commissure, temporal limb", + "default": "anterior commissure, temporal limb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "act", + "default": "act", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "908", + "default": "908", + "title": "Id", + "type": "string" + } + }, + "title": "_Act", + "type": "object" + }, + "_Acvii": { + "description": "Model ACVII", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory facial motor nucleus", + "default": "Accessory facial motor nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACVII", + "default": "ACVII", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "576", + "default": "576", + "title": "Id", + "type": "string" + } + }, + "title": "_Acvii", + "type": "object" + }, + "_Ad": { + "description": "Model AD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterodorsal nucleus", + "default": "Anterodorsal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AD", + "default": "AD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "64", + "default": "64", + "title": "Id", + "type": "string" + } + }, + "title": "_Ad", + "type": "object" + }, + "_Adp": { + "description": "Model ADP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterodorsal preoptic nucleus", + "default": "Anterodorsal preoptic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ADP", + "default": "ADP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "72", + "default": "72", + "title": "Id", + "type": "string" + } + }, + "title": "_Adp", + "type": "object" + }, + "_Ahn": { + "description": "Model AHN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior hypothalamic nucleus", + "default": "Anterior hypothalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AHN", + "default": "AHN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "88", + "default": "88", + "title": "Id", + "type": "string" + } + }, + "title": "_Ahn", + "type": "object" + }, + "_Ai": { + "description": "Model AI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area", + "default": "Agranular insular area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AI", + "default": "AI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "95", + "default": "95", + "title": "Id", + "type": "string" + } + }, + "title": "_Ai", + "type": "object" + }, + "_Aid": { + "description": "Model AId", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part", + "default": "Agranular insular area, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId", + "default": "AId", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "104", + "default": "104", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid", + "type": "object" + }, + "_Aid1": { + "description": "Model AId1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part, layer 1", + "default": "Agranular insular area, dorsal part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId1", + "default": "AId1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "996", + "default": "996", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid1", + "type": "object" + }, + "_Aid2_3": { + "description": "Model AId2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part, layer 2/3", + "default": "Agranular insular area, dorsal part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId2/3", + "default": "AId2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "328", + "default": "328", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid2_3", + "type": "object" + }, + "_Aid5": { + "description": "Model AId5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part, layer 5", + "default": "Agranular insular area, dorsal part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId5", + "default": "AId5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1101", + "default": "1101", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid5", + "type": "object" + }, + "_Aid6A": { + "description": "Model AId6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part, layer 6a", + "default": "Agranular insular area, dorsal part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId6a", + "default": "AId6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "783", + "default": "783", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid6A", + "type": "object" + }, + "_Aid6B": { + "description": "Model AId6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part, layer 6b", + "default": "Agranular insular area, dorsal part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId6b", + "default": "AId6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "831", + "default": "831", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid6B", + "type": "object" + }, + "_Ailipu_Technology_Co": { + "description": "Model Ailipu Technology Co", + "properties": { + "name": { + "const": "Ailipu Technology Co", + "default": "Ailipu Technology Co", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Ailipu", + "default": "Ailipu", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Ailipu_Technology_Co", + "type": "object" + }, + "_Aip": { + "description": "Model AIp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part", + "default": "Agranular insular area, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp", + "default": "AIp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "111", + "default": "111", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip", + "type": "object" + }, + "_Aip1": { + "description": "Model AIp1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part, layer 1", + "default": "Agranular insular area, posterior part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp1", + "default": "AIp1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "120", + "default": "120", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip1", + "type": "object" + }, + "_Aip2_3": { + "description": "Model AIp2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part, layer 2/3", + "default": "Agranular insular area, posterior part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp2/3", + "default": "AIp2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "163", + "default": "163", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip2_3", + "type": "object" + }, + "_Aip5": { + "description": "Model AIp5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part, layer 5", + "default": "Agranular insular area, posterior part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp5", + "default": "AIp5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "344", + "default": "344", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip5", + "type": "object" + }, + "_Aip6A": { + "description": "Model AIp6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part, layer 6a", + "default": "Agranular insular area, posterior part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp6a", + "default": "AIp6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "314", + "default": "314", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip6A", + "type": "object" + }, + "_Aip6B": { + "description": "Model AIp6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part, layer 6b", + "default": "Agranular insular area, posterior part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp6b", + "default": "AIp6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "355", + "default": "355", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip6B", + "type": "object" + }, + "_Aiv": { + "description": "Model AIv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part", + "default": "Agranular insular area, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv", + "default": "AIv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "119", + "default": "119", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv", + "type": "object" + }, + "_Aiv1": { + "description": "Model AIv1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part, layer 1", + "default": "Agranular insular area, ventral part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv1", + "default": "AIv1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "704", + "default": "704", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv1", + "type": "object" + }, + "_Aiv2_3": { + "description": "Model AIv2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part, layer 2/3", + "default": "Agranular insular area, ventral part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv2/3", + "default": "AIv2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "694", + "default": "694", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv2_3", + "type": "object" + }, + "_Aiv5": { + "description": "Model AIv5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part, layer 5", + "default": "Agranular insular area, ventral part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv5", + "default": "AIv5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "800", + "default": "800", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv5", + "type": "object" + }, + "_Aiv6A": { + "description": "Model AIv6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part, layer 6a", + "default": "Agranular insular area, ventral part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv6a", + "default": "AIv6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "675", + "default": "675", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv6A", + "type": "object" + }, + "_Aiv6B": { + "description": "Model AIv6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part, layer 6b", + "default": "Agranular insular area, ventral part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv6b", + "default": "AIv6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "699", + "default": "699", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv6B", + "type": "object" + }, + "_Allen_Institute": { + "description": "Model Allen Institute", + "properties": { + "name": { + "const": "Allen Institute", + "default": "Allen Institute", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "AI", + "default": "AI", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03cpe7c52", + "default": "03cpe7c52", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Allen_Institute", + "type": "object" + }, + "_Allen_Institute_For_Brain_Science": { + "description": "Model Allen Institute for Brain Science", + "properties": { + "name": { + "const": "Allen Institute for Brain Science", + "default": "Allen Institute for Brain Science", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "AIBS", + "default": "AIBS", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00dcv1019", + "default": "00dcv1019", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Allen_Institute_For_Brain_Science", + "type": "object" + }, + "_Allen_Institute_For_Neural_Dynamics": { + "description": "Model Allen Institute for Neural Dynamics", + "properties": { + "name": { + "const": "Allen Institute for Neural Dynamics", + "default": "Allen Institute for Neural Dynamics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "AIND", + "default": "AIND", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "04szwah67", + "default": "04szwah67", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Allen_Institute_For_Neural_Dynamics", + "type": "object" + }, + "_Allied": { + "description": "Model Allied", + "properties": { + "name": { + "const": "Allied", + "default": "Allied", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Allied", + "type": "object" + }, + "_Alv": { + "description": "Model alv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "alveus", + "default": "alveus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "alv", + "default": "alv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "466", + "default": "466", + "title": "Id", + "type": "string" + } + }, + "title": "_Alv", + "type": "object" + }, + "_Am": { + "description": "Model AM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteromedial nucleus", + "default": "Anteromedial nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AM", + "default": "AM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "127", + "default": "127", + "title": "Id", + "type": "string" + } + }, + "title": "_Am", + "type": "object" + }, + "_Amb": { + "description": "Model AMB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus ambiguus", + "default": "Nucleus ambiguus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AMB", + "default": "AMB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "135", + "default": "135", + "title": "Id", + "type": "string" + } + }, + "title": "_Amb", + "type": "object" + }, + "_Ambd": { + "description": "Model AMBd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus ambiguus, dorsal division", + "default": "Nucleus ambiguus, dorsal division", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AMBd", + "default": "AMBd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "939", + "default": "939", + "title": "Id", + "type": "string" + } + }, + "title": "_Ambd", + "type": "object" + }, + "_Ambv": { + "description": "Model AMBv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus ambiguus, ventral division", + "default": "Nucleus ambiguus, ventral division", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AMBv", + "default": "AMBv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "143", + "default": "143", + "title": "Id", + "type": "string" + } + }, + "title": "_Ambv", + "type": "object" + }, + "_Amc": { + "description": "Model amc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "amygdalar capsule", + "default": "amygdalar capsule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "amc", + "default": "amc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "884", + "default": "884", + "title": "Id", + "type": "string" + } + }, + "title": "_Amc", + "type": "object" + }, + "_Amd": { + "description": "Model AMd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteromedial nucleus, dorsal part", + "default": "Anteromedial nucleus, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AMd", + "default": "AMd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1096", + "default": "1096", + "title": "Id", + "type": "string" + } + }, + "title": "_Amd", + "type": "object" + }, + "_Ams_Osram": { + "description": "Model ams OSRAM", + "properties": { + "name": { + "const": "ams OSRAM", + "default": "ams OSRAM", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "045d0h266", + "default": "045d0h266", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Ams_Osram", + "type": "object" + }, + "_Amv": { + "description": "Model AMv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteromedial nucleus, ventral part", + "default": "Anteromedial nucleus, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AMv", + "default": "AMv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1104", + "default": "1104", + "title": "Id", + "type": "string" + } + }, + "title": "_Amv", + "type": "object" + }, + "_An": { + "description": "Model AN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ansiform lobule", + "default": "Ansiform lobule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AN", + "default": "AN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1017", + "default": "1017", + "title": "Id", + "type": "string" + } + }, + "title": "_An", + "type": "object" + }, + "_Ancr1": { + "description": "Model ANcr1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Crus 1", + "default": "Crus 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ANcr1", + "default": "ANcr1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1056", + "default": "1056", + "title": "Id", + "type": "string" + } + }, + "title": "_Ancr1", + "type": "object" + }, + "_Ancr2": { + "description": "Model ANcr2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Crus 2", + "default": "Crus 2", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ANcr2", + "default": "ANcr2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1064", + "default": "1064", + "title": "Id", + "type": "string" + } + }, + "title": "_Ancr2", + "type": "object" + }, + "_Aob": { + "description": "Model AOB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory olfactory bulb", + "default": "Accessory olfactory bulb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AOB", + "default": "AOB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "151", + "default": "151", + "title": "Id", + "type": "string" + } + }, + "title": "_Aob", + "type": "object" + }, + "_Aobgl": { + "description": "Model AOBgl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory olfactory bulb, glomerular layer", + "default": "Accessory olfactory bulb, glomerular layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AOBgl", + "default": "AOBgl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "188", + "default": "188", + "title": "Id", + "type": "string" + } + }, + "title": "_Aobgl", + "type": "object" + }, + "_Aobgr": { + "description": "Model AOBgr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory olfactory bulb, granular layer", + "default": "Accessory olfactory bulb, granular layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AOBgr", + "default": "AOBgr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "196", + "default": "196", + "title": "Id", + "type": "string" + } + }, + "title": "_Aobgr", + "type": "object" + }, + "_Aobmi": { + "description": "Model AOBmi", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory olfactory bulb, mitral layer", + "default": "Accessory olfactory bulb, mitral layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AOBmi", + "default": "AOBmi", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "204", + "default": "204", + "title": "Id", + "type": "string" + } + }, + "title": "_Aobmi", + "type": "object" + }, + "_Aon": { + "description": "Model AON", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior olfactory nucleus", + "default": "Anterior olfactory nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AON", + "default": "AON", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "159", + "default": "159", + "title": "Id", + "type": "string" + } + }, + "title": "_Aon", + "type": "object" + }, + "_Ap": { + "description": "Model AP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Area postrema", + "default": "Area postrema", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AP", + "default": "AP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "207", + "default": "207", + "title": "Id", + "type": "string" + } + }, + "title": "_Ap", + "type": "object" + }, + "_Apn": { + "description": "Model APN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior pretectal nucleus", + "default": "Anterior pretectal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "APN", + "default": "APN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "215", + "default": "215", + "title": "Id", + "type": "string" + } + }, + "title": "_Apn", + "type": "object" + }, + "_Applied_Scientific_Instrumentation": { + "description": "Model Applied Scientific Instrumentation", + "properties": { + "name": { + "const": "Applied Scientific Instrumentation", + "default": "Applied Scientific Instrumentation", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "ASI", + "default": "ASI", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Applied_Scientific_Instrumentation", + "type": "object" + }, + "_Apr": { + "description": "Model APr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Area prostriata", + "default": "Area prostriata", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "APr", + "default": "APr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682508", + "default": "484682508", + "title": "Id", + "type": "string" + } + }, + "title": "_Apr", + "type": "object" + }, + "_Aq": { + "description": "Model AQ", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebral aqueduct", + "default": "cerebral aqueduct", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AQ", + "default": "AQ", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "140", + "default": "140", + "title": "Id", + "type": "string" + } + }, + "title": "_Aq", + "type": "object" + }, + "_Ar": { + "description": "Model ar", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "auditory radiation", + "default": "auditory radiation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ar", + "default": "ar", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682524", + "default": "484682524", + "title": "Id", + "type": "string" + } + }, + "title": "_Ar", + "type": "object" + }, + "_Arb": { + "description": "Model arb", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "arbor vitae", + "default": "arbor vitae", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "arb", + "default": "arb", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "728", + "default": "728", + "title": "Id", + "type": "string" + } + }, + "title": "_Arb", + "type": "object" + }, + "_Arecont_Vision_Costar": { + "description": "Model Arecont Vision Costar", + "properties": { + "name": { + "const": "Arecont Vision Costar", + "default": "Arecont Vision Costar", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Arecont_Vision_Costar", + "type": "object" + }, + "_Arh": { + "description": "Model ARH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Arcuate hypothalamic nucleus", + "default": "Arcuate hypothalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ARH", + "default": "ARH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "223", + "default": "223", + "title": "Id", + "type": "string" + } + }, + "title": "_Arh", + "type": "object" + }, + "_Aso": { + "description": "Model ASO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory supraoptic group", + "default": "Accessory supraoptic group", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ASO", + "default": "ASO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "332", + "default": "332", + "title": "Id", + "type": "string" + } + }, + "title": "_Aso", + "type": "object" + }, + "_Asus": { + "description": "Model ASUS", + "properties": { + "name": { + "const": "ASUS", + "default": "ASUS", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00bxkz165", + "default": "00bxkz165", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Asus", + "type": "object" + }, + "_At": { + "description": "Model AT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior tegmental nucleus", + "default": "Anterior tegmental nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AT", + "default": "AT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "231", + "default": "231", + "title": "Id", + "type": "string" + } + }, + "title": "_At", + "type": "object" + }, + "_Atn": { + "description": "Model ATN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior group of the dorsal thalamus", + "default": "Anterior group of the dorsal thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ATN", + "default": "ATN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "239", + "default": "239", + "title": "Id", + "type": "string" + } + }, + "title": "_Atn", + "type": "object" + }, + "_Aud": { + "description": "Model AUD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Auditory areas", + "default": "Auditory areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUD", + "default": "AUD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "247", + "default": "247", + "title": "Id", + "type": "string" + } + }, + "title": "_Aud", + "type": "object" + }, + "_Audd": { + "description": "Model AUDd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area", + "default": "Dorsal auditory area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd", + "default": "AUDd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1011", + "default": "1011", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd", + "type": "object" + }, + "_Audd1": { + "description": "Model AUDd1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 1", + "default": "Dorsal auditory area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd1", + "default": "AUDd1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "527", + "default": "527", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd1", + "type": "object" + }, + "_Audd2_3": { + "description": "Model AUDd2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 2/3", + "default": "Dorsal auditory area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd2/3", + "default": "AUDd2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "600", + "default": "600", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd2_3", + "type": "object" + }, + "_Audd4": { + "description": "Model AUDd4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 4", + "default": "Dorsal auditory area, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd4", + "default": "AUDd4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "678", + "default": "678", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd4", + "type": "object" + }, + "_Audd5": { + "description": "Model AUDd5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 5", + "default": "Dorsal auditory area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd5", + "default": "AUDd5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "252", + "default": "252", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd5", + "type": "object" + }, + "_Audd6A": { + "description": "Model AUDd6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 6a", + "default": "Dorsal auditory area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd6a", + "default": "AUDd6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "156", + "default": "156", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd6A", + "type": "object" + }, + "_Audd6B": { + "description": "Model AUDd6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 6b", + "default": "Dorsal auditory area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd6b", + "default": "AUDd6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "243", + "default": "243", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd6B", + "type": "object" + }, + "_Audp": { + "description": "Model AUDp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area", + "default": "Primary auditory area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp", + "default": "AUDp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1002", + "default": "1002", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp", + "type": "object" + }, + "_Audp1": { + "description": "Model AUDp1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 1", + "default": "Primary auditory area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp1", + "default": "AUDp1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "735", + "default": "735", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp1", + "type": "object" + }, + "_Audp2_3": { + "description": "Model AUDp2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 2/3", + "default": "Primary auditory area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp2/3", + "default": "AUDp2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "251", + "default": "251", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp2_3", + "type": "object" + }, + "_Audp4": { + "description": "Model AUDp4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 4", + "default": "Primary auditory area, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp4", + "default": "AUDp4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "816", + "default": "816", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp4", + "type": "object" + }, + "_Audp5": { + "description": "Model AUDp5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 5", + "default": "Primary auditory area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp5", + "default": "AUDp5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "847", + "default": "847", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp5", + "type": "object" + }, + "_Audp6A": { + "description": "Model AUDp6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 6a", + "default": "Primary auditory area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp6a", + "default": "AUDp6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "954", + "default": "954", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp6A", + "type": "object" + }, + "_Audp6B": { + "description": "Model AUDp6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 6b", + "default": "Primary auditory area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp6b", + "default": "AUDp6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1005", + "default": "1005", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp6B", + "type": "object" + }, + "_Audpo": { + "description": "Model AUDpo", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area", + "default": "Posterior auditory area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo", + "default": "AUDpo", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1027", + "default": "1027", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo", + "type": "object" + }, + "_Audpo1": { + "description": "Model AUDpo1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 1", + "default": "Posterior auditory area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo1", + "default": "AUDpo1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "696", + "default": "696", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo1", + "type": "object" + }, + "_Audpo2_3": { + "description": "Model AUDpo2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 2/3", + "default": "Posterior auditory area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo2/3", + "default": "AUDpo2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "643", + "default": "643", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo2_3", + "type": "object" + }, + "_Audpo4": { + "description": "Model AUDpo4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 4", + "default": "Posterior auditory area, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo4", + "default": "AUDpo4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "759", + "default": "759", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo4", + "type": "object" + }, + "_Audpo5": { + "description": "Model AUDpo5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 5", + "default": "Posterior auditory area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo5", + "default": "AUDpo5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "791", + "default": "791", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo5", + "type": "object" + }, + "_Audpo6A": { + "description": "Model AUDpo6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 6a", + "default": "Posterior auditory area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo6a", + "default": "AUDpo6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "249", + "default": "249", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo6A", + "type": "object" + }, + "_Audpo6B": { + "description": "Model AUDpo6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 6b", + "default": "Posterior auditory area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo6b", + "default": "AUDpo6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "456", + "default": "456", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo6B", + "type": "object" + }, + "_Audv": { + "description": "Model AUDv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area", + "default": "Ventral auditory area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv", + "default": "AUDv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1018", + "default": "1018", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv", + "type": "object" + }, + "_Audv1": { + "description": "Model AUDv1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 1", + "default": "Ventral auditory area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv1", + "default": "AUDv1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "959", + "default": "959", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv1", + "type": "object" + }, + "_Audv2_3": { + "description": "Model AUDv2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 2/3", + "default": "Ventral auditory area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv2/3", + "default": "AUDv2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "755", + "default": "755", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv2_3", + "type": "object" + }, + "_Audv4": { + "description": "Model AUDv4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 4", + "default": "Ventral auditory area, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv4", + "default": "AUDv4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "990", + "default": "990", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv4", + "type": "object" + }, + "_Audv5": { + "description": "Model AUDv5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 5", + "default": "Ventral auditory area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv5", + "default": "AUDv5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1023", + "default": "1023", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv5", + "type": "object" + }, + "_Audv6A": { + "description": "Model AUDv6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 6a", + "default": "Ventral auditory area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv6a", + "default": "AUDv6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "520", + "default": "520", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv6A", + "type": "object" + }, + "_Audv6B": { + "description": "Model AUDv6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 6b", + "default": "Ventral auditory area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv6b", + "default": "AUDv6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "598", + "default": "598", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv6B", + "type": "object" + }, + "_Av": { + "description": "Model AV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteroventral nucleus of thalamus", + "default": "Anteroventral nucleus of thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AV", + "default": "AV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "255", + "default": "255", + "title": "Id", + "type": "string" + } + }, + "title": "_Av", + "type": "object" + }, + "_Avp": { + "description": "Model AVP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteroventral preoptic nucleus", + "default": "Anteroventral preoptic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AVP", + "default": "AVP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "263", + "default": "263", + "title": "Id", + "type": "string" + } + }, + "title": "_Avp", + "type": "object" + }, + "_Avpv": { + "description": "Model AVPV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteroventral periventricular nucleus", + "default": "Anteroventral periventricular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AVPV", + "default": "AVPV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "272", + "default": "272", + "title": "Id", + "type": "string" + } + }, + "title": "_Avpv", + "type": "object" + }, + "_B": { + "description": "Model B", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Barrington's nucleus", + "default": "Barrington's nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "B", + "default": "B", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "280", + "default": "280", + "title": "Id", + "type": "string" + } + }, + "title": "_B", + "type": "object" + }, + "_Ba": { + "description": "Model BA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Bed nucleus of the accessory olfactory tract", + "default": "Bed nucleus of the accessory olfactory tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BA", + "default": "BA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "292", + "default": "292", + "title": "Id", + "type": "string" + } + }, + "title": "_Ba", + "type": "object" + }, + "_Bac": { + "description": "Model BAC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Bed nucleus of the anterior commissure", + "default": "Bed nucleus of the anterior commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BAC", + "default": "BAC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "287", + "default": "287", + "title": "Id", + "type": "string" + } + }, + "title": "_Bac", + "type": "object" + }, + "_Basler": { + "description": "Model Basler", + "properties": { + "name": { + "const": "Basler", + "default": "Basler", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Basler", + "type": "object" + }, + "_Behavior_Videos": { + "additionalProperties": false, + "description": "Model behavior-videos", + "properties": { + "name": { + "const": "Behavior videos", + "default": "Behavior videos", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "behavior-videos", + "default": "behavior-videos", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Behavior_Videos", + "type": "object" + }, + "_Bic": { + "description": "Model bic", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "brachium of the inferior colliculus", + "default": "brachium of the inferior colliculus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "bic", + "default": "bic", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "482", + "default": "482", + "title": "Id", + "type": "string" + } + }, + "title": "_Bic", + "type": "object" + }, + "_Biceps_Brachii": { + "description": "Model biceps brachii", + "properties": { + "name": { + "const": "biceps brachii", + "default": "biceps brachii", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_19108", + "default": "EMAPA_19108", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Biceps_Brachii", + "type": "object" + }, + "_Bla": { + "description": "Model BLA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basolateral amygdalar nucleus", + "default": "Basolateral amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BLA", + "default": "BLA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "295", + "default": "295", + "title": "Id", + "type": "string" + } + }, + "title": "_Bla", + "type": "object" + }, + "_Blaa": { + "description": "Model BLAa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basolateral amygdalar nucleus, anterior part", + "default": "Basolateral amygdalar nucleus, anterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BLAa", + "default": "BLAa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "303", + "default": "303", + "title": "Id", + "type": "string" + } + }, + "title": "_Blaa", + "type": "object" + }, + "_Blap": { + "description": "Model BLAp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basolateral amygdalar nucleus, posterior part", + "default": "Basolateral amygdalar nucleus, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BLAp", + "default": "BLAp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "311", + "default": "311", + "title": "Id", + "type": "string" + } + }, + "title": "_Blap", + "type": "object" + }, + "_Blav": { + "description": "Model BLAv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basolateral amygdalar nucleus, ventral part", + "default": "Basolateral amygdalar nucleus, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BLAv", + "default": "BLAv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "451", + "default": "451", + "title": "Id", + "type": "string" + } + }, + "title": "_Blav", + "type": "object" + }, + "_Bma": { + "description": "Model BMA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basomedial amygdalar nucleus", + "default": "Basomedial amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BMA", + "default": "BMA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "319", + "default": "319", + "title": "Id", + "type": "string" + } + }, + "title": "_Bma", + "type": "object" + }, + "_Bmaa": { + "description": "Model BMAa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basomedial amygdalar nucleus, anterior part", + "default": "Basomedial amygdalar nucleus, anterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BMAa", + "default": "BMAa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "327", + "default": "327", + "title": "Id", + "type": "string" + } + }, + "title": "_Bmaa", + "type": "object" + }, + "_Bmap": { + "description": "Model BMAp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basomedial amygdalar nucleus, posterior part", + "default": "Basomedial amygdalar nucleus, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BMAp", + "default": "BMAp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "334", + "default": "334", + "title": "Id", + "type": "string" + } + }, + "title": "_Bmap", + "type": "object" + }, + "_Bs": { + "description": "Model BS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Brain stem", + "default": "Brain stem", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BS", + "default": "BS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "343", + "default": "343", + "title": "Id", + "type": "string" + } + }, + "title": "_Bs", + "type": "object" + }, + "_Bsc": { + "description": "Model bsc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "brachium of the superior colliculus", + "default": "brachium of the superior colliculus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "bsc", + "default": "bsc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "916", + "default": "916", + "title": "Id", + "type": "string" + } + }, + "title": "_Bsc", + "type": "object" + }, + "_Bst": { + "description": "Model BST", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Bed nuclei of the stria terminalis", + "default": "Bed nuclei of the stria terminalis", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BST", + "default": "BST", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "351", + "default": "351", + "title": "Id", + "type": "string" + } + }, + "title": "_Bst", + "type": "object" + }, + "_C": { + "description": "Model c", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "central canal, spinal cord/medulla", + "default": "central canal, spinal cord/medulla", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "c", + "default": "c", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "164", + "default": "164", + "title": "Id", + "type": "string" + } + }, + "title": "_C", + "type": "object" + }, + "_Ca": { + "description": "Model CA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ammon's horn", + "default": "Ammon's horn", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CA", + "default": "CA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "375", + "default": "375", + "title": "Id", + "type": "string" + } + }, + "title": "_Ca", + "type": "object" + }, + "_Ca1": { + "description": "Model CA1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Field CA1", + "default": "Field CA1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CA1", + "default": "CA1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "382", + "default": "382", + "title": "Id", + "type": "string" + } + }, + "title": "_Ca1", + "type": "object" + }, + "_Ca2": { + "description": "Model CA2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Field CA2", + "default": "Field CA2", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CA2", + "default": "CA2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "423", + "default": "423", + "title": "Id", + "type": "string" + } + }, + "title": "_Ca2", + "type": "object" + }, + "_Ca3": { + "description": "Model CA3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Field CA3", + "default": "Field CA3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CA3", + "default": "CA3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "463", + "default": "463", + "title": "Id", + "type": "string" + } + }, + "title": "_Ca3", + "type": "object" + }, + "_Callithrix_Jacchus": { + "description": "Model Callithrix jacchus", + "properties": { + "name": { + "const": "Callithrix jacchus", + "default": "Callithrix jacchus", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "National Center for Biotechnology Information", + "abbreviation": "NCBI" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "NCBI:txid9483", + "default": "NCBI:txid9483", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Callithrix_Jacchus", + "type": "object" + }, + "_Cambridge_Technology": { + "description": "Model Cambridge Technology", + "properties": { + "name": { + "const": "Cambridge Technology", + "default": "Cambridge Technology", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Cambridge_Technology", + "type": "object" + }, + "_Camera_Controller": { + "description": "Model Camera Controller", + "properties": { + "whoami": { + "const": 1168, + "default": 1168, + "title": "Whoami", + "type": "integer" + }, + "name": { + "const": "Camera Controller", + "default": "Camera Controller", + "title": "Name", + "type": "string" + } + }, + "title": "_Camera_Controller", + "type": "object" + }, + "_Carl_Zeiss": { + "description": "Model Carl Zeiss", + "properties": { + "name": { + "const": "Carl Zeiss", + "default": "Carl Zeiss", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "01xk5xs43", + "default": "01xk5xs43", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Carl_Zeiss", + "type": "object" + }, + "_Cb": { + "description": "Model CB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebellum", + "default": "Cerebellum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CB", + "default": "CB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "512", + "default": "512", + "title": "Id", + "type": "string" + } + }, + "title": "_Cb", + "type": "object" + }, + "_Cbc": { + "description": "Model cbc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebellar commissure", + "default": "cerebellar commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cbc", + "default": "cbc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "744", + "default": "744", + "title": "Id", + "type": "string" + } + }, + "title": "_Cbc", + "type": "object" + }, + "_Cbf": { + "description": "Model cbf", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebellum related fiber tracts", + "default": "cerebellum related fiber tracts", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cbf", + "default": "cbf", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "960", + "default": "960", + "title": "Id", + "type": "string" + } + }, + "title": "_Cbf", + "type": "object" + }, + "_Cbn": { + "description": "Model CBN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebellar nuclei", + "default": "Cerebellar nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CBN", + "default": "CBN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "519", + "default": "519", + "title": "Id", + "type": "string" + } + }, + "title": "_Cbn", + "type": "object" + }, + "_Cbp": { + "description": "Model cbp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebellar peduncles", + "default": "cerebellar peduncles", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cbp", + "default": "cbp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "752", + "default": "752", + "title": "Id", + "type": "string" + } + }, + "title": "_Cbp", + "type": "object" + }, + "_Cbx": { + "description": "Model CBX", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebellar cortex", + "default": "Cerebellar cortex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CBX", + "default": "CBX", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "528", + "default": "528", + "title": "Id", + "type": "string" + } + }, + "title": "_Cbx", + "type": "object" + }, + "_Cc": { + "description": "Model cc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum", + "default": "corpus callosum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cc", + "default": "cc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "776", + "default": "776", + "title": "Id", + "type": "string" + } + }, + "title": "_Cc", + "type": "object" + }, + "_Ccb": { + "description": "Model ccb", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum, body", + "default": "corpus callosum, body", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ccb", + "default": "ccb", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682516", + "default": "484682516", + "title": "Id", + "type": "string" + } + }, + "title": "_Ccb", + "type": "object" + }, + "_Ccg": { + "description": "Model ccg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "genu of corpus callosum", + "default": "genu of corpus callosum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ccg", + "default": "ccg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1108", + "default": "1108", + "title": "Id", + "type": "string" + } + }, + "title": "_Ccg", + "type": "object" + }, + "_Ccs": { + "description": "Model ccs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum, splenium", + "default": "corpus callosum, splenium", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ccs", + "default": "ccs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "986", + "default": "986", + "title": "Id", + "type": "string" + } + }, + "title": "_Ccs", + "type": "object" + }, + "_Cea": { + "description": "Model CEA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central amygdalar nucleus", + "default": "Central amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CEA", + "default": "CEA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "536", + "default": "536", + "title": "Id", + "type": "string" + } + }, + "title": "_Cea", + "type": "object" + }, + "_Ceac": { + "description": "Model CEAc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central amygdalar nucleus, capsular part", + "default": "Central amygdalar nucleus, capsular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CEAc", + "default": "CEAc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "544", + "default": "544", + "title": "Id", + "type": "string" + } + }, + "title": "_Ceac", + "type": "object" + }, + "_Ceal": { + "description": "Model CEAl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central amygdalar nucleus, lateral part", + "default": "Central amygdalar nucleus, lateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CEAl", + "default": "CEAl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "551", + "default": "551", + "title": "Id", + "type": "string" + } + }, + "title": "_Ceal", + "type": "object" + }, + "_Ceam": { + "description": "Model CEAm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central amygdalar nucleus, medial part", + "default": "Central amygdalar nucleus, medial part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CEAm", + "default": "CEAm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "559", + "default": "559", + "title": "Id", + "type": "string" + } + }, + "title": "_Ceam", + "type": "object" + }, + "_Cent": { + "description": "Model CENT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central lobule", + "default": "Central lobule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CENT", + "default": "CENT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "920", + "default": "920", + "title": "Id", + "type": "string" + } + }, + "title": "_Cent", + "type": "object" + }, + "_Cent2": { + "description": "Model CENT2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lobule II", + "default": "Lobule II", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CENT2", + "default": "CENT2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "976", + "default": "976", + "title": "Id", + "type": "string" + } + }, + "title": "_Cent2", + "type": "object" + }, + "_Cent3": { + "description": "Model CENT3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lobule III", + "default": "Lobule III", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CENT3", + "default": "CENT3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "984", + "default": "984", + "title": "Id", + "type": "string" + } + }, + "title": "_Cent3", + "type": "object" + }, + "_Cett": { + "description": "Model cett", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cervicothalamic tract", + "default": "cervicothalamic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cett", + "default": "cett", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "932", + "default": "932", + "title": "Id", + "type": "string" + } + }, + "title": "_Cett", + "type": "object" + }, + "_Ch": { + "description": "Model CH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebrum", + "default": "Cerebrum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CH", + "default": "CH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "567", + "default": "567", + "title": "Id", + "type": "string" + } + }, + "title": "_Ch", + "type": "object" + }, + "_Champalimaud_Foundation": { + "description": "Model Champalimaud Foundation", + "properties": { + "name": { + "const": "Champalimaud Foundation", + "default": "Champalimaud Foundation", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Champalimaud", + "default": "Champalimaud", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03g001n57", + "default": "03g001n57", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Champalimaud_Foundation", + "type": "object" + }, + "_Chan_Zuckerberg_Initiative": { + "description": "Model Chan Zuckerberg Initiative", + "properties": { + "name": { + "const": "Chan Zuckerberg Initiative", + "default": "Chan Zuckerberg Initiative", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "CZI", + "default": "CZI", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02qenvm24", + "default": "02qenvm24", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Chan_Zuckerberg_Initiative", + "type": "object" + }, + "_Charles_River_Laboratories": { + "description": "Model Charles River Laboratories", + "properties": { + "name": { + "const": "Charles River Laboratories", + "default": "Charles River Laboratories", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "CRL", + "default": "CRL", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03ndmsg87", + "default": "03ndmsg87", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Charles_River_Laboratories", + "type": "object" + }, + "_Chpl": { + "description": "Model chpl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "choroid plexus", + "default": "choroid plexus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "chpl", + "default": "chpl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "108", + "default": "108", + "title": "Id", + "type": "string" + } + }, + "title": "_Chpl", + "type": "object" + }, + "_Chroma": { + "description": "Model Chroma", + "properties": { + "name": { + "const": "Chroma", + "default": "Chroma", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Chroma", + "type": "object" + }, + "_Cic": { + "description": "Model cic", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "inferior colliculus commissure", + "default": "inferior colliculus commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cic", + "default": "cic", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "633", + "default": "633", + "title": "Id", + "type": "string" + } + }, + "title": "_Cic", + "type": "object" + }, + "_Cing": { + "description": "Model cing", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cingulum bundle", + "default": "cingulum bundle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cing", + "default": "cing", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "940", + "default": "940", + "title": "Id", + "type": "string" + } + }, + "title": "_Cing", + "type": "object" + }, + "_Cl": { + "description": "Model CL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central lateral nucleus of the thalamus", + "default": "Central lateral nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CL", + "default": "CL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "575", + "default": "575", + "title": "Id", + "type": "string" + } + }, + "title": "_Cl", + "type": "object" + }, + "_Cla": { + "description": "Model CLA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Claustrum", + "default": "Claustrum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CLA", + "default": "CLA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "583", + "default": "583", + "title": "Id", + "type": "string" + } + }, + "title": "_Cla", + "type": "object" + }, + "_Cli": { + "description": "Model CLI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central linear nucleus raphe", + "default": "Central linear nucleus raphe", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CLI", + "default": "CLI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "591", + "default": "591", + "title": "Id", + "type": "string" + } + }, + "title": "_Cli", + "type": "object" + }, + "_Clock_Synchronizer": { + "description": "Model Clock Synchronizer", + "properties": { + "whoami": { + "const": 1152, + "default": 1152, + "title": "Whoami", + "type": "integer" + }, + "name": { + "const": "Clock Synchronizer", + "default": "Clock Synchronizer", + "title": "Name", + "type": "string" + } + }, + "title": "_Clock_Synchronizer", + "type": "object" + }, + "_Cm": { + "description": "Model CM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central medial nucleus of the thalamus", + "default": "Central medial nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CM", + "default": "CM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "599", + "default": "599", + "title": "Id", + "type": "string" + } + }, + "title": "_Cm", + "type": "object" + }, + "_Cn": { + "description": "Model CN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cochlear nuclei", + "default": "Cochlear nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CN", + "default": "CN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607", + "default": "607", + "title": "Id", + "type": "string" + } + }, + "title": "_Cn", + "type": "object" + }, + "_Cne": { + "description": "Model cne", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cranial nerves", + "default": "cranial nerves", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cne", + "default": "cne", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "967", + "default": "967", + "title": "Id", + "type": "string" + } + }, + "title": "_Cne", + "type": "object" + }, + "_Cnu": { + "description": "Model CNU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebral nuclei", + "default": "Cerebral nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CNU", + "default": "CNU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "623", + "default": "623", + "title": "Id", + "type": "string" + } + }, + "title": "_Cnu", + "type": "object" + }, + "_Coa": { + "description": "Model COA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical amygdalar area", + "default": "Cortical amygdalar area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COA", + "default": "COA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "631", + "default": "631", + "title": "Id", + "type": "string" + } + }, + "title": "_Coa", + "type": "object" + }, + "_Coaa": { + "description": "Model COAa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical amygdalar area, anterior part", + "default": "Cortical amygdalar area, anterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COAa", + "default": "COAa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "639", + "default": "639", + "title": "Id", + "type": "string" + } + }, + "title": "_Coaa", + "type": "object" + }, + "_Coap": { + "description": "Model COAp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical amygdalar area, posterior part", + "default": "Cortical amygdalar area, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COAp", + "default": "COAp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "647", + "default": "647", + "title": "Id", + "type": "string" + } + }, + "title": "_Coap", + "type": "object" + }, + "_Coapl": { + "description": "Model COApl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical amygdalar area, posterior part, lateral zone", + "default": "Cortical amygdalar area, posterior part, lateral zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COApl", + "default": "COApl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "655", + "default": "655", + "title": "Id", + "type": "string" + } + }, + "title": "_Coapl", + "type": "object" + }, + "_Coapm": { + "description": "Model COApm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical amygdalar area, posterior part, medial zone", + "default": "Cortical amygdalar area, posterior part, medial zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COApm", + "default": "COApm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "663", + "default": "663", + "title": "Id", + "type": "string" + } + }, + "title": "_Coapm", + "type": "object" + }, + "_Coherent_Scientific": { + "description": "Model Coherent Scientific", + "properties": { + "name": { + "const": "Coherent Scientific", + "default": "Coherent Scientific", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "031tysd23", + "default": "031tysd23", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Coherent_Scientific", + "type": "object" + }, + "_Columbia_University": { + "description": "Model Columbia University", + "properties": { + "name": { + "const": "Columbia University", + "default": "Columbia University", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Columbia", + "default": "Columbia", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00hj8s172", + "default": "00hj8s172", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Columbia_University", + "type": "object" + }, + "_Computar": { + "description": "Model Computar", + "properties": { + "name": { + "const": "Computar", + "default": "Computar", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Computar", + "type": "object" + }, + "_Conoptics": { + "description": "Model Conoptics", + "properties": { + "name": { + "const": "Conoptics", + "default": "Conoptics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Conoptics", + "type": "object" + }, + "_Copy": { + "description": "Model COPY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Copula pyramidis", + "default": "Copula pyramidis", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COPY", + "default": "COPY", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1033", + "default": "1033", + "title": "Id", + "type": "string" + } + }, + "title": "_Copy", + "type": "object" + }, + "_Cp": { + "description": "Model CP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Caudoputamen", + "default": "Caudoputamen", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CP", + "default": "CP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "672", + "default": "672", + "title": "Id", + "type": "string" + } + }, + "title": "_Cp", + "type": "object" + }, + "_Cpd": { + "description": "Model cpd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebal peduncle", + "default": "cerebal peduncle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cpd", + "default": "cpd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "924", + "default": "924", + "title": "Id", + "type": "string" + } + }, + "title": "_Cpd", + "type": "object" + }, + "_Cs": { + "description": "Model CS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior central nucleus raphe", + "default": "Superior central nucleus raphe", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CS", + "default": "CS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "679", + "default": "679", + "title": "Id", + "type": "string" + } + }, + "title": "_Cs", + "type": "object" + }, + "_Csc": { + "description": "Model csc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "superior colliculus commissure", + "default": "superior colliculus commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "csc", + "default": "csc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "336", + "default": "336", + "title": "Id", + "type": "string" + } + }, + "title": "_Csc", + "type": "object" + }, + "_Cst": { + "description": "Model cst", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corticospinal tract", + "default": "corticospinal tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cst", + "default": "cst", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "784", + "default": "784", + "title": "Id", + "type": "string" + } + }, + "title": "_Cst", + "type": "object" + }, + "_Ctx": { + "description": "Model CTX", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebral cortex", + "default": "Cerebral cortex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CTX", + "default": "CTX", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "688", + "default": "688", + "title": "Id", + "type": "string" + } + }, + "title": "_Ctx", + "type": "object" + }, + "_Ctxpl": { + "description": "Model CTXpl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical plate", + "default": "Cortical plate", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CTXpl", + "default": "CTXpl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "695", + "default": "695", + "title": "Id", + "type": "string" + } + }, + "title": "_Ctxpl", + "type": "object" + }, + "_Ctxsp": { + "description": "Model CTXsp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical subplate", + "default": "Cortical subplate", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CTXsp", + "default": "CTXsp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "703", + "default": "703", + "title": "Id", + "type": "string" + } + }, + "title": "_Ctxsp", + "type": "object" + }, + "_Cu": { + "description": "Model CU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cuneate nucleus", + "default": "Cuneate nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CU", + "default": "CU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "711", + "default": "711", + "title": "Id", + "type": "string" + } + }, + "title": "_Cu", + "type": "object" + }, + "_Cuf": { + "description": "Model cuf", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cuneate fascicle", + "default": "cuneate fascicle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cuf", + "default": "cuf", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "380", + "default": "380", + "title": "Id", + "type": "string" + } + }, + "title": "_Cuf", + "type": "object" + }, + "_Cul": { + "description": "Model CUL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Culmen", + "default": "Culmen", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CUL", + "default": "CUL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "928", + "default": "928", + "title": "Id", + "type": "string" + } + }, + "title": "_Cul", + "type": "object" + }, + "_Cul4_5": { + "description": "Model CUL4, 5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lobules IV-V", + "default": "Lobules IV-V", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CUL4, 5", + "default": "CUL4, 5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1091", + "default": "1091", + "title": "Id", + "type": "string" + } + }, + "title": "_Cul4_5", + "type": "object" + }, + "_Cun": { + "description": "Model CUN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cuneiform nucleus", + "default": "Cuneiform nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CUN", + "default": "CUN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "616", + "default": "616", + "title": "Id", + "type": "string" + } + }, + "title": "_Cun", + "type": "object" + }, + "_Custom": { + "description": "Model Custom", + "properties": { + "name": { + "const": "Custom", + "default": "Custom", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Custom", + "type": "object" + }, + "_Cuttlefish": { + "description": "Model Cuttlefish", + "properties": { + "whoami": { + "const": 1403, + "default": 1403, + "title": "Whoami", + "type": "integer" + }, + "name": { + "const": "Cuttlefish", + "default": "Cuttlefish", + "title": "Name", + "type": "string" + } + }, + "title": "_Cuttlefish", + "type": "object" + }, + "_Cviiin": { + "description": "Model cVIIIn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cochlear nerve", + "default": "cochlear nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cVIIIn", + "default": "cVIIIn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "948", + "default": "948", + "title": "Id", + "type": "string" + } + }, + "title": "_Cviiin", + "type": "object" + }, + "_Das": { + "description": "Model das", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal acoustic stria", + "default": "dorsal acoustic stria", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "das", + "default": "das", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "506", + "default": "506", + "title": "Id", + "type": "string" + } + }, + "title": "_Das", + "type": "object" + }, + "_Dc": { + "description": "Model dc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal column", + "default": "dorsal column", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "dc", + "default": "dc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "514", + "default": "514", + "title": "Id", + "type": "string" + } + }, + "title": "_Dc", + "type": "object" + }, + "_Dcn": { + "description": "Model DCN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal column nuclei", + "default": "Dorsal column nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DCN", + "default": "DCN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "720", + "default": "720", + "title": "Id", + "type": "string" + } + }, + "title": "_Dcn", + "type": "object" + }, + "_Dco": { + "description": "Model DCO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal cochlear nucleus", + "default": "Dorsal cochlear nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DCO", + "default": "DCO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "96", + "default": "96", + "title": "Id", + "type": "string" + } + }, + "title": "_Dco", + "type": "object" + }, + "_Dec": { + "description": "Model DEC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Declive (VI)", + "default": "Declive (VI)", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DEC", + "default": "DEC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "936", + "default": "936", + "title": "Id", + "type": "string" + } + }, + "title": "_Dec", + "type": "object" + }, + "_Deltoid": { + "description": "Model deltoid", + "properties": { + "name": { + "const": "deltoid", + "default": "deltoid", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_18177", + "default": "EMAPA_18177", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Deltoid", + "type": "object" + }, + "_Df": { + "description": "Model df", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal fornix", + "default": "dorsal fornix", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "df", + "default": "df", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "530", + "default": "530", + "title": "Id", + "type": "string" + } + }, + "title": "_Df", + "type": "object" + }, + "_Dg": { + "description": "Model DG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dentate gyrus", + "default": "Dentate gyrus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DG", + "default": "DG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "726", + "default": "726", + "title": "Id", + "type": "string" + } + }, + "title": "_Dg", + "type": "object" + }, + "_Dg_Mo": { + "description": "Model DG-mo", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dentate gyrus, molecular layer", + "default": "Dentate gyrus, molecular layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DG-mo", + "default": "DG-mo", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "10703", + "default": "10703", + "title": "Id", + "type": "string" + } + }, + "title": "_Dg_Mo", + "type": "object" + }, + "_Dg_Po": { + "description": "Model DG-po", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dentate gyrus, polymorph layer", + "default": "Dentate gyrus, polymorph layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DG-po", + "default": "DG-po", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "10704", + "default": "10704", + "title": "Id", + "type": "string" + } + }, + "title": "_Dg_Po", + "type": "object" + }, + "_Dg_Sg": { + "description": "Model DG-sg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dentate gyrus, granule cell layer", + "default": "Dentate gyrus, granule cell layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DG-sg", + "default": "DG-sg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "632", + "default": "632", + "title": "Id", + "type": "string" + } + }, + "title": "_Dg_Sg", + "type": "object" + }, + "_Dhc": { + "description": "Model dhc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal hippocampal commissure", + "default": "dorsal hippocampal commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "dhc", + "default": "dhc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "443", + "default": "443", + "title": "Id", + "type": "string" + } + }, + "title": "_Dhc", + "type": "object" + }, + "_Digikey": { + "description": "Model DigiKey", + "properties": { + "name": { + "const": "DigiKey", + "default": "DigiKey", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Digikey", + "type": "object" + }, + "_Dmh": { + "description": "Model DMH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsomedial nucleus of the hypothalamus", + "default": "Dorsomedial nucleus of the hypothalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DMH", + "default": "DMH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "830", + "default": "830", + "title": "Id", + "type": "string" + } + }, + "title": "_Dmh", + "type": "object" + }, + "_Dmx": { + "description": "Model DMX", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal motor nucleus of the vagus nerve", + "default": "Dorsal motor nucleus of the vagus nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DMX", + "default": "DMX", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "839", + "default": "839", + "title": "Id", + "type": "string" + } + }, + "title": "_Dmx", + "type": "object" + }, + "_Dn": { + "description": "Model DN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dentate nucleus", + "default": "Dentate nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DN", + "default": "DN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "846", + "default": "846", + "title": "Id", + "type": "string" + } + }, + "title": "_Dn", + "type": "object" + }, + "_Dodotronic": { + "description": "Model Dodotronic", + "properties": { + "name": { + "const": "Dodotronic", + "default": "Dodotronic", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Dodotronic", + "type": "object" + }, + "_Doric": { + "description": "Model Doric", + "properties": { + "name": { + "const": "Doric", + "default": "Doric", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "059n53q30", + "default": "059n53q30", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Doric", + "type": "object" + }, + "_Dorpm": { + "description": "Model DORpm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Thalamus, polymodal association cortex related", + "default": "Thalamus, polymodal association cortex related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DORpm", + "default": "DORpm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "856", + "default": "856", + "title": "Id", + "type": "string" + } + }, + "title": "_Dorpm", + "type": "object" + }, + "_Dorsm": { + "description": "Model DORsm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Thalamus, sensory-motor cortex related", + "default": "Thalamus, sensory-motor cortex related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DORsm", + "default": "DORsm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "864", + "default": "864", + "title": "Id", + "type": "string" + } + }, + "title": "_Dorsm", + "type": "object" + }, + "_Dp": { + "description": "Model DP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal peduncular area", + "default": "Dorsal peduncular area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DP", + "default": "DP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "814", + "default": "814", + "title": "Id", + "type": "string" + } + }, + "title": "_Dp", + "type": "object" + }, + "_Dr": { + "description": "Model DR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal nucleus raphe", + "default": "Dorsal nucleus raphe", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DR", + "default": "DR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "872", + "default": "872", + "title": "Id", + "type": "string" + } + }, + "title": "_Dr", + "type": "object" + }, + "_Drt": { + "description": "Model drt", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal roots", + "default": "dorsal roots", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "drt", + "default": "drt", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "792", + "default": "792", + "title": "Id", + "type": "string" + } + }, + "title": "_Drt", + "type": "object" + }, + "_Dscp": { + "description": "Model dscp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "superior cerebellar peduncle decussation", + "default": "superior cerebellar peduncle decussation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "dscp", + "default": "dscp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "812", + "default": "812", + "title": "Id", + "type": "string" + } + }, + "title": "_Dscp", + "type": "object" + }, + "_Dt": { + "description": "Model DT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal terminal nucleus of the accessory optic tract", + "default": "Dorsal terminal nucleus of the accessory optic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DT", + "default": "DT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "75", + "default": "75", + "title": "Id", + "type": "string" + } + }, + "title": "_Dt", + "type": "object" + }, + "_Dtd": { + "description": "Model dtd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "doral tegmental decussation", + "default": "doral tegmental decussation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "dtd", + "default": "dtd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1060", + "default": "1060", + "title": "Id", + "type": "string" + } + }, + "title": "_Dtd", + "type": "object" + }, + "_Dtn": { + "description": "Model DTN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal tegmental nucleus", + "default": "Dorsal tegmental nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DTN", + "default": "DTN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "880", + "default": "880", + "title": "Id", + "type": "string" + } + }, + "title": "_Dtn", + "type": "object" + }, + "_Ealing": { + "description": "Model Ealing", + "properties": { + "name": { + "const": "Ealing", + "default": "Ealing", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Ealing", + "type": "object" + }, + "_Ec": { + "description": "Model ec", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "external capsule", + "default": "external capsule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ec", + "default": "ec", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "579", + "default": "579", + "title": "Id", + "type": "string" + } + }, + "title": "_Ec", + "type": "object" + }, + "_Ect": { + "description": "Model ECT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area", + "default": "Ectorhinal area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT", + "default": "ECT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "895", + "default": "895", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect", + "type": "object" + }, + "_Ect1": { + "description": "Model ECT1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area/Layer 1", + "default": "Ectorhinal area/Layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT1", + "default": "ECT1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "836", + "default": "836", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect1", + "type": "object" + }, + "_Ect2_3": { + "description": "Model ECT2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area/Layer 2/3", + "default": "Ectorhinal area/Layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT2/3", + "default": "ECT2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "427", + "default": "427", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect2_3", + "type": "object" + }, + "_Ect5": { + "description": "Model ECT5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area/Layer 5", + "default": "Ectorhinal area/Layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT5", + "default": "ECT5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "988", + "default": "988", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect5", + "type": "object" + }, + "_Ect6A": { + "description": "Model ECT6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area/Layer 6a", + "default": "Ectorhinal area/Layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT6a", + "default": "ECT6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "977", + "default": "977", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect6A", + "type": "object" + }, + "_Ect6B": { + "description": "Model ECT6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area/Layer 6b", + "default": "Ectorhinal area/Layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT6b", + "default": "ECT6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1045", + "default": "1045", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect6B", + "type": "object" + }, + "_Ecu": { + "description": "Model ECU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "External cuneate nucleus", + "default": "External cuneate nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECU", + "default": "ECU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "903", + "default": "903", + "title": "Id", + "type": "string" + } + }, + "title": "_Ecu", + "type": "object" + }, + "_Edmund_Optics": { + "description": "Model Edmund Optics", + "properties": { + "name": { + "const": "Edmund Optics", + "default": "Edmund Optics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "01j1gwp17", + "default": "01j1gwp17", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Edmund_Optics", + "type": "object" + }, + "_Ee": { + "description": "Model ee", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum, extreme capsule", + "default": "corpus callosum, extreme capsule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ee", + "default": "ee", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "964", + "default": "964", + "title": "Id", + "type": "string" + } + }, + "title": "_Ee", + "type": "object" + }, + "_Em": { + "description": "Model em", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "external medullary lamina of the thalamus", + "default": "external medullary lamina of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "em", + "default": "em", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1092", + "default": "1092", + "title": "Id", + "type": "string" + } + }, + "title": "_Em", + "type": "object" + }, + "_Emapa": { + "additionalProperties": false, + "description": "Model EMAPA", + "properties": { + "name": { + "const": "Edinburgh Mouse Atlas Project", + "default": "Edinburgh Mouse Atlas Project", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "EMAPA", + "default": "EMAPA", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Emapa", + "type": "object" + }, + "_Emg": { + "additionalProperties": false, + "description": "Model EMG", + "properties": { + "name": { + "const": "Electromyography", + "default": "Electromyography", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "EMG", + "default": "EMG", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Emg", + "type": "object" + }, + "_Emory_University": { + "description": "Model Emory University", + "properties": { + "name": { + "const": "Emory University", + "default": "Emory University", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Emory", + "default": "Emory", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03czfpz43", + "default": "03czfpz43", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Emory_University", + "type": "object" + }, + "_Ent": { + "description": "Model ENT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area", + "default": "Entorhinal area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENT", + "default": "ENT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "909", + "default": "909", + "title": "Id", + "type": "string" + } + }, + "title": "_Ent", + "type": "object" + }, + "_Entl": { + "description": "Model ENTl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part", + "default": "Entorhinal area, lateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl", + "default": "ENTl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "918", + "default": "918", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl", + "type": "object" + }, + "_Entl1": { + "description": "Model ENTl1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part, layer 1", + "default": "Entorhinal area, lateral part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl1", + "default": "ENTl1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1121", + "default": "1121", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl1", + "type": "object" + }, + "_Entl2": { + "description": "Model ENTl2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part, layer 2", + "default": "Entorhinal area, lateral part, layer 2", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl2", + "default": "ENTl2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "20", + "default": "20", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl2", + "type": "object" + }, + "_Entl3": { + "description": "Model ENTl3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part, layer 3", + "default": "Entorhinal area, lateral part, layer 3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl3", + "default": "ENTl3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "52", + "default": "52", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl3", + "type": "object" + }, + "_Entl5": { + "description": "Model ENTl5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part, layer 5", + "default": "Entorhinal area, lateral part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl5", + "default": "ENTl5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "139", + "default": "139", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl5", + "type": "object" + }, + "_Entl6A": { + "description": "Model ENTl6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part, layer 6a", + "default": "Entorhinal area, lateral part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl6a", + "default": "ENTl6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "28", + "default": "28", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl6A", + "type": "object" + }, + "_Entm": { + "description": "Model ENTm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone", + "default": "Entorhinal area, medial part, dorsal zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm", + "default": "ENTm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "926", + "default": "926", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm", + "type": "object" + }, + "_Entm1": { + "description": "Model ENTm1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone, layer 1", + "default": "Entorhinal area, medial part, dorsal zone, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm1", + "default": "ENTm1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "526", + "default": "526", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm1", + "type": "object" + }, + "_Entm2": { + "description": "Model ENTm2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone, layer 2", + "default": "Entorhinal area, medial part, dorsal zone, layer 2", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm2", + "default": "ENTm2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "543", + "default": "543", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm2", + "type": "object" + }, + "_Entm3": { + "description": "Model ENTm3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone, layer 3", + "default": "Entorhinal area, medial part, dorsal zone, layer 3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm3", + "default": "ENTm3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "664", + "default": "664", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm3", + "type": "object" + }, + "_Entm5": { + "description": "Model ENTm5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone, layer 5", + "default": "Entorhinal area, medial part, dorsal zone, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm5", + "default": "ENTm5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "727", + "default": "727", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm5", + "type": "object" + }, + "_Entm6": { + "description": "Model ENTm6", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone, layer 6", + "default": "Entorhinal area, medial part, dorsal zone, layer 6", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm6", + "default": "ENTm6", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "743", + "default": "743", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm6", + "type": "object" + }, + "_Ep": { + "description": "Model EP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Endopiriform nucleus", + "default": "Endopiriform nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "EP", + "default": "EP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "942", + "default": "942", + "title": "Id", + "type": "string" + } + }, + "title": "_Ep", + "type": "object" + }, + "_Epd": { + "description": "Model EPd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Endopiriform nucleus, dorsal part", + "default": "Endopiriform nucleus, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "EPd", + "default": "EPd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "952", + "default": "952", + "title": "Id", + "type": "string" + } + }, + "title": "_Epd", + "type": "object" + }, + "_Epi": { + "description": "Model EPI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Epithalamus", + "default": "Epithalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "EPI", + "default": "EPI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "958", + "default": "958", + "title": "Id", + "type": "string" + } + }, + "title": "_Epi", + "type": "object" + }, + "_Eps": { + "description": "Model eps", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "extrapyramidal fiber systems", + "default": "extrapyramidal fiber systems", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "eps", + "default": "eps", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1000", + "default": "1000", + "title": "Id", + "type": "string" + } + }, + "title": "_Eps", + "type": "object" + }, + "_Epsc": { + "description": "Model epsc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebral nuclei related", + "default": "cerebral nuclei related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "epsc", + "default": "epsc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "760", + "default": "760", + "title": "Id", + "type": "string" + } + }, + "title": "_Epsc", + "type": "object" + }, + "_Epv": { + "description": "Model EPv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Endopiriform nucleus, ventral part", + "default": "Endopiriform nucleus, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "EPv", + "default": "EPv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "966", + "default": "966", + "title": "Id", + "type": "string" + } + }, + "title": "_Epv", + "type": "object" + }, + "_Eth": { + "description": "Model Eth", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ethmoid nucleus of the thalamus", + "default": "Ethmoid nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "Eth", + "default": "Eth", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "560581551", + "default": "560581551", + "title": "Id", + "type": "string" + } + }, + "title": "_Eth", + "type": "object" + }, + "_Euresys": { + "description": "Model Euresys", + "properties": { + "name": { + "const": "Euresys", + "default": "Euresys", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Euresys", + "type": "object" + }, + "_Ew": { + "description": "Model EW", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Edinger-Westphal nucleus", + "default": "Edinger-Westphal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "EW", + "default": "EW", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "975", + "default": "975", + "title": "Id", + "type": "string" + } + }, + "title": "_Ew", + "type": "object" + }, + "_Exaspim": { + "description": "Model exaSPIM", + "properties": { + "name": { + "const": "ExaSPIM platform", + "default": "ExaSPIM platform", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "exaSPIM", + "default": "exaSPIM", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Exaspim", + "type": "object" + }, + "_Extensor_Carpi_Radialis_Longus": { + "description": "Model extensor carpi radialis longus", + "properties": { + "name": { + "const": "extensor carpi radialis longus", + "default": "extensor carpi radialis longus", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_36189", + "default": "EMAPA_36189", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Extensor_Carpi_Radialis_Longus", + "type": "object" + }, + "_Extensor_Carpi_Ulnaris": { + "description": "Model extensor carpi ulnaris", + "properties": { + "name": { + "const": "extensor carpi ulnaris", + "default": "extensor carpi ulnaris", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_36190", + "default": "EMAPA_36190", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Extensor_Carpi_Ulnaris", + "type": "object" + }, + "_Extensor_Digitorum_Communis": { + "description": "Model extensor digitorum communis", + "properties": { + "name": { + "const": "extensor digitorum communis", + "default": "extensor digitorum communis", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_36191", + "default": "EMAPA_36191", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Extensor_Digitorum_Communis", + "type": "object" + }, + "_Extensor_Digitorum_Lateralis": { + "description": "Model extensor digitorum lateralis", + "properties": { + "name": { + "const": "extensor digitorum lateralis", + "default": "extensor digitorum lateralis", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_36192", + "default": "EMAPA_36192", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Extensor_Digitorum_Lateralis", + "type": "object" + }, + "_Fa": { + "description": "Model fa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum, anterior forceps", + "default": "corpus callosum, anterior forceps", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fa", + "default": "fa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "956", + "default": "956", + "title": "Id", + "type": "string" + } + }, + "title": "_Fa", + "type": "object" + }, + "_Fc": { + "description": "Model FC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Fasciola cinerea", + "default": "Fasciola cinerea", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FC", + "default": "FC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "982", + "default": "982", + "title": "Id", + "type": "string" + } + }, + "title": "_Fc", + "type": "object" + }, + "_Ff": { + "description": "Model FF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Fields of Forel", + "default": "Fields of Forel", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FF", + "default": "FF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "804", + "default": "804", + "title": "Id", + "type": "string" + } + }, + "title": "_Ff", + "type": "object" + }, + "_Fi": { + "description": "Model fi", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "fimbria", + "default": "fimbria", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fi", + "default": "fi", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "603", + "default": "603", + "title": "Id", + "type": "string" + } + }, + "title": "_Fi", + "type": "object" + }, + "_Fib": { + "additionalProperties": false, + "description": "Model fib", + "properties": { + "name": { + "const": "Fiber photometry", + "default": "Fiber photometry", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "fib", + "default": "fib", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Fib", + "type": "object" + }, + "_Fiber_Tracts": { + "description": "Model fiber tracts", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "fiber tracts", + "default": "fiber tracts", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fiber tracts", + "default": "fiber tracts", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1009", + "default": "1009", + "title": "Id", + "type": "string" + } + }, + "title": "_Fiber_Tracts", + "type": "object" + }, + "_Fip": { + "description": "Model FIP", + "properties": { + "name": { + "const": "Frame-projected independent-fiber photometry platform", + "default": "Frame-projected independent-fiber photometry platform", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "FIP", + "default": "FIP", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Fip", + "type": "object" + }, + "_Fl": { + "description": "Model FL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Flocculus", + "default": "Flocculus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FL", + "default": "FL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1049", + "default": "1049", + "title": "Id", + "type": "string" + } + }, + "title": "_Fl", + "type": "object" + }, + "_Flexor_Carpi_Radialis": { + "description": "Model flexor carpi radialis", + "properties": { + "name": { + "const": "flexor carpi radialis", + "default": "flexor carpi radialis", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_36197", + "default": "EMAPA_36197", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Flexor_Carpi_Radialis", + "type": "object" + }, + "_Flexor_Carpi_Ulnaris": { + "description": "Model flexor carpi ulnaris", + "properties": { + "name": { + "const": "flexor carpi ulnaris", + "default": "flexor carpi ulnaris", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_36198", + "default": "EMAPA_36198", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Flexor_Carpi_Ulnaris", + "type": "object" + }, + "_Flexor_Digitorum_Profundus": { + "description": "Model flexor digitorum profundus", + "properties": { + "name": { + "const": "flexor digitorum profundus", + "default": "flexor digitorum profundus", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_19319", + "default": "EMAPA_19319", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Flexor_Digitorum_Profundus", + "type": "object" + }, + "_Fmost": { + "additionalProperties": false, + "description": "Model fMOST", + "properties": { + "name": { + "const": "Fluorescence micro-optical sectioning tomography", + "default": "Fluorescence micro-optical sectioning tomography", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "fMOST", + "default": "fMOST", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Fmost", + "type": "object" + }, + "_Fn": { + "description": "Model FN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Fastigial nucleus", + "default": "Fastigial nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FN", + "default": "FN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "989", + "default": "989", + "title": "Id", + "type": "string" + } + }, + "title": "_Fn", + "type": "object" + }, + "_Forelimb": { + "description": "Model forelimb", + "properties": { + "name": { + "const": "forelimb", + "default": "forelimb", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_17412", + "default": "EMAPA_17412", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Forelimb", + "type": "object" + }, + "_Fotu": { + "description": "Model FOTU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Folium-tuber vermis (VII)", + "default": "Folium-tuber vermis (VII)", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FOTU", + "default": "FOTU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "944", + "default": "944", + "title": "Id", + "type": "string" + } + }, + "title": "_Fotu", + "type": "object" + }, + "_Fp": { + "description": "Model fp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum, posterior forceps", + "default": "corpus callosum, posterior forceps", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fp", + "default": "fp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "971", + "default": "971", + "title": "Id", + "type": "string" + } + }, + "title": "_Fp", + "type": "object" + }, + "_Fr": { + "description": "Model fr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "fasciculus retroflexus", + "default": "fasciculus retroflexus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fr", + "default": "fr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "595", + "default": "595", + "title": "Id", + "type": "string" + } + }, + "title": "_Fr", + "type": "object" + }, + "_Frp": { + "description": "Model FRP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, cerebral cortex", + "default": "Frontal pole, cerebral cortex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP", + "default": "FRP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "184", + "default": "184", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp", + "type": "object" + }, + "_Frp1": { + "description": "Model FRP1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, layer 1", + "default": "Frontal pole, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP1", + "default": "FRP1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "68", + "default": "68", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp1", + "type": "object" + }, + "_Frp2_3": { + "description": "Model FRP2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, layer 2/3", + "default": "Frontal pole, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP2/3", + "default": "FRP2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "667", + "default": "667", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp2_3", + "type": "object" + }, + "_Frp5": { + "description": "Model FRP5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, layer 5", + "default": "Frontal pole, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP5", + "default": "FRP5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "526157192", + "default": "526157192", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp5", + "type": "object" + }, + "_Frp6A": { + "description": "Model FRP6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, layer 6a", + "default": "Frontal pole, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP6a", + "default": "FRP6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "526157196", + "default": "526157196", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp6A", + "type": "object" + }, + "_Frp6B": { + "description": "Model FRP6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, layer 6b", + "default": "Frontal pole, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP6b", + "default": "FRP6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "526322264", + "default": "526322264", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp6B", + "type": "object" + }, + "_Fs": { + "description": "Model FS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Fundus of striatum", + "default": "Fundus of striatum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FS", + "default": "FS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "998", + "default": "998", + "title": "Id", + "type": "string" + } + }, + "title": "_Fs", + "type": "object" + }, + "_Fujinon": { + "description": "Model Fujinon", + "properties": { + "name": { + "const": "Fujinon", + "default": "Fujinon", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Fujinon", + "type": "object" + }, + "_Fx": { + "description": "Model fx", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "columns of the fornix", + "default": "columns of the fornix", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fx", + "default": "fx", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "436", + "default": "436", + "title": "Id", + "type": "string" + } + }, + "title": "_Fx", + "type": "object" + }, + "_Fxpo": { + "description": "Model fxpo", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "postcommissural fornix", + "default": "postcommissural fornix", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fxpo", + "default": "fxpo", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "737", + "default": "737", + "title": "Id", + "type": "string" + } + }, + "title": "_Fxpo", + "type": "object" + }, + "_Fxs": { + "description": "Model fxs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "fornix system", + "default": "fornix system", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fxs", + "default": "fxs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1099", + "default": "1099", + "title": "Id", + "type": "string" + } + }, + "title": "_Fxs", + "type": "object" + }, + "_Gend": { + "description": "Model GENd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Geniculate group, dorsal thalamus", + "default": "Geniculate group, dorsal thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GENd", + "default": "GENd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1008", + "default": "1008", + "title": "Id", + "type": "string" + } + }, + "title": "_Gend", + "type": "object" + }, + "_Generic_Harp_Device": { + "description": "Model Generic Harp Device", + "properties": { + "whoami": { + "const": 0, + "default": 0, + "title": "Whoami", + "type": "integer" + }, + "name": { + "const": "Generic Harp Device", + "default": "Generic Harp Device", + "title": "Name", + "type": "string" + } + }, + "title": "_Generic_Harp_Device", + "type": "object" + }, + "_Genv": { + "description": "Model GENv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Geniculate group, ventral thalamus", + "default": "Geniculate group, ventral thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GENv", + "default": "GENv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1014", + "default": "1014", + "title": "Id", + "type": "string" + } + }, + "title": "_Genv", + "type": "object" + }, + "_Gpe": { + "description": "Model GPe", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Globus pallidus, external segment", + "default": "Globus pallidus, external segment", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GPe", + "default": "GPe", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1022", + "default": "1022", + "title": "Id", + "type": "string" + } + }, + "title": "_Gpe", + "type": "object" + }, + "_Gpi": { + "description": "Model GPi", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Globus pallidus, internal segment", + "default": "Globus pallidus, internal segment", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GPi", + "default": "GPi", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1031", + "default": "1031", + "title": "Id", + "type": "string" + } + }, + "title": "_Gpi", + "type": "object" + }, + "_Gr": { + "description": "Model GR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gracile nucleus", + "default": "Gracile nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GR", + "default": "GR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1039", + "default": "1039", + "title": "Id", + "type": "string" + } + }, + "title": "_Gr", + "type": "object" + }, + "_Grey": { + "description": "Model grey", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basic cell groups and regions", + "default": "Basic cell groups and regions", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "grey", + "default": "grey", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "8", + "default": "8", + "title": "Id", + "type": "string" + } + }, + "title": "_Grey", + "type": "object" + }, + "_Grn": { + "description": "Model GRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gigantocellular reticular nucleus", + "default": "Gigantocellular reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GRN", + "default": "GRN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1048", + "default": "1048", + "title": "Id", + "type": "string" + } + }, + "title": "_Grn", + "type": "object" + }, + "_Gu": { + "description": "Model GU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas", + "default": "Gustatory areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU", + "default": "GU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1057", + "default": "1057", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu", + "type": "object" + }, + "_Gu1": { + "description": "Model GU1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 1", + "default": "Gustatory areas, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU1", + "default": "GU1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "36", + "default": "36", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu1", + "type": "object" + }, + "_Gu2_3": { + "description": "Model GU2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 2/3", + "default": "Gustatory areas, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU2/3", + "default": "GU2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "180", + "default": "180", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu2_3", + "type": "object" + }, + "_Gu4": { + "description": "Model GU4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 4", + "default": "Gustatory areas, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU4", + "default": "GU4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "148", + "default": "148", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu4", + "type": "object" + }, + "_Gu5": { + "description": "Model GU5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 5", + "default": "Gustatory areas, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU5", + "default": "GU5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "187", + "default": "187", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu5", + "type": "object" + }, + "_Gu6A": { + "description": "Model GU6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 6a", + "default": "Gustatory areas, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU6a", + "default": "GU6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "638", + "default": "638", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu6A", + "type": "object" + }, + "_Gu6B": { + "description": "Model GU6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 6b", + "default": "Gustatory areas, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU6b", + "default": "GU6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "662", + "default": "662", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu6B", + "type": "object" + }, + "_Gviin": { + "description": "Model gVIIn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "genu of the facial nerve", + "default": "genu of the facial nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "gVIIn", + "default": "gVIIn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1116", + "default": "1116", + "title": "Id", + "type": "string" + } + }, + "title": "_Gviin", + "type": "object" + }, + "_Hamamatsu": { + "description": "Model Hamamatsu", + "properties": { + "name": { + "const": "Hamamatsu", + "default": "Hamamatsu", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "type": "null" + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03natb733", + "default": "03natb733", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Hamamatsu", + "type": "object" + }, + "_Hamilton": { + "description": "Model Hamilton", + "properties": { + "name": { + "const": "Hamilton", + "default": "Hamilton", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, "default": null, - "title": "Manufacturer" + "title": "Abbreviation", + "type": "null" }, - "model": { - "anyOf": [ + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Hamilton", + "type": "object" + }, + "_Hata": { + "description": "Model HATA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hippocampo-amygdalar transition area", + "default": "Hippocampo-amygdalar transition area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HATA", + "default": "HATA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "589508447", + "default": "589508447", + "title": "Id", + "type": "string" + } + }, + "title": "_Hata", + "type": "object" + }, + "_Hb": { + "description": "Model HB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hindbrain", + "default": "Hindbrain", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HB", + "default": "HB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1065", + "default": "1065", + "title": "Id", + "type": "string" + } + }, + "title": "_Hb", + "type": "object" + }, + "_Hbc": { + "description": "Model hbc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "habenular commissure", + "default": "habenular commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "hbc", + "default": "hbc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "611", + "default": "611", + "title": "Id", + "type": "string" + } + }, + "title": "_Hbc", + "type": "object" + }, + "_Hc": { + "description": "Model hc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "hippocampal commissures", + "default": "hippocampal commissures", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "hc", + "default": "hc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "618", + "default": "618", + "title": "Id", + "type": "string" + } + }, + "title": "_Hc", + "type": "object" + }, + "_Hcr": { + "description": "Model HCR", + "properties": { + "name": { + "const": "Hybridization chain reaction platform", + "default": "Hybridization chain reaction platform", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "HCR", + "default": "HCR", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Hcr", + "type": "object" + }, + "_Head": { + "description": "Model head", + "properties": { + "name": { + "const": "head", + "default": "head", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "type": "string" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "type": "null" + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "title": "Model" + "title": "Registry" }, - "path_to_cad": { - "anyOf": [ + "registry_identifier": { + "const": "EMAPA_31858", + "default": "EMAPA_31858", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Head", + "type": "object" + }, + "_Hem": { + "description": "Model HEM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hemispheric regions", + "default": "Hemispheric regions", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HEM", + "default": "HEM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1073", + "default": "1073", + "title": "Id", + "type": "string" + } + }, + "title": "_Hem", + "type": "object" + }, + "_Hindlimb": { + "description": "Model hindlimb", + "properties": { + "name": { + "const": "hindlimb", + "default": "hindlimb", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "type": "string" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "type": "null" + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_17458", + "default": "EMAPA_17458", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Hindlimb", + "type": "object" + }, + "_Hip": { + "description": "Model HIP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hippocampal region", + "default": "Hippocampal region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HIP", + "default": "HIP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1080", + "default": "1080", + "title": "Id", + "type": "string" + } + }, + "title": "_Hip", + "type": "object" + }, + "_Homo_Sapiens": { + "description": "Model Homo sapiens", + "properties": { + "name": { + "const": "Homo sapiens", + "default": "Homo sapiens", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "National Center for Biotechnology Information", + "abbreviation": "NCBI" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "NCBI:txid9606", + "default": "NCBI:txid9606", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Homo_Sapiens", + "type": "object" + }, + "_Hpf": { + "description": "Model HPF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hippocampal formation", + "default": "Hippocampal formation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HPF", + "default": "HPF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1089", + "default": "1089", + "title": "Id", + "type": "string" + } + }, + "title": "_Hpf", + "type": "object" + }, + "_Hsfp": { + "description": "Model HSFP", + "properties": { + "name": { + "const": "Hyperspectral fiber photometry platform", + "default": "Hyperspectral fiber photometry platform", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "HSFP", + "default": "HSFP", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Hsfp", + "type": "object" + }, + "_Huazhong_University_Of_Science_And_Technology": { + "description": "Model Huazhong University of Science and Technology", + "properties": { + "name": { + "const": "Huazhong University of Science and Technology", + "default": "Huazhong University of Science and Technology", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "HUST", + "default": "HUST", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00p991c53", + "default": "00p991c53", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Huazhong_University_Of_Science_And_Technology", + "type": "object" + }, + "_Hy": { + "description": "Model HY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hypothalamus", + "default": "Hypothalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HY", + "default": "HY", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1097", + "default": "1097", + "title": "Id", + "type": "string" + } + }, + "title": "_Hy", + "type": "object" + }, + "_I5": { + "description": "Model I5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Intertrigeminal nucleus", + "default": "Intertrigeminal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "I5", + "default": "I5", + "title": "Acronym", + "type": "string" }, - "port_index": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Port index" + "id": { + "const": "549009227", + "default": "549009227", + "title": "Id", + "type": "string" + } + }, + "title": "_I5", + "type": "object" + }, + "_Ia": { + "description": "Model IA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "name": { + "const": "Intercalated amygdalar nucleus", + "default": "Intercalated amygdalar nucleus", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "IA", + "default": "IA", + "title": "Acronym", + "type": "string" }, - "travel": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Travel of device (mm)" + "id": { + "const": "1105", + "default": "1105", + "title": "Id", + "type": "string" + } + }, + "title": "_Ia", + "type": "object" + }, + "_Iad": { + "description": "Model IAD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "travel_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Travel unit" + "name": { + "const": "Interanterodorsal nucleus of the thalamus", + "default": "Interanterodorsal nucleus of the thalamus", + "title": "Name", + "type": "string" }, - "firmware": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Firmware" + "acronym": { + "const": "IAD", + "default": "IAD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1113", + "default": "1113", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "travel" - ], - "title": "MotorizedStage", + "title": "_Iad", "type": "object" }, - "MriScanSequence": { - "description": "MRI scan sequence", - "enum": [ - "RARE", - "Other" - ], - "title": "MriScanSequence", - "type": "string" + "_Iam": { + "description": "Model IAM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interanteromedial nucleus of the thalamus", + "default": "Interanteromedial nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IAM", + "default": "IAM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1120", + "default": "1120", + "title": "Id", + "type": "string" + } + }, + "title": "_Iam", + "type": "object" }, - "MyomatrixArray": { - "additionalProperties": false, - "description": "Description of a Myomatrix array", + "_Ib": { + "description": "Model IB", "properties": { - "device_type": { - "const": "Myomatrix Array", - "default": "Myomatrix Array", - "enum": [ - "Myomatrix Array" - ], - "title": "Device Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, "name": { - "title": "Device name", + "const": "Interbrain", + "default": "Interbrain", + "title": "Name", "type": "string" }, - "serial_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Serial number" + "acronym": { + "const": "IB", + "default": "IB", + "title": "Acronym", + "type": "string" }, - "manufacturer": { - "anyOf": [ - { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ] - }, - { - "type": "null" - } - ], - "default": null, - "title": "Manufacturer" + "id": { + "const": "1129", + "default": "1129", + "title": "Id", + "type": "string" + } + }, + "title": "_Ib", + "type": "object" + }, + "_Ic": { + "description": "Model IC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Inferior colliculus", + "default": "Inferior colliculus", + "title": "Name", + "type": "string" }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Model" + "acronym": { + "const": "IC", + "default": "IC", + "title": "Acronym", + "type": "string" }, - "path_to_cad": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" + "id": { + "const": "4", + "default": "4", + "title": "Id", + "type": "string" + } + }, + "title": "_Ic", + "type": "object" + }, + "_Icb": { + "description": "Model ICB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "port_index": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "name": { + "const": "Infracerebellar nucleus", + "default": "Infracerebellar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ICB", + "default": "ICB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "372", + "default": "372", + "title": "Id", + "type": "string" + } + }, + "title": "_Icb", + "type": "object" + }, + "_Icc": { + "description": "Model ICc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Inferior colliculus, central nucleus", + "default": "Inferior colliculus, central nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ICc", + "default": "ICc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "811", + "default": "811", + "title": "Id", + "type": "string" + } + }, + "title": "_Icc", + "type": "object" + }, + "_Icd": { + "description": "Model ICd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Inferior colliculus, dorsal nucleus", + "default": "Inferior colliculus, dorsal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ICd", + "default": "ICd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "820", + "default": "820", + "title": "Id", + "type": "string" + } + }, + "title": "_Icd", + "type": "object" + }, + "_Ice": { + "description": "Model ICe", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Inferior colliculus, external nucleus", + "default": "Inferior colliculus, external nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ICe", + "default": "ICe", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "828", + "default": "828", + "title": "Id", + "type": "string" + } + }, + "title": "_Ice", + "type": "object" + }, + "_Icephys": { + "additionalProperties": false, + "description": "Model icephys", + "properties": { + "name": { + "const": "Intracellular electrophysiology", + "default": "Intracellular electrophysiology", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "icephys", + "default": "icephys", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Icephys", + "type": "object" + }, + "_Icp": { + "description": "Model icp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "inferior cerebellar peduncle", + "default": "inferior cerebellar peduncle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "icp", + "default": "icp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1123", + "default": "1123", + "title": "Id", + "type": "string" + } + }, + "title": "_Icp", + "type": "object" + }, + "_If": { + "description": "Model IF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interfascicular nucleus raphe", + "default": "Interfascicular nucleus raphe", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IF", + "default": "IF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "12", + "default": "12", + "title": "Id", + "type": "string" + } + }, + "title": "_If", + "type": "object" + }, + "_Ig": { + "description": "Model IG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Induseum griseum", + "default": "Induseum griseum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IG", + "default": "IG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "19", + "default": "19", + "title": "Id", + "type": "string" + } + }, + "title": "_Ig", + "type": "object" + }, + "_Igl": { + "description": "Model IGL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Intergeniculate leaflet of the lateral geniculate complex", + "default": "Intergeniculate leaflet of the lateral geniculate complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IGL", + "default": "IGL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "27", + "default": "27", + "title": "Id", + "type": "string" + } + }, + "title": "_Igl", + "type": "object" + }, + "_Iii": { + "description": "Model III", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Oculomotor nucleus", + "default": "Oculomotor nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "III", + "default": "III", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "35", + "default": "35", + "title": "Id", + "type": "string" + } + }, + "title": "_Iii", + "type": "object" + }, + "_Iiin": { + "description": "Model IIIn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "oculomotor nerve", + "default": "oculomotor nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IIIn", + "default": "IIIn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "832", + "default": "832", + "title": "Id", + "type": "string" + } + }, + "title": "_Iiin", + "type": "object" + }, + "_Iin": { + "description": "Model IIn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "optic nerve", + "default": "optic nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IIn", + "default": "IIn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "848", + "default": "848", + "title": "Id", + "type": "string" + } + }, + "title": "_Iin", + "type": "object" + }, + "_Ila": { + "description": "Model ILA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Infralimbic area", + "default": "Infralimbic area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILA", + "default": "ILA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "44", + "default": "44", + "title": "Id", + "type": "string" + } + }, + "title": "_Ila", + "type": "object" + }, + "_Ila1": { + "description": "Model ILA1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Infralimbic area, layer 1", + "default": "Infralimbic area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILA1", + "default": "ILA1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "707", + "default": "707", + "title": "Id", + "type": "string" + } + }, + "title": "_Ila1", + "type": "object" + }, + "_Ila2_3": { + "description": "Model ILA2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Infralimbic area, layer 2/3", + "default": "Infralimbic area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILA2/3", + "default": "ILA2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "556", + "default": "556", + "title": "Id", + "type": "string" + } + }, + "title": "_Ila2_3", + "type": "object" + }, + "_Ila5": { + "description": "Model ILA5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Infralimbic area, layer 5", + "default": "Infralimbic area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILA5", + "default": "ILA5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "827", + "default": "827", + "title": "Id", + "type": "string" + } + }, + "title": "_Ila5", + "type": "object" + }, + "_Ila6A": { + "description": "Model ILA6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Infralimbic area, layer 6a", + "default": "Infralimbic area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILA6a", + "default": "ILA6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1054", + "default": "1054", + "title": "Id", + "type": "string" + } + }, + "title": "_Ila6A", + "type": "object" + }, + "_Ila6B": { + "description": "Model ILA6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Infralimbic area, layer 6b", + "default": "Infralimbic area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILA6b", + "default": "ILA6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1081", + "default": "1081", + "title": "Id", + "type": "string" + } + }, + "title": "_Ila6B", + "type": "object" + }, + "_Ilm": { + "description": "Model ILM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Intralaminar nuclei of the dorsal thalamus", + "default": "Intralaminar nuclei of the dorsal thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILM", + "default": "ILM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "51", + "default": "51", + "title": "Id", + "type": "string" + } + }, + "title": "_Ilm", + "type": "object" + }, + "_Imd": { + "description": "Model IMD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Intermediodorsal nucleus of the thalamus", + "default": "Intermediodorsal nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IMD", + "default": "IMD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "59", + "default": "59", + "title": "Id", + "type": "string" + } + }, + "title": "_Imd", + "type": "object" + }, + "_In": { + "description": "Model In", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "olfactory nerve", + "default": "olfactory nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "In", + "default": "In", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "840", + "default": "840", + "title": "Id", + "type": "string" + } + }, + "title": "_In", + "type": "object" + }, + "_Inc": { + "description": "Model INC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interstitial nucleus of Cajal", + "default": "Interstitial nucleus of Cajal", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "INC", + "default": "INC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "67", + "default": "67", + "title": "Id", + "type": "string" + } + }, + "title": "_Inc", + "type": "object" + }, + "_Infinity_Photo_Optical": { + "description": "Model Infinity Photo-Optical", + "properties": { + "name": { + "const": "Infinity Photo-Optical", + "default": "Infinity Photo-Optical", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, "default": null, - "title": "Port index" + "title": "Abbreviation", + "type": "null" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "registry": { + "default": null, + "title": "Registry", + "type": "null" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "registry_identifier": { "default": null, - "title": "Notes" + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Infinity_Photo_Optical", + "type": "object" + }, + "_Input_Expander": { + "description": "Model Input Expander", + "properties": { + "whoami": { + "const": 1106, + "default": 1106, + "title": "Whoami", + "type": "integer" }, - "array_type": { - "$ref": "#/$defs/MyomatrixArrayType", - "title": "Array type" + "name": { + "const": "Input Expander", + "default": "Input Expander", + "title": "Name", + "type": "string" } }, - "required": [ - "name", - "array_type" - ], - "title": "MyomatrixArray", + "title": "_Input_Expander", "type": "object" }, - "MyomatrixArrayType": { - "description": "Type of Myomatrix array", - "enum": [ - "Injected", - "Sutured" - ], - "title": "MyomatrixArrayType", - "type": "string" + "_Int": { + "description": "Model int", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "internal capsule", + "default": "internal capsule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "int", + "default": "int", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "6", + "default": "6", + "title": "Id", + "type": "string" + } + }, + "title": "_Int", + "type": "object" }, - "MyomatrixContact": { - "additionalProperties": false, - "description": "\"Description of a contact on a myomatrix thread", + "_Integrated_Dna_Technologies": { + "description": "Model Integrated DNA Technologies", "properties": { - "body_part": { - "discriminator": { - "mapping": { - "EMAPA_16748": "#/$defs/_Tail", - "EMAPA_17412": "#/$defs/_Forelimb", - "EMAPA_17458": "#/$defs/_Hindlimb", - "EMAPA_31857": "#/$defs/_Trunk", - "EMAPA_31858": "#/$defs/_Head", - "EMAPA_35587": "#/$defs/_Neck" - }, - "propertyName": "registry_identifier" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Forelimb" - }, - { - "$ref": "#/$defs/_Head" - }, - { - "$ref": "#/$defs/_Hindlimb" - }, - { - "$ref": "#/$defs/_Neck" - }, - { - "$ref": "#/$defs/_Tail" - }, - { - "$ref": "#/$defs/_Trunk" - } - ], - "title": "Body part of contact insertion" + "name": { + "const": "Integrated DNA Technologies", + "default": "Integrated DNA Technologies", + "title": "Name", + "type": "string" }, - "side": { - "$ref": "#/$defs/Side", - "title": "Body side" + "abbreviation": { + "const": "IDT", + "default": "IDT", + "title": "Abbreviation", + "type": "string" }, - "muscle": { + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, "discriminator": { "mapping": { - "EMAPA_18177": "#/$defs/_Deltoid", - "EMAPA_18179": "#/$defs/_Pectoralis_Major", - "EMAPA_19108": "#/$defs/_Biceps_Brachii", - "EMAPA_19111": "#/$defs/_Triceps_Brachii", - "EMAPA_19319": "#/$defs/_Flexor_Digitorum_Profundus", - "EMAPA_25053": "#/$defs/_Tendon_Of_Biceps_Brachii", - "EMAPA_25054": "#/$defs/_Long_Head_Of_Biceps_Brachii", - "EMAPA_25055": "#/$defs/_Short_Head_Of_Biceps_Brachii", - "EMAPA_36163": "#/$defs/_Pars_Scapularis_Of_Deltoid", - "EMAPA_36184": "#/$defs/_Lateral_Head_Of_Triceps_Brachii", - "EMAPA_36185": "#/$defs/_Long_Head_Of_Triceps_Brachii", - "EMAPA_36186": "#/$defs/_Medial_Head_Of_Triceps_Brachii", - "EMAPA_36189": "#/$defs/_Extensor_Carpi_Radialis_Longus", - "EMAPA_36190": "#/$defs/_Extensor_Carpi_Ulnaris", - "EMAPA_36191": "#/$defs/_Extensor_Digitorum_Communis", - "EMAPA_36192": "#/$defs/_Extensor_Digitorum_Lateralis", - "EMAPA_36197": "#/$defs/_Flexor_Carpi_Radialis", - "EMAPA_36198": "#/$defs/_Flexor_Carpi_Ulnaris" + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, - "propertyName": "registry_identifier" + "propertyName": "abbreviation" }, "oneOf": [ { - "$ref": "#/$defs/_Deltoid" - }, - { - "$ref": "#/$defs/_Pectoralis_Major" - }, - { - "$ref": "#/$defs/_Triceps_Brachii" - }, - { - "$ref": "#/$defs/_Lateral_Head_Of_Triceps_Brachii" - }, - { - "$ref": "#/$defs/_Long_Head_Of_Triceps_Brachii" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Medial_Head_Of_Triceps_Brachii" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Biceps_Brachii" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Long_Head_Of_Biceps_Brachii" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Short_Head_Of_Biceps_Brachii" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Tendon_Of_Biceps_Brachii" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Pars_Scapularis_Of_Deltoid" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "009jvpf03", + "default": "009jvpf03", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Integrated_Dna_Technologies", + "type": "object" + }, + "_Interuniversity_Microelectronics_Center": { + "description": "Model Interuniversity Microelectronics Center", + "properties": { + "name": { + "const": "Interuniversity Microelectronics Center", + "default": "Interuniversity Microelectronics Center", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "IMEC", + "default": "IMEC", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Extensor_Carpi_Radialis_Longus" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Extensor_Digitorum_Communis" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Extensor_Digitorum_Lateralis" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Extensor_Carpi_Ulnaris" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Flexor_Carpi_Radialis" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Flexor_Carpi_Ulnaris" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Flexor_Digitorum_Profundus" + "$ref": "#/$defs/_Rrid" } ], - "title": "Muscle of contact insertion" - }, - "in_muscle": { - "title": "In muscle", - "type": "boolean" + "title": "Registry" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "registry_identifier": { + "const": "02kcbn207", + "default": "02kcbn207", + "title": "Registry Identifier", + "type": "string" } }, - "required": [ - "body_part", - "side", - "muscle", - "in_muscle" - ], - "title": "MyomatrixContact", + "title": "_Interuniversity_Microelectronics_Center", "type": "object" }, - "MyomatrixInsertion": { - "additionalProperties": false, - "description": "Description of a Myomatrix array insertion for EMG", + "_Intg": { + "description": "Model IntG", "properties": { - "procedure_type": { - "const": "Myomatrix_Insertion", - "default": "Myomatrix_Insertion", - "enum": [ - "Myomatrix_Insertion" - ], - "title": "Procedure Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", + "name": { + "const": "Intermediate geniculate nucleus", + "default": "Intermediate geniculate nucleus", + "title": "Name", "type": "string" }, - "myomatrix_array": { - "$ref": "#/$defs/MyomatrixArray", - "title": "Myomatrix array" + "acronym": { + "const": "IntG", + "default": "IntG", + "title": "Acronym", + "type": "string" }, - "threads": { - "items": { - "$ref": "#/$defs/MyomatrixThread" - }, - "title": "Array threads", - "type": "array" + "id": { + "const": "563807439", + "default": "563807439", + "title": "Id", + "type": "string" } }, - "required": [ - "protocol_id", - "myomatrix_array", - "threads" - ], - "title": "MyomatrixInsertion", + "title": "_Intg", "type": "object" }, - "MyomatrixThread": { - "additionalProperties": false, - "description": "Description of a thread of a myomatrix array", + "_Invitrogen": { + "description": "Model Invitrogen", "properties": { - "ground_electrode_location": { + "name": { + "const": "Invitrogen", + "default": "Invitrogen", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, "discriminator": { "mapping": { - "EMAPA_16748": "#/$defs/_Tail", - "EMAPA_17412": "#/$defs/_Forelimb", - "EMAPA_17458": "#/$defs/_Hindlimb", - "EMAPA_31857": "#/$defs/_Trunk", - "EMAPA_31858": "#/$defs/_Head", - "EMAPA_35587": "#/$defs/_Neck" + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, - "propertyName": "registry_identifier" + "propertyName": "abbreviation" }, "oneOf": [ { - "$ref": "#/$defs/_Forelimb" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Head" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Hindlimb" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Neck" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Tail" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Trunk" + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], - "title": "Location of ground electrode" + "title": "Registry" }, - "contacts": { - "items": { - "$ref": "#/$defs/MyomatrixContact" - }, - "title": "Contacts", - "type": "array" + "registry_identifier": { + "const": "03x1ewr52", + "default": "03x1ewr52", + "title": "Registry Identifier", + "type": "string" } }, - "required": [ - "ground_electrode_location", - "contacts" - ], - "title": "MyomatrixThread", + "title": "_Invitrogen", "type": "object" }, - "NanojectInjection": { - "additionalProperties": false, - "description": "Description of a nanoject injection procedure", + "_Io": { + "description": "Model IO", "properties": { - "injection_materials": { - "items": { - "discriminator": { - "mapping": { - "Reagent": "#/$defs/NonViralMaterial", - "Virus": "#/$defs/ViralMaterial" - }, - "propertyName": "material_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/ViralMaterial" - }, - { - "$ref": "#/$defs/NonViralMaterial" - } - ] - }, - "minItems": 1, - "title": "Injection material", - "type": "array" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "recovery_time": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Recovery time" + "name": { + "const": "Inferior olivary complex", + "default": "Inferior olivary complex", + "title": "Name", + "type": "string" }, - "recovery_time_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Recovery time unit" + "acronym": { + "const": "IO", + "default": "IO", + "title": "Acronym", + "type": "string" }, - "injection_duration": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Injection duration" + "id": { + "const": "83", + "default": "83", + "title": "Id", + "type": "string" + } + }, + "title": "_Io", + "type": "object" + }, + "_Ip": { + "description": "Model IP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "injection_duration_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Injection duration unit" + "name": { + "const": "Interposed nucleus", + "default": "Interposed nucleus", + "title": "Name", + "type": "string" }, - "instrument_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Instrument ID" + "acronym": { + "const": "IP", + "default": "IP", + "title": "Acronym", + "type": "string" }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", + "id": { + "const": "91", + "default": "91", + "title": "Id", + "type": "string" + } + }, + "title": "_Ip", + "type": "object" + }, + "_Ipa": { + "description": "Model IPA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "injection_coordinate_ml": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Injection coordinate ML (mm)" + "name": { + "const": "Interpeduncular nucleus, apical", + "default": "Interpeduncular nucleus, apical", + "title": "Name", + "type": "string" }, - "injection_coordinate_ap": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Injection coordinate AP (mm)" + "acronym": { + "const": "IPA", + "default": "IPA", + "title": "Acronym", + "type": "string" }, - "injection_coordinate_depth": { - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "title": "Injection coordinate depth (mm)", - "type": "array" + "id": { + "const": "607344842", + "default": "607344842", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipa", + "type": "object" + }, + "_Ipc": { + "description": "Model IPC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "injection_coordinate_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Injection coordinate unit" + "name": { + "const": "Interpeduncular nucleus, caudal", + "default": "Interpeduncular nucleus, caudal", + "title": "Name", + "type": "string" }, - "injection_coordinate_reference": { - "anyOf": [ - { - "$ref": "#/$defs/CoordinateReferenceLocation" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Injection coordinate reference" + "acronym": { + "const": "IPC", + "default": "IPC", + "title": "Acronym", + "type": "string" }, - "bregma_to_lambda_distance": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Distance between bregman and lambda", - "title": "Bregma to lambda (mm)" + "id": { + "const": "607344838", + "default": "607344838", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipc", + "type": "object" + }, + "_Ipdl": { + "description": "Model IPDL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "bregma_to_lambda_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Bregma to lambda unit" + "name": { + "const": "Interpeduncular nucleus, dorsolateral", + "default": "Interpeduncular nucleus, dorsolateral", + "title": "Name", + "type": "string" }, - "injection_angle": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Injection angle (deg)" + "acronym": { + "const": "IPDL", + "default": "IPDL", + "title": "Acronym", + "type": "string" }, - "injection_angle_unit": { - "$ref": "#/$defs/AngleUnit", - "default": "degrees", - "title": "Injection angle unit" + "id": { + "const": "607344858", + "default": "607344858", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipdl", + "type": "object" + }, + "_Ipdm": { + "description": "Model IPDM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, dorsomedial", + "default": "Interpeduncular nucleus, dorsomedial", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPDM", + "default": "IPDM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344854", + "default": "607344854", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipdm", + "type": "object" + }, + "_Ipi": { + "description": "Model IPI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, intermediate", + "default": "Interpeduncular nucleus, intermediate", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPI", + "default": "IPI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344850", + "default": "607344850", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipi", + "type": "object" + }, + "_Ipl": { + "description": "Model IPL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, lateral", + "default": "Interpeduncular nucleus, lateral", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPL", + "default": "IPL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344846", + "default": "607344846", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipl", + "type": "object" + }, + "_Ipn": { + "description": "Model IPN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus", + "default": "Interpeduncular nucleus", + "title": "Name", + "type": "string" }, - "targeted_structure": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Injection targeted brain structure" + "acronym": { + "const": "IPN", + "default": "IPN", + "title": "Acronym", + "type": "string" }, - "injection_hemisphere": { - "anyOf": [ - { - "$ref": "#/$defs/Side" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Injection hemisphere" + "id": { + "const": "100", + "default": "100", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipn", + "type": "object" + }, + "_Ipr": { + "description": "Model IPR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "procedure_type": { - "const": "Nanoject injection", - "default": "Nanoject injection", - "enum": [ - "Nanoject injection" - ], - "title": "Procedure Type", + "name": { + "const": "Interpeduncular nucleus, rostral", + "default": "Interpeduncular nucleus, rostral", + "title": "Name", "type": "string" }, - "injection_volume": { - "description": "Injection volume, one value per location", - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "title": "Injection volume (nL)", - "type": "array" + "acronym": { + "const": "IPR", + "default": "IPR", + "title": "Acronym", + "type": "string" }, - "injection_volume_unit": { - "$ref": "#/$defs/VolumeUnit", - "default": "nanoliter", - "title": "Injection volume unit" + "id": { + "const": "607344834", + "default": "607344834", + "title": "Id", + "type": "string" } }, - "required": [ - "injection_materials", - "protocol_id", - "injection_coordinate_ml", - "injection_coordinate_ap", - "injection_coordinate_depth", - "injection_angle", - "injection_volume" - ], - "title": "NanojectInjection", + "title": "_Ipr", "type": "object" }, - "NeuropixelsBasestation": { - "additionalProperties": false, - "description": "PXI-based Neuropixels DAQ", + "_Iprl": { + "description": "Model IPRL", "properties": { - "device_type": { - "const": "Neuropixels basestation", - "default": "Neuropixels basestation", - "enum": [ - "Neuropixels basestation" - ], - "title": "Device Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, "name": { - "title": "Device name", + "const": "Interpeduncular nucleus, rostrolateral", + "default": "Interpeduncular nucleus, rostrolateral", + "title": "Name", "type": "string" }, - "serial_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Serial number" + "acronym": { + "const": "IPRL", + "default": "IPRL", + "title": "Acronym", + "type": "string" }, - "manufacturer": { - "default": { - "name": "Interuniversity Microelectronics Center", - "abbreviation": "IMEC", - "registry": { - "abbreviation": "ROR", - "name": "Research Organization Registry" - }, - "registry_identifier": "02kcbn207" - }, - "discriminator": { - "mapping": { - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - } - ], - "title": "Manufacturer" + "id": { + "const": "607344862", + "default": "607344862", + "title": "Id", + "type": "string" + } + }, + "title": "_Iprl", + "type": "object" + }, + "_Ir_Robot_Co": { + "description": "Model IR Robot Co", + "properties": { + "name": { + "const": "IR Robot Co", + "default": "IR Robot Co", + "title": "Name", + "type": "string" }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "abbreviation": { + "const": null, "default": null, - "title": "Model" + "title": "Abbreviation", + "type": "null" }, - "path_to_cad": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "registry": { "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" + "title": "Registry", + "type": "null" }, - "port_index": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "registry_identifier": { "default": null, - "title": "Port index" - }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Ir_Robot_Co", + "type": "object" + }, + "_Irn": { + "description": "Model IRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "name": { + "const": "Intermediate reticular nucleus", + "default": "Intermediate reticular nucleus", + "title": "Name", + "type": "string" }, - "data_interface": { - "const": "PXI", - "default": "PXI", - "enum": [ - "PXI" - ], - "title": "Data Interface", + "acronym": { + "const": "IRN", + "default": "IRN", + "title": "Acronym", "type": "string" }, - "computer_name": { - "title": "Name of computer controlling this DAQ", + "id": { + "const": "136", + "default": "136", + "title": "Id", + "type": "string" + } + }, + "title": "_Irn", + "type": "object" + }, + "_Isl_Products_International": { + "description": "Model ISL Products International", + "properties": { + "name": { + "const": "ISL Products International", + "default": "ISL Products International", + "title": "Name", "type": "string" }, - "channels": { - "default": [], - "items": { - "$ref": "#/$defs/DAQChannel" - }, - "title": "DAQ channels", - "type": "array" + "abbreviation": { + "const": "ISL", + "default": "ISL", + "title": "Abbreviation", + "type": "string" }, - "firmware_version": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "registry": { "default": null, - "title": "Firmware version" + "title": "Registry", + "type": "null" }, - "hardware_version": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "registry_identifier": { "default": null, - "title": "Hardware version" - }, - "basestation_firmware_version": { - "title": "Basestation firmware version", + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Isl_Products_International", + "type": "object" + }, + "_Isn": { + "description": "Model ISN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "bsc_firmware_version": { - "title": "Basestation connect board firmware", + "name": { + "const": "Inferior salivatory nucleus", + "default": "Inferior salivatory nucleus", + "title": "Name", "type": "string" }, - "slot": { - "title": "Slot number for this basestation", - "type": "integer" + "acronym": { + "const": "ISN", + "default": "ISN", + "title": "Acronym", + "type": "string" }, - "ports": { - "items": { - "$ref": "#/$defs/ProbePort" - }, - "title": "Basestation ports", - "type": "array" + "id": { + "const": "106", + "default": "106", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "computer_name", - "basestation_firmware_version", - "bsc_firmware_version", - "slot", - "ports" - ], - "title": "NeuropixelsBasestation", + "title": "_Isn", "type": "object" }, - "NonViralMaterial": { - "additionalProperties": false, - "description": "Description of a non-viral injection material", + "_Isocortex": { + "description": "Model Isocortex", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { + "const": "Isocortex", + "default": "Isocortex", "title": "Name", "type": "string" }, - "source": { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" + "acronym": { + "const": "Isocortex", + "default": "Isocortex", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "315", + "default": "315", + "title": "Id", + "type": "string" + } + }, + "title": "_Isocortex", + "type": "object" + }, + "_Item": { + "description": "Model Item", + "properties": { + "name": { + "const": "Item", + "default": "Item", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Item", + "type": "object" + }, + "_Iv": { + "description": "Model IV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Trochlear nucleus", + "default": "Trochlear nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IV", + "default": "IV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "115", + "default": "115", + "title": "Id", + "type": "string" + } + }, + "title": "_Iv", + "type": "object" + }, + "_Ivn": { + "description": "Model IVn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "trochlear nerve", + "default": "trochlear nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IVn", + "default": "IVn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "911", + "default": "911", + "title": "Id", + "type": "string" + } + }, + "title": "_Ivn", + "type": "object" + }, + "_Jackson_Laboratory": { + "description": "Model Jackson Laboratory", + "properties": { + "name": { + "const": "Jackson Laboratory", + "default": "Jackson Laboratory", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "JAX", + "default": "JAX", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Julabo" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Lg" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Leica" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Lumen_Dynamics" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Lifecanvas" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Mbf_Bioscience" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Mks_Newport" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "021sy4w91", + "default": "021sy4w91", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Jackson_Laboratory", + "type": "object" + }, + "_Janelia_Research_Campus": { + "description": "Model Janelia Research Campus", + "properties": { + "name": { + "const": "Janelia Research Campus", + "default": "Janelia Research Campus", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Janelia", + "default": "Janelia", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Mpi" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Meadowlark_Optics" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Mitutuyo" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Nresearch_Inc" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "013sk6x84", + "default": "013sk6x84", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Janelia_Research_Campus", + "type": "object" + }, + "_Julabo": { + "description": "Model Julabo", + "properties": { + "name": { + "const": "Julabo", + "default": "Julabo", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Julabo", + "type": "object" + }, + "_Kf": { + "description": "Model KF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Koelliker-Fuse subnucleus", + "default": "Koelliker-Fuse subnucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "KF", + "default": "KF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "123", + "default": "123", + "title": "Id", + "type": "string" + } + }, + "title": "_Kf", + "type": "object" + }, + "_Kowa": { + "description": "Model Kowa", + "properties": { + "name": { + "const": "Kowa", + "default": "Kowa", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_National_Instruments" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Navitar" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Neurophotometrics" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_New_Scale_Technologies" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_New_York_University" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03zbwg482", + "default": "03zbwg482", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Kowa", + "type": "object" + }, + "_La": { + "description": "Model LA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral amygdalar nucleus", + "default": "Lateral amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LA", + "default": "LA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "131", + "default": "131", + "title": "Id", + "type": "string" + } + }, + "title": "_La", + "type": "object" + }, + "_Lat": { + "description": "Model LAT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral group of the dorsal thalamus", + "default": "Lateral group of the dorsal thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LAT", + "default": "LAT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "138", + "default": "138", + "title": "Id", + "type": "string" + } + }, + "title": "_Lat", + "type": "object" + }, + "_Lateral_Head_Of_Triceps_Brachii": { + "description": "Model lateral head of triceps brachii", + "properties": { + "name": { + "const": "lateral head of triceps brachii", + "default": "lateral head of triceps brachii", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Nikon" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Olympus" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Open_Ephys_Production_Site" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Optotune" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Other" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Oxxius" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Prizmatix" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_36184", + "default": "EMAPA_36184", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Lateral_Head_Of_Triceps_Brachii", + "type": "object" + }, + "_Lav": { + "description": "Model LAV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral vestibular nucleus", + "default": "Lateral vestibular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LAV", + "default": "LAV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "209", + "default": "209", + "title": "Id", + "type": "string" + } + }, + "title": "_Lav", + "type": "object" + }, + "_Lc": { + "description": "Model LC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Locus ceruleus", + "default": "Locus ceruleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LC", + "default": "LC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "147", + "default": "147", + "title": "Id", + "type": "string" + } + }, + "title": "_Lc", + "type": "object" + }, + "_Ld": { + "description": "Model LD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral dorsal nucleus of thalamus", + "default": "Lateral dorsal nucleus of thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LD", + "default": "LD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "155", + "default": "155", + "title": "Id", + "type": "string" + } + }, + "title": "_Ld", + "type": "object" + }, + "_Ldt": { + "description": "Model LDT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Laterodorsal tegmental nucleus", + "default": "Laterodorsal tegmental nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LDT", + "default": "LDT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "162", + "default": "162", + "title": "Id", + "type": "string" + } + }, + "title": "_Ldt", + "type": "object" + }, + "_Leica": { + "description": "Model Leica", + "properties": { + "name": { + "const": "Leica", + "default": "Leica", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Leica", + "type": "object" + }, + "_Lfbs": { + "description": "Model lfbs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "lateral forebrain bundle system", + "default": "lateral forebrain bundle system", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "lfbs", + "default": "lfbs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "983", + "default": "983", + "title": "Id", + "type": "string" + } + }, + "title": "_Lfbs", + "type": "object" + }, + "_Lfbst": { + "description": "Model lfbst", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "thalamus related", + "default": "thalamus related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "lfbst", + "default": "lfbst", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "896", + "default": "896", + "title": "Id", + "type": "string" + } + }, + "title": "_Lfbst", + "type": "object" + }, + "_Lg": { + "description": "Model LG", + "properties": { + "name": { + "const": "LG", + "default": "LG", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Quantifi" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Raspberry_Pi" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Sicgen" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Schneider_Kreuznach" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Second_Order_Effects" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Semrock" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Sigma_Aldrich" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02b948n83", + "default": "02b948n83", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Lg", + "type": "object" + }, + "_Lgd": { + "description": "Model LGd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal part of the lateral geniculate complex", + "default": "Dorsal part of the lateral geniculate complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LGd", + "default": "LGd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "170", + "default": "170", + "title": "Id", + "type": "string" + } + }, + "title": "_Lgd", + "type": "object" + }, + "_Lgd_Co": { + "description": "Model LGd-co", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal part of the lateral geniculate complex, core", + "default": "Dorsal part of the lateral geniculate complex, core", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LGd-co", + "default": "LGd-co", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "496345668", + "default": "496345668", + "title": "Id", + "type": "string" + } + }, + "title": "_Lgd_Co", + "type": "object" + }, + "_Lgd_Ip": { + "description": "Model LGd-ip", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal part of the lateral geniculate complex, ipsilateral zone", + "default": "Dorsal part of the lateral geniculate complex, ipsilateral zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LGd-ip", + "default": "LGd-ip", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "496345672", + "default": "496345672", + "title": "Id", + "type": "string" + } + }, + "title": "_Lgd_Ip", + "type": "object" + }, + "_Lgd_Sh": { + "description": "Model LGd-sh", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal part of the lateral geniculate complex, shell", + "default": "Dorsal part of the lateral geniculate complex, shell", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LGd-sh", + "default": "LGd-sh", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "496345664", + "default": "496345664", + "title": "Id", + "type": "string" + } + }, + "title": "_Lgd_Sh", + "type": "object" + }, + "_Lgv": { + "description": "Model LGv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral part of the lateral geniculate complex", + "default": "Ventral part of the lateral geniculate complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LGv", + "default": "LGv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "178", + "default": "178", + "title": "Id", + "type": "string" + } + }, + "title": "_Lgv", + "type": "object" + }, + "_Lh": { + "description": "Model LH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral habenula", + "default": "Lateral habenula", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LH", + "default": "LH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "186", + "default": "186", + "title": "Id", + "type": "string" + } + }, + "title": "_Lh", + "type": "object" + }, + "_Lha": { + "description": "Model LHA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral hypothalamic area", + "default": "Lateral hypothalamic area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LHA", + "default": "LHA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "194", + "default": "194", + "title": "Id", + "type": "string" + } + }, + "title": "_Lha", + "type": "object" + }, + "_Lickety_Split": { + "description": "Model Lickety Split", + "properties": { + "whoami": { + "const": 1400, + "default": 1400, + "title": "Whoami", + "type": "integer" + }, + "name": { + "const": "Lickety Split", + "default": "Lickety Split", + "title": "Name", + "type": "string" + } + }, + "title": "_Lickety_Split", + "type": "object" + }, + "_Lifecanvas": { + "description": "Model LifeCanvas", + "properties": { + "name": { + "const": "LifeCanvas", + "default": "LifeCanvas", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Lifecanvas", + "type": "object" + }, + "_Lin": { + "description": "Model LIN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Linear nucleus of the medulla", + "default": "Linear nucleus of the medulla", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LIN", + "default": "LIN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "203", + "default": "203", + "title": "Id", + "type": "string" + } + }, + "title": "_Lin", + "type": "object" + }, + "_Ling": { + "description": "Model LING", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lingula (I)", + "default": "Lingula (I)", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LING", + "default": "LING", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "912", + "default": "912", + "title": "Id", + "type": "string" + } + }, + "title": "_Ling", + "type": "object" + }, + "_Ll": { + "description": "Model ll", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "lateral lemniscus", + "default": "lateral lemniscus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ll", + "default": "ll", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "658", + "default": "658", + "title": "Id", + "type": "string" + } + }, + "title": "_Ll", + "type": "object" + }, + "_Lm": { + "description": "Model LM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral mammillary nucleus", + "default": "Lateral mammillary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LM", + "default": "LM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "210", + "default": "210", + "title": "Id", + "type": "string" + } + }, + "title": "_Lm", + "type": "object" + }, + "_Load_Cells": { + "description": "Model Load Cells", + "properties": { + "whoami": { + "const": 1232, + "default": 1232, + "title": "Whoami", + "type": "integer" + }, + "name": { + "const": "Load Cells", + "default": "Load Cells", + "title": "Name", + "type": "string" + } + }, + "title": "_Load_Cells", + "type": "object" + }, + "_Long_Head_Of_Biceps_Brachii": { + "description": "Model long head of biceps brachii", + "properties": { + "name": { + "const": "long head of biceps brachii", + "default": "long head of biceps brachii", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Simons_Foundation" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Spinnaker" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Tamron" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Teledyne_Flir" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_The_Imaging_Source" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_25054", + "default": "EMAPA_25054", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Long_Head_Of_Biceps_Brachii", + "type": "object" + }, + "_Long_Head_Of_Triceps_Brachii": { + "description": "Model long head of triceps brachii", + "properties": { + "name": { + "const": "long head of triceps brachii", + "default": "long head of triceps brachii", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_The_Lee_Company" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Thorlabs" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Tymphany" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Vieworks" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Vortran" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Ams_Osram" + "$ref": "#/$defs/_Rrid" } ], - "title": "Source" + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_36185", + "default": "EMAPA_36185", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Long_Head_Of_Triceps_Brachii", + "type": "object" + }, + "_Lot": { + "description": "Model lot", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "lateral olfactory tract, body", + "default": "lateral olfactory tract, body", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "lot", + "default": "lot", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "665", + "default": "665", + "title": "Id", + "type": "string" + } + }, + "title": "_Lot", + "type": "object" + }, + "_Lotd": { + "description": "Model lotd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal limb", + "default": "dorsal limb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "lotd", + "default": "lotd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "538", + "default": "538", + "title": "Id", + "type": "string" + } + }, + "title": "_Lotd", + "type": "object" + }, + "_Lotg": { + "description": "Model lotg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "lateral olfactory tract, general", + "default": "lateral olfactory tract, general", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "lotg", + "default": "lotg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "21", + "default": "21", + "title": "Id", + "type": "string" + } + }, + "title": "_Lotg", + "type": "object" + }, + "_Lp": { + "description": "Model LP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral posterior nucleus of the thalamus", + "default": "Lateral posterior nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LP", + "default": "LP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "218", + "default": "218", + "title": "Id", + "type": "string" + } + }, + "title": "_Lp", + "type": "object" + }, + "_Lpo": { + "description": "Model LPO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral preoptic area", + "default": "Lateral preoptic area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LPO", + "default": "LPO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "226", + "default": "226", + "title": "Id", + "type": "string" + } + }, + "title": "_Lpo", + "type": "object" + }, + "_Lrn": { + "description": "Model LRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral reticular nucleus", + "default": "Lateral reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LRN", + "default": "LRN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "235", + "default": "235", + "title": "Id", + "type": "string" + } + }, + "title": "_Lrn", + "type": "object" + }, + "_Lrnm": { + "description": "Model LRNm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral reticular nucleus, magnocellular part", + "default": "Lateral reticular nucleus, magnocellular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LRNm", + "default": "LRNm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "955", + "default": "955", + "title": "Id", + "type": "string" + } + }, + "title": "_Lrnm", + "type": "object" + }, + "_Lrnp": { + "description": "Model LRNp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral reticular nucleus, parvicellular part", + "default": "Lateral reticular nucleus, parvicellular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LRNp", + "default": "LRNp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "963", + "default": "963", + "title": "Id", + "type": "string" + } + }, + "title": "_Lrnp", + "type": "object" + }, + "_Ls": { + "description": "Model LS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral septal nucleus", + "default": "Lateral septal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LS", + "default": "LS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "242", + "default": "242", + "title": "Id", + "type": "string" + } + }, + "title": "_Ls", + "type": "object" + }, + "_Lsc": { + "description": "Model LSc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral septal nucleus, caudal (caudodorsal) part", + "default": "Lateral septal nucleus, caudal (caudodorsal) part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LSc", + "default": "LSc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "250", + "default": "250", + "title": "Id", + "type": "string" + } + }, + "title": "_Lsc", + "type": "object" + }, + "_Lsr": { + "description": "Model LSr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "rrid": { - "anyOf": [ - { - "$ref": "#/$defs/PIDName" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Research Resource ID" + "name": { + "const": "Lateral septal nucleus, rostral (rostroventral) part", + "default": "Lateral septal nucleus, rostral (rostroventral) part", + "title": "Name", + "type": "string" }, - "lot_number": { - "title": "Lot number", + "acronym": { + "const": "LSr", + "default": "LSr", + "title": "Acronym", "type": "string" }, - "expiration_date": { - "anyOf": [ - { - "format": "date", - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lot expiration date" + "id": { + "const": "258", + "default": "258", + "title": "Id", + "type": "string" + } + }, + "title": "_Lsr", + "type": "object" + }, + "_Lsv": { + "description": "Model LSv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "material_type": { - "const": "Reagent", - "default": "Reagent", - "enum": [ - "Reagent" - ], - "title": "Injection material type", + "name": { + "const": "Lateral septal nucleus, ventral part", + "default": "Lateral septal nucleus, ventral part", + "title": "Name", "type": "string" }, - "concentration": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Must provide concentration unit", - "title": "Concentration" + "acronym": { + "const": "LSv", + "default": "LSv", + "title": "Acronym", + "type": "string" }, - "concentration_unit": { - "default": "mg/mL", - "title": "Concentration unit", + "id": { + "const": "266", + "default": "266", + "title": "Id", "type": "string" } }, - "required": [ - "name", - "source", - "lot_number" - ], - "title": "NonViralMaterial", + "title": "_Lsv", "type": "object" }, - "Objective": { - "additionalProperties": false, - "description": "Description of an objective device", + "_Lsx": { + "description": "Model LSX", "properties": { - "device_type": { - "const": "Objective", - "default": "Objective", - "enum": [ - "Objective" - ], - "title": "Device Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, "name": { - "title": "Device name", + "const": "Lateral septal complex", + "default": "Lateral septal complex", + "title": "Name", "type": "string" }, - "serial_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Serial number" + "acronym": { + "const": "LSX", + "default": "LSX", + "title": "Acronym", + "type": "string" }, - "manufacturer": { - "anyOf": [ - { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ] - }, - { - "type": "null" - } - ], - "default": null, - "title": "Manufacturer" + "id": { + "const": "275", + "default": "275", + "title": "Id", + "type": "string" + } + }, + "title": "_Lsx", + "type": "object" + }, + "_Lt": { + "description": "Model LT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "name": { + "const": "Lateral terminal nucleus of the accessory optic tract", + "default": "Lateral terminal nucleus of the accessory optic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LT", + "default": "LT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "66", + "default": "66", + "title": "Id", + "type": "string" + } + }, + "title": "_Lt", + "type": "object" + }, + "_Lumen_Dynamics": { + "description": "Model Lumen Dynamics", + "properties": { + "name": { + "const": "Lumen Dynamics", + "default": "Lumen Dynamics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, "default": null, - "title": "Model" + "title": "Abbreviation", + "type": "null" }, - "path_to_cad": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "registry": { "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" + "title": "Registry", + "type": "null" }, - "port_index": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "registry_identifier": { "default": null, - "title": "Port index" + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Lumen_Dynamics", + "type": "object" + }, + "_Lz": { + "description": "Model LZ", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "name": { + "const": "Hypothalamic lateral zone", + "default": "Hypothalamic lateral zone", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "LZ", + "default": "LZ", + "title": "Acronym", + "type": "string" }, - "numerical_aperture": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Numerical aperture (in air)" + "id": { + "const": "290", + "default": "290", + "title": "Id", + "type": "string" + } + }, + "title": "_Lz", + "type": "object" + }, + "_Ma": { + "description": "Model MA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "magnification": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Magnification" + "name": { + "const": "Magnocellular nucleus", + "default": "Magnocellular nucleus", + "title": "Name", + "type": "string" }, - "immersion": { - "$ref": "#/$defs/ImmersionMedium", - "title": "Immersion" + "acronym": { + "const": "MA", + "default": "MA", + "title": "Acronym", + "type": "string" }, - "objective_type": { - "anyOf": [ - { - "$ref": "#/$defs/ObjectiveType" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Objective type" + "id": { + "const": "298", + "default": "298", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "numerical_aperture", - "magnification", - "immersion" - ], - "title": "Objective", + "title": "_Ma", "type": "object" }, - "ObjectiveType": { - "description": "Objective type for Slap2", - "enum": [ - "Remote", - "Primary" - ], - "title": "ObjectiveType", - "type": "string" - }, - "Olfactometer": { - "additionalProperties": false, - "description": "Description of an olfactometer for odor stimuli", + "_Ma3": { + "description": "Model MA3", "properties": { - "device_type": { - "const": "Olfactometer", - "default": "Olfactometer", - "enum": [ - "Olfactometer" - ], - "title": "Device Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, "name": { - "title": "Device name", + "const": "Medial accesory oculomotor nucleus", + "default": "Medial accesory oculomotor nucleus", + "title": "Name", "type": "string" }, - "serial_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Serial number" + "acronym": { + "const": "MA3", + "default": "MA3", + "title": "Acronym", + "type": "string" }, - "manufacturer": { + "id": { + "const": "549009211", + "default": "549009211", + "title": "Id", + "type": "string" + } + }, + "title": "_Ma3", + "type": "object" + }, + "_Macaca_Mulatta": { + "description": "Model Macaca mulatta", + "properties": { + "name": { + "const": "Macaca mulatta", + "default": "Macaca mulatta", + "title": "Name", + "type": "string" + }, + "registry": { "default": { - "name": "Champalimaud Foundation", - "abbreviation": "Champalimaud", - "registry": { - "abbreviation": "ROR", - "name": "Research Organization Registry" - }, - "registry_identifier": "03g001n57" + "name": "National Center for Biotechnology Information", + "abbreviation": "NCBI" }, "discriminator": { "mapping": { - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "National Instruments": "#/$defs/_National_Instruments", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Other": "#/$defs/_Other", - "Second Order Effects": "#/$defs/_Second_Order_Effects" + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, - "propertyName": "name" + "propertyName": "abbreviation" }, "oneOf": [ { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_National_Instruments" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Open_Ephys_Production_Site" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Second_Order_Effects" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Other" - } - ], - "title": "Manufacturer" - }, - "model": { - "anyOf": [ - { - "type": "string" + "$ref": "#/$defs/_Orcid" }, { - "type": "null" - } - ], - "default": null, - "title": "Model" - }, - "path_to_cad": { - "anyOf": [ - { - "type": "string" + "$ref": "#/$defs/_Ror" }, { - "type": "null" + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" + "title": "Registry" }, - "port_index": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Port index" + "registry_identifier": { + "const": "NCBI:txid9544", + "default": "NCBI:txid9544", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Macaca_Mulatta", + "type": "object" + }, + "_Marn": { + "description": "Model MARN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "name": { + "const": "Magnocellular reticular nucleus", + "default": "Magnocellular reticular nucleus", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "MARN", + "default": "MARN", + "title": "Acronym", + "type": "string" }, - "data_interface": { - "$ref": "#/$defs/DataInterface", - "default": "USB", - "title": "Data interface" + "id": { + "const": "307", + "default": "307", + "title": "Id", + "type": "string" + } + }, + "title": "_Marn", + "type": "object" + }, + "_Mb": { + "description": "Model MB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "computer_name": { - "title": "Name of computer controlling this DAQ", + "name": { + "const": "Midbrain", + "default": "Midbrain", + "title": "Name", "type": "string" }, - "channels": { - "items": { - "$ref": "#/$defs/OlfactometerChannel" - }, - "title": "Channels", - "type": "array" + "acronym": { + "const": "MB", + "default": "MB", + "title": "Acronym", + "type": "string" }, - "firmware_version": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Firmware version" + "id": { + "const": "313", + "default": "313", + "title": "Id", + "type": "string" + } + }, + "title": "_Mb", + "type": "object" + }, + "_Mbf_Bioscience": { + "description": "Model MBF Bioscience", + "properties": { + "name": { + "const": "MBF Bioscience", + "default": "MBF Bioscience", + "title": "Name", + "type": "string" }, - "hardware_version": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Hardware version" + "abbreviation": { + "const": "MBF", + "default": "MBF", + "title": "Abbreviation", + "type": "string" }, - "harp_device_type": { + "registry": { "default": { - "whoami": 1140, - "name": "Olfactometer" + "name": "Research Organization Registry", + "abbreviation": "ROR" }, "discriminator": { "mapping": { - "Olfactometer": "#/$defs/_Olfactometer" + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, - "propertyName": "name" + "propertyName": "abbreviation" }, "oneOf": [ { - "$ref": "#/$defs/_Olfactometer" - } - ], - "title": "Harp Device Type" - }, - "core_version": { - "anyOf": [ + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, { - "type": "string" + "$ref": "#/$defs/_Emapa" }, { - "type": "null" - } - ], - "default": null, - "title": "Core version" - }, - "tag_version": { - "anyOf": [ + "$ref": "#/$defs/_Mgi" + }, { - "type": "string" + "$ref": "#/$defs/_Ncbi" }, { - "type": "null" + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "title": "Tag version" + "title": "Registry" }, - "is_clock_generator": { - "title": "Is Clock Generator", - "type": "boolean" + "registry_identifier": { + "const": "02zynam48", + "default": "02zynam48", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Mbf_Bioscience", + "type": "object" + }, + "_Mbmot": { + "description": "Model MBmot", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain, motor related", + "default": "Midbrain, motor related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MBmot", + "default": "MBmot", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "323", + "default": "323", + "title": "Id", + "type": "string" + } + }, + "title": "_Mbmot", + "type": "object" + }, + "_Mbo": { + "description": "Model MBO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Mammillary body", + "default": "Mammillary body", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MBO", + "default": "MBO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "331", + "default": "331", + "title": "Id", + "type": "string" + } + }, + "title": "_Mbo", + "type": "object" + }, + "_Mbsen": { + "description": "Model MBsen", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain, sensory related", + "default": "Midbrain, sensory related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MBsen", + "default": "MBsen", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "339", + "default": "339", + "title": "Id", + "type": "string" + } + }, + "title": "_Mbsen", + "type": "object" + }, + "_Mbsta": { + "description": "Model MBsta", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain, behavioral state related", + "default": "Midbrain, behavioral state related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MBsta", + "default": "MBsta", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "348", + "default": "348", + "title": "Id", + "type": "string" + } + }, + "title": "_Mbsta", + "type": "object" + }, + "_Mcp": { + "description": "Model mcp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "middle cerebellar peduncle", + "default": "middle cerebellar peduncle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mcp", + "default": "mcp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "78", + "default": "78", + "title": "Id", + "type": "string" + } + }, + "title": "_Mcp", + "type": "object" + }, + "_Mct": { + "description": "Model mct", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "medial corticohypothalamic tract", + "default": "medial corticohypothalamic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mct", + "default": "mct", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "428", + "default": "428", + "title": "Id", + "type": "string" + } + }, + "title": "_Mct", + "type": "object" + }, + "_Md": { + "description": "Model MD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Mediodorsal nucleus of thalamus", + "default": "Mediodorsal nucleus of thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MD", + "default": "MD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "362", + "default": "362", + "title": "Id", + "type": "string" + } + }, + "title": "_Md", + "type": "object" + }, + "_Mdrn": { + "description": "Model MDRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medullary reticular nucleus", + "default": "Medullary reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MDRN", + "default": "MDRN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "395", + "default": "395", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "computer_name", - "channels", - "is_clock_generator" - ], - "title": "Olfactometer", + "title": "_Mdrn", "type": "object" }, - "OlfactometerChannel": { - "additionalProperties": false, - "description": "description of a Olfactometer channel", + "_Mdrnd": { + "description": "Model MDRNd", "properties": { - "channel_index": { - "title": "Channel index", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "channel_type": { - "$ref": "#/$defs/ChannelType", - "default": "Odor", - "title": "Channel type" + "name": { + "const": "Medullary reticular nucleus, dorsal part", + "default": "Medullary reticular nucleus, dorsal part", + "title": "Name", + "type": "string" }, - "flow_capacity": { - "default": 100, - "enum": [ - 100, - 1000 - ], - "title": "Flow capacity", - "type": "integer" + "acronym": { + "const": "MDRNd", + "default": "MDRNd", + "title": "Acronym", + "type": "string" }, - "flow_unit": { - "default": "mL/min", - "title": "Flow unit", + "id": { + "const": "1098", + "default": "1098", + "title": "Id", "type": "string" } }, - "required": [ - "channel_index" - ], - "title": "OlfactometerChannel", + "title": "_Mdrnd", "type": "object" }, - "OlfactometerChannelConfig": { - "additionalProperties": false, - "description": "Description of olfactometer channel configurations", + "_Mdrnv": { + "description": "Model MDRNv", "properties": { - "channel_index": { - "title": "Channel index", - "type": "integer" - }, - "odorant": { - "title": "Odorant", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "odorant_dilution": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Odorant dilution" + "name": { + "const": "Medullary reticular nucleus, ventral part", + "default": "Medullary reticular nucleus, ventral part", + "title": "Name", + "type": "string" }, - "odorant_dilution_unit": { - "$ref": "#/$defs/ConcentrationUnit", - "default": "% v/v", - "title": "Dilution unit" + "acronym": { + "const": "MDRNv", + "default": "MDRNv", + "title": "Acronym", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "id": { + "const": "1107", + "default": "1107", + "title": "Id", + "type": "string" } }, - "required": [ - "channel_index", - "odorant", - "odorant_dilution" - ], - "title": "OlfactometerChannelConfig", + "title": "_Mdrnv", "type": "object" }, - "OlfactoryStimulation": { - "additionalProperties": false, - "description": "Description of a olfactory stimulus", + "_Me": { + "description": "Model ME", "properties": { - "stimulus_type": { - "const": "Olfactory Stimulation", - "default": "Olfactory Stimulation", - "enum": [ - "Olfactory Stimulation" - ], - "title": "Stimulus Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "stimulus_name": { - "title": "Stimulus name", + "name": { + "const": "Median eminence", + "default": "Median eminence", + "title": "Name", "type": "string" }, - "channels": { - "items": { - "$ref": "#/$defs/OlfactometerChannelConfig" - }, - "title": "Channels", - "type": "array" + "acronym": { + "const": "ME", + "default": "ME", + "title": "Acronym", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "id": { + "const": "10671", + "default": "10671", + "title": "Id", + "type": "string" } }, - "required": [ - "stimulus_name", - "channels" - ], - "title": "OlfactoryStimulation", + "title": "_Me", "type": "object" }, - "OligoProbe": { - "additionalProperties": false, - "description": "Description of an oligonucleotide probe", + "_Mea": { + "description": "Model MEA", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { + "const": "Medial amygdalar nucleus", + "default": "Medial amygdalar nucleus", "title": "Name", "type": "string" }, - "source": { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ], - "title": "Source" - }, - "rrid": { - "anyOf": [ - { - "$ref": "#/$defs/PIDName" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Research Resource ID" + "acronym": { + "const": "MEA", + "default": "MEA", + "title": "Acronym", + "type": "string" }, - "lot_number": { - "title": "Lot number", + "id": { + "const": "403", + "default": "403", + "title": "Id", + "type": "string" + } + }, + "title": "_Mea", + "type": "object" + }, + "_Meadowlark_Optics": { + "description": "Model Meadowlark Optics", + "properties": { + "name": { + "const": "Meadowlark Optics", + "default": "Meadowlark Optics", + "title": "Name", "type": "string" }, - "expiration_date": { - "anyOf": [ - { - "format": "date", - "type": "string" - }, - { - "type": "null" - } - ], + "abbreviation": { + "const": null, "default": null, - "title": "Lot expiration date" + "title": "Abbreviation", + "type": "null" }, - "species": { + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, "discriminator": { "mapping": { - "Callithrix jacchus": "#/$defs/_Callithrix_Jacchus", - "Homo sapiens": "#/$defs/_Homo_Sapiens", - "Macaca mulatta": "#/$defs/_Macaca_Mulatta", - "Mus musculus": "#/$defs/_Mus_Musculus", - "Rattus norvegicus": "#/$defs/_Rattus_Norvegicus" + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, - "propertyName": "name" + "propertyName": "abbreviation" }, "oneOf": [ { - "$ref": "#/$defs/_Callithrix_Jacchus" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Homo_Sapiens" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Macaca_Mulatta" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Mus_Musculus" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Rattus_Norvegicus" + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], - "title": "Species" - }, - "gene": { - "$ref": "#/$defs/PIDName", - "title": "Gene name, accession number, and registry" - }, - "probe_sequences": { - "items": { - "type": "string" - }, - "title": "Probe sequences", - "type": "array" + "title": "Registry" }, - "readout": { - "$ref": "#/$defs/Readout" + "registry_identifier": { + "const": "00n8qbq54", + "default": "00n8qbq54", + "title": "Registry Identifier", + "type": "string" } }, - "required": [ - "name", - "source", - "lot_number", - "species", - "gene", - "probe_sequences", - "readout" - ], - "title": "OligoProbe", + "title": "_Meadowlark_Optics", "type": "object" }, - "OpenEphysAcquisitionBoard": { - "additionalProperties": false, - "description": "Multichannel electrophysiology DAQ", + "_Med": { + "description": "Model MED", "properties": { - "device_type": { - "const": "Open Ephys acquisition board", - "default": "Open Ephys acquisition board", - "enum": [ - "Open Ephys acquisition board" - ], - "title": "Device Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, "name": { - "title": "Device name", + "const": "Medial group of the dorsal thalamus", + "default": "Medial group of the dorsal thalamus", + "title": "Name", "type": "string" }, - "serial_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Serial number" + "acronym": { + "const": "MED", + "default": "MED", + "title": "Acronym", + "type": "string" }, - "manufacturer": { + "id": { + "const": "444", + "default": "444", + "title": "Id", + "type": "string" + } + }, + "title": "_Med", + "type": "object" + }, + "_Medial_Head_Of_Triceps_Brachii": { + "description": "Model medial head of triceps brachii", + "properties": { + "name": { + "const": "medial head of triceps brachii", + "default": "medial head of triceps brachii", + "title": "Name", + "type": "string" + }, + "registry": { "default": { - "name": "Open Ephys Production Site", - "abbreviation": "OEPS", - "registry": { - "abbreviation": "ROR", - "name": "Research Organization Registry" - }, - "registry_identifier": "007rkz355" + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" }, "discriminator": { "mapping": { - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "National Instruments": "#/$defs/_National_Instruments", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Other": "#/$defs/_Other", - "Second Order Effects": "#/$defs/_Second_Order_Effects" + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, - "propertyName": "name" + "propertyName": "abbreviation" }, "oneOf": [ { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Champalimaud_Foundation" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_National_Instruments" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Open_Ephys_Production_Site" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Second_Order_Effects" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Other" + "$ref": "#/$defs/_Rrid" } ], - "title": "Manufacturer" + "title": "Registry" }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Model" + "registry_identifier": { + "const": "EMAPA_36186", + "default": "EMAPA_36186", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Medial_Head_Of_Triceps_Brachii", + "type": "object" + }, + "_Mepo": { + "description": "Model MEPO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "path_to_cad": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" + "name": { + "const": "Median preoptic nucleus", + "default": "Median preoptic nucleus", + "title": "Name", + "type": "string" }, - "port_index": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Port index" + "acronym": { + "const": "MEPO", + "default": "MEPO", + "title": "Acronym", + "type": "string" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "id": { + "const": "452", + "default": "452", + "title": "Id", + "type": "string" + } + }, + "title": "_Mepo", + "type": "object" + }, + "_Mesospim": { + "description": "Model mesoSPIM", + "properties": { + "name": { + "const": "MesoSPIM platform", + "default": "MesoSPIM platform", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "abbreviation": { + "const": "mesoSPIM", + "default": "mesoSPIM", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Mesospim", + "type": "object" + }, + "_Mev": { + "description": "Model MEV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "data_interface": { - "const": "USB", - "default": "USB", - "enum": [ - "USB" - ], - "title": "Data Interface", + "name": { + "const": "Midbrain trigeminal nucleus", + "default": "Midbrain trigeminal nucleus", + "title": "Name", "type": "string" }, - "computer_name": { - "title": "Name of computer controlling this DAQ", + "acronym": { + "const": "MEV", + "default": "MEV", + "title": "Acronym", "type": "string" }, - "channels": { - "default": [], - "items": { - "$ref": "#/$defs/DAQChannel" - }, - "title": "DAQ channels", - "type": "array" + "id": { + "const": "460", + "default": "460", + "title": "Id", + "type": "string" + } + }, + "title": "_Mev", + "type": "object" + }, + "_Mez": { + "description": "Model MEZ", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "firmware_version": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Firmware version" + "name": { + "const": "Hypothalamic medial zone", + "default": "Hypothalamic medial zone", + "title": "Name", + "type": "string" }, - "hardware_version": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Hardware version" + "acronym": { + "const": "MEZ", + "default": "MEZ", + "title": "Acronym", + "type": "string" }, - "ports": { - "items": { - "$ref": "#/$defs/ProbePort" - }, - "title": "Acquisition board ports", - "type": "array" + "id": { + "const": "467", + "default": "467", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "computer_name", - "ports" - ], - "title": "OpenEphysAcquisitionBoard", + "title": "_Mez", "type": "object" }, - "OphysProbe": { - "additionalProperties": false, - "description": "Description of an implanted ophys probe", + "_Mfb": { + "description": "Model mfb", "properties": { - "ophys_probe": { - "$ref": "#/$defs/FiberProbe", - "title": "Fiber probe" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "targeted_structure": { - "title": "Targeted structure", + "name": { + "const": "medial forebrain bundle", + "default": "medial forebrain bundle", + "title": "Name", "type": "string" }, - "stereotactic_coordinate_ap": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Stereotactic coordinate A/P (mm)" + "acronym": { + "const": "mfb", + "default": "mfb", + "title": "Acronym", + "type": "string" }, - "stereotactic_coordinate_ml": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Stereotactic coordinate M/L (mm)" + "id": { + "const": "54", + "default": "54", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfb", + "type": "object" + }, + "_Mfbc": { + "description": "Model mfbc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "stereotactic_coordinate_dv": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Stereotactic coordinate D/V (mm)" + "name": { + "const": "cerebrum related", + "default": "cerebrum related", + "title": "Name", + "type": "string" }, - "stereotactic_coordinate_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Sterotactic coordinate unit" + "acronym": { + "const": "mfbc", + "default": "mfbc", + "title": "Acronym", + "type": "string" }, - "stereotactic_coordinate_reference": { - "anyOf": [ - { - "$ref": "#/$defs/CoordinateReferenceLocation" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Stereotactic coordinate reference" + "id": { + "const": "768", + "default": "768", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfbc", + "type": "object" + }, + "_Mfbs": { + "description": "Model mfbs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "medial forebrain bundle system", + "default": "medial forebrain bundle system", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mfbs", + "default": "mfbs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "991", + "default": "991", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfbs", + "type": "object" + }, + "_Mfbse": { + "description": "Model mfbse", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "epithalamus related", + "default": "epithalamus related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mfbse", + "default": "mfbse", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1083", + "default": "1083", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfbse", + "type": "object" + }, + "_Mfbsma": { + "description": "Model mfbsma", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "mammillary related", + "default": "mammillary related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mfbsma", + "default": "mfbsma", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "46", + "default": "46", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfbsma", + "type": "object" + }, + "_Mfsbshy": { + "description": "Model mfsbshy", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "hypothalamus related", + "default": "hypothalamus related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mfsbshy", + "default": "mfsbshy", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "824", + "default": "824", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfsbshy", + "type": "object" + }, + "_Mg": { + "description": "Model MG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial geniculate complex", + "default": "Medial geniculate complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MG", + "default": "MG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "475", + "default": "475", + "title": "Id", + "type": "string" + } + }, + "title": "_Mg", + "type": "object" + }, + "_Mgd": { + "description": "Model MGd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial geniculate complex, dorsal part", + "default": "Medial geniculate complex, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MGd", + "default": "MGd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1072", + "default": "1072", + "title": "Id", + "type": "string" + } + }, + "title": "_Mgd", + "type": "object" + }, + "_Mgi": { + "additionalProperties": false, + "description": "Model MGI", + "properties": { + "name": { + "const": "Mouse Genome Informatics", + "default": "Mouse Genome Informatics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MGI", + "default": "MGI", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Mgi", + "type": "object" + }, + "_Mgm": { + "description": "Model MGm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "bregma_to_lambda_distance": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Distance between bregman and lambda", - "title": "Bregma to lambda (mm)" + "name": { + "const": "Medial geniculate complex, medial part", + "default": "Medial geniculate complex, medial part", + "title": "Name", + "type": "string" }, - "bregma_to_lambda_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Bregma to lambda unit" + "acronym": { + "const": "MGm", + "default": "MGm", + "title": "Acronym", + "type": "string" }, - "angle": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Angle (deg)" + "id": { + "const": "1088", + "default": "1088", + "title": "Id", + "type": "string" + } + }, + "title": "_Mgm", + "type": "object" + }, + "_Mgv": { + "description": "Model MGv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "angle_unit": { - "$ref": "#/$defs/AngleUnit", - "default": "degrees", - "title": "Angle unit" + "name": { + "const": "Medial geniculate complex, ventral part", + "default": "Medial geniculate complex, ventral part", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "MGv", + "default": "MGv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1079", + "default": "1079", + "title": "Id", + "type": "string" } }, - "required": [ - "ophys_probe", - "targeted_structure", - "stereotactic_coordinate_ap", - "stereotactic_coordinate_ml", - "stereotactic_coordinate_dv", - "angle" - ], - "title": "OphysProbe", + "title": "_Mgv", "type": "object" }, - "OpticalTable": { - "additionalProperties": false, - "description": "Description of Optical Table", + "_Mh": { + "description": "Model MH", "properties": { - "device_type": { - "const": "Optical table", - "default": "Optical table", - "enum": [ - "Optical table" - ], - "title": "Device Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, "name": { - "title": "Device name", + "const": "Medial habenula", + "default": "Medial habenula", + "title": "Name", "type": "string" }, - "serial_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Serial number" + "acronym": { + "const": "MH", + "default": "MH", + "title": "Acronym", + "type": "string" }, - "manufacturer": { - "anyOf": [ - { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ] + "id": { + "const": "483", + "default": "483", + "title": "Id", + "type": "string" + } + }, + "title": "_Mh", + "type": "object" + }, + "_Michael_J_Fox_Foundation_For_Parkinson_S_Research": { + "description": "Model Michael J. Fox Foundation for Parkinson's Research", + "properties": { + "name": { + "const": "Michael J. Fox Foundation for Parkinson's Research", + "default": "Michael J. Fox Foundation for Parkinson's Research", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MJFF", + "default": "MJFF", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "type": "null" - } - ], - "default": null, - "title": "Manufacturer" - }, - "model": { - "anyOf": [ + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, { - "type": "string" + "$ref": "#/$defs/_Emapa" }, { - "type": "null" - } - ], - "default": null, - "title": "Model" - }, - "path_to_cad": { - "anyOf": [ + "$ref": "#/$defs/_Mgi" + }, { - "type": "string" + "$ref": "#/$defs/_Ncbi" }, { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" - }, - "port_index": { - "anyOf": [ + "$ref": "#/$defs/_Orcid" + }, { - "type": "string" + "$ref": "#/$defs/_Ror" }, { - "type": "null" + "$ref": "#/$defs/_Rrid" } ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03arq3225", + "default": "03arq3225", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "type": "object" + }, + "_Midwest_Optical_Systems_Inc_": { + "description": "Model Midwest Optical Systems, Inc.", + "properties": { + "name": { + "const": "Midwest Optical Systems, Inc.", + "default": "Midwest Optical Systems, Inc.", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MidOpt", + "default": "MidOpt", + "title": "Abbreviation", + "type": "string" + }, + "registry": { "default": null, - "title": "Port index" + "title": "Registry", + "type": "null" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Midwest_Optical_Systems_Inc_", + "type": "object" + }, + "_Mitutuyo": { + "description": "Model Mitutuyo", + "properties": { + "name": { + "const": "Mitutuyo", + "default": "Mitutuyo", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "abbreviation": { + "const": null, "default": null, - "title": "Notes" + "title": "Abbreviation", + "type": "null" }, - "length": { - "anyOf": [ - { - "minimum": 0.0, - "type": "number" + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Mitutuyo", + "type": "object" + }, + "_Mks_Newport": { + "description": "Model MKS Newport", + "properties": { + "name": { + "const": "MKS Newport", + "default": "MKS Newport", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "type": "string" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "type": "null" - } - ], - "default": null, - "title": "Length (inches)" - }, - "width": { - "anyOf": [ + "$ref": "#/$defs/_Emapa" + }, { - "minimum": 0.0, - "type": "number" + "$ref": "#/$defs/_Mgi" }, { - "type": "string" + "$ref": "#/$defs/_Ncbi" }, { - "type": "null" - } - ], - "default": null, - "title": "Width (inches)" - }, - "table_size_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "inch", - "title": "Table size unit" - }, - "vibration_control": { - "anyOf": [ + "$ref": "#/$defs/_Orcid" + }, { - "type": "boolean" + "$ref": "#/$defs/_Ror" }, { - "type": "null" + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "title": "Vibration control" + "title": "Registry" + }, + "registry_identifier": { + "const": "00k17f049", + "default": "00k17f049", + "title": "Registry Identifier", + "type": "string" } }, - "required": [ - "name" - ], - "title": "OpticalTable", + "title": "_Mks_Newport", "type": "object" }, - "OptoStimulation": { - "additionalProperties": false, - "description": "Description of opto stimulation parameters", + "_Ml": { + "description": "Model ml", "properties": { - "stimulus_type": { - "const": "Opto Stimulation", - "default": "Opto Stimulation", - "enum": [ - "Opto Stimulation" - ], - "title": "Stimulus Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "stimulus_name": { - "title": "Stimulus name", + "name": { + "const": "medial lemniscus", + "default": "medial lemniscus", + "title": "Name", "type": "string" }, - "pulse_shape": { - "$ref": "#/$defs/PulseShape", - "title": "Pulse shape" + "acronym": { + "const": "ml", + "default": "ml", + "title": "Acronym", + "type": "string" }, - "pulse_frequency": { - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "title": "Pulse frequency (Hz)", - "type": "array" + "id": { + "const": "697", + "default": "697", + "title": "Id", + "type": "string" + } + }, + "title": "_Ml", + "type": "object" + }, + "_Mlf": { + "description": "Model mlf", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "pulse_frequency_unit": { - "$ref": "#/$defs/FrequencyUnit", - "default": "hertz", - "title": "Pulse frequency unit" + "name": { + "const": "medial longitudinal fascicle", + "default": "medial longitudinal fascicle", + "title": "Name", + "type": "string" }, - "number_pulse_trains": { - "items": { - "type": "integer" - }, - "title": "Number of pulse trains", - "type": "array" + "acronym": { + "const": "mlf", + "default": "mlf", + "title": "Acronym", + "type": "string" }, - "pulse_width": { - "items": { - "type": "integer" - }, - "title": "Pulse width (ms)", - "type": "array" + "id": { + "const": "62", + "default": "62", + "title": "Id", + "type": "string" + } + }, + "title": "_Mlf", + "type": "object" + }, + "_Mm": { + "description": "Model MM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "pulse_width_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "millisecond", - "title": "Pulse width unit" + "name": { + "const": "Medial mammillary nucleus", + "default": "Medial mammillary nucleus", + "title": "Name", + "type": "string" }, - "pulse_train_duration": { - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "title": "Pulse train duration (s)", - "type": "array" + "acronym": { + "const": "MM", + "default": "MM", + "title": "Acronym", + "type": "string" }, - "pulse_train_duration_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "second", - "title": "Pulse train duration unit" + "id": { + "const": "491", + "default": "491", + "title": "Id", + "type": "string" + } + }, + "title": "_Mm", + "type": "object" + }, + "_Mmd": { + "description": "Model MMd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "fixed_pulse_train_interval": { - "title": "Fixed pulse train interval", - "type": "boolean" + "name": { + "const": "Medial mammillary nucleus, dorsal part", + "default": "Medial mammillary nucleus, dorsal part", + "title": "Name", + "type": "string" }, - "pulse_train_interval": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Time between pulse trains", - "title": "Pulse train interval (s)" + "acronym": { + "const": "MMd", + "default": "MMd", + "title": "Acronym", + "type": "string" }, - "pulse_train_interval_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "second", - "title": "Pulse train interval unit" + "id": { + "const": "606826659", + "default": "606826659", + "title": "Id", + "type": "string" + } + }, + "title": "_Mmd", + "type": "object" + }, + "_Mml": { + "description": "Model MMl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "baseline_duration": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "description": "Duration of baseline recording prior to first pulse train", - "title": "Baseline duration (s)" + "name": { + "const": "Medial mammillary nucleus, lateral part", + "default": "Medial mammillary nucleus, lateral part", + "title": "Name", + "type": "string" }, - "baseline_duration_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "second", - "title": "Baseline duration unit" + "acronym": { + "const": "MMl", + "default": "MMl", + "title": "Acronym", + "type": "string" }, - "other_parameters": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Other parameters" + "id": { + "const": "606826647", + "default": "606826647", + "title": "Id", + "type": "string" + } + }, + "title": "_Mml", + "type": "object" + }, + "_Mmm": { + "description": "Model MMm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "name": { + "const": "Medial mammillary nucleus, medial part", + "default": "Medial mammillary nucleus, medial part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MMm", + "default": "MMm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "606826651", + "default": "606826651", + "title": "Id", + "type": "string" } }, - "required": [ - "stimulus_name", - "pulse_shape", - "pulse_frequency", - "number_pulse_trains", - "pulse_width", - "pulse_train_duration", - "fixed_pulse_train_interval", - "baseline_duration" - ], - "title": "OptoStimulation", + "title": "_Mmm", "type": "object" }, - "Origin": { - "description": "Coordinate reference origin point", - "enum": [ - "Bregma", - "Lambda", - "Other (see Notes)" - ], - "title": "Origin", - "type": "string" + "_Mmme": { + "description": "Model MMme", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial mammillary nucleus, median part", + "default": "Medial mammillary nucleus, median part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MMme", + "default": "MMme", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "732", + "default": "732", + "title": "Id", + "type": "string" + } + }, + "title": "_Mmme", + "type": "object" + }, + "_Mmp": { + "description": "Model MMp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial mammillary nucleus, posterior part", + "default": "Medial mammillary nucleus, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MMp", + "default": "MMp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "606826655", + "default": "606826655", + "title": "Id", + "type": "string" + } + }, + "title": "_Mmp", + "type": "object" + }, + "_Mo": { + "description": "Model MO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Somatomotor areas", + "default": "Somatomotor areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MO", + "default": "MO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "500", + "default": "500", + "title": "Id", + "type": "string" + } + }, + "title": "_Mo", + "type": "object" + }, + "_Mob": { + "description": "Model MOB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Main olfactory bulb", + "default": "Main olfactory bulb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOB", + "default": "MOB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "507", + "default": "507", + "title": "Id", + "type": "string" + } + }, + "title": "_Mob", + "type": "object" + }, + "_Mop": { + "description": "Model MOp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary motor area", + "default": "Primary motor area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOp", + "default": "MOp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "985", + "default": "985", + "title": "Id", + "type": "string" + } + }, + "title": "_Mop", + "type": "object" + }, + "_Mop1": { + "description": "Model MOp1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary motor area, Layer 1", + "default": "Primary motor area, Layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOp1", + "default": "MOp1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "320", + "default": "320", + "title": "Id", + "type": "string" + } + }, + "title": "_Mop1", + "type": "object" + }, + "_Mop2_3": { + "description": "Model MOp2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary motor area, Layer 2/3", + "default": "Primary motor area, Layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOp2/3", + "default": "MOp2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "943", + "default": "943", + "title": "Id", + "type": "string" + } + }, + "title": "_Mop2_3", + "type": "object" + }, + "_Mop5": { + "description": "Model MOp5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary motor area, Layer 5", + "default": "Primary motor area, Layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOp5", + "default": "MOp5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "648", + "default": "648", + "title": "Id", + "type": "string" + } + }, + "title": "_Mop5", + "type": "object" }, - "OtherSubjectProcedure": { - "additionalProperties": false, - "description": "Description of non-surgical procedure performed on a subject", + "_Mop6A": { + "description": "Model MOp6a", "properties": { - "procedure_type": { - "const": "Other Subject Procedure", - "default": "Other Subject Procedure", - "enum": [ - "Other Subject Procedure" - ], - "title": "Procedure Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "protocol_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "DOI for protocols.io", - "title": "Protocol ID" + "name": { + "const": "Primary motor area, Layer 6a", + "default": "Primary motor area, Layer 6a", + "title": "Name", + "type": "string" }, - "description": { - "title": "Description", + "acronym": { + "const": "MOp6a", + "default": "MOp6a", + "title": "Acronym", "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "id": { + "const": "844", + "default": "844", + "title": "Id", + "type": "string" } }, - "required": [ - "description" - ], - "title": "OtherSubjectProcedure", + "title": "_Mop6A", "type": "object" }, - "PIDName": { - "additionalProperties": false, - "description": "Model for associate a name with a persistent identifier (PID),\nthe registry for that PID, and abbreviation for that registry", + "_Mop6B": { + "description": "Model MOp6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { + "const": "Primary motor area, Layer 6b", + "default": "Primary motor area, Layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Abbreviation" + "acronym": { + "const": "MOp6b", + "default": "MOp6b", + "title": "Acronym", + "type": "string" }, - "registry": { - "anyOf": [ - { - "$ref": "#/$defs/BaseName" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Registry" + "id": { + "const": "882", + "default": "882", + "title": "Id", + "type": "string" + } + }, + "title": "_Mop6B", + "type": "object" + }, + "_Mos": { + "description": "Model MOs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Registry identifier" + "name": { + "const": "Secondary motor area", + "default": "Secondary motor area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOs", + "default": "MOs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "993", + "default": "993", + "title": "Id", + "type": "string" } }, - "required": [ - "name" - ], - "title": "PIDName", + "title": "_Mos", "type": "object" }, - "Patch": { - "additionalProperties": false, - "description": "Description of a patch cord", + "_Mos1": { + "description": "Model MOs1", "properties": { - "device_type": { - "const": "Patch", - "default": "Patch", - "enum": [ - "Patch" - ], - "title": "Device Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, "name": { - "title": "Device name", + "const": "Secondary motor area, layer 1", + "default": "Secondary motor area, layer 1", + "title": "Name", "type": "string" }, - "serial_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Serial number" + "acronym": { + "const": "MOs1", + "default": "MOs1", + "title": "Acronym", + "type": "string" }, - "manufacturer": { - "anyOf": [ - { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ] - }, - { - "type": "null" - } - ], - "default": null, - "title": "Manufacturer" + "id": { + "const": "656", + "default": "656", + "title": "Id", + "type": "string" + } + }, + "title": "_Mos1", + "type": "object" + }, + "_Mos2_3": { + "description": "Model MOs2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Secondary motor area, layer 2/3", + "default": "Secondary motor area, layer 2/3", + "title": "Name", + "type": "string" }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Model" + "acronym": { + "const": "MOs2/3", + "default": "MOs2/3", + "title": "Acronym", + "type": "string" }, - "path_to_cad": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "id": { + "const": "962", + "default": "962", + "title": "Id", + "type": "string" + } + }, + "title": "_Mos2_3", + "type": "object" + }, + "_Mos5": { + "description": "Model MOs5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Secondary motor area, layer 5", + "default": "Secondary motor area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOs5", + "default": "MOs5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "767", + "default": "767", + "title": "Id", + "type": "string" + } + }, + "title": "_Mos5", + "type": "object" + }, + "_Mos6A": { + "description": "Model MOs6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Secondary motor area, layer 6a", + "default": "Secondary motor area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOs6a", + "default": "MOs6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1021", + "default": "1021", + "title": "Id", + "type": "string" + } + }, + "title": "_Mos6A", + "type": "object" + }, + "_Mos6B": { + "description": "Model MOs6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Secondary motor area, layer 6b", + "default": "Secondary motor area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOs6b", + "default": "MOs6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1085", + "default": "1085", + "title": "Id", + "type": "string" + } + }, + "title": "_Mos6B", + "type": "object" + }, + "_Motor_Observatory": { + "description": "Model motor-observatory", + "properties": { + "name": { + "const": "Motor observatory platform", + "default": "Motor observatory platform", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "motor-observatory", + "default": "motor-observatory", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Motor_Observatory", + "type": "object" + }, + "_Mov": { + "description": "Model moV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "motor root of the trigeminal nerve", + "default": "motor root of the trigeminal nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "moV", + "default": "moV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "93", + "default": "93", + "title": "Id", + "type": "string" + } + }, + "title": "_Mov", + "type": "object" + }, + "_Mp": { + "description": "Model mp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "mammillary peduncle", + "default": "mammillary peduncle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mp", + "default": "mp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "673", + "default": "673", + "title": "Id", + "type": "string" + } + }, + "title": "_Mp", + "type": "object" + }, + "_Mpi": { + "description": "Model MPI", + "properties": { + "name": { + "const": "MPI", + "default": "MPI", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MPI", + "default": "MPI", + "title": "Abbreviation", + "type": "string" + }, + "registry": { "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" + "title": "Registry", + "type": "null" }, - "port_index": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "registry_identifier": { "default": null, - "title": "Port index" + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Mpi", + "type": "object" + }, + "_Mpn": { + "description": "Model MPN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "name": { + "const": "Medial preoptic nucleus", + "default": "Medial preoptic nucleus", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "MPN", + "default": "MPN", + "title": "Acronym", + "type": "string" }, - "core_diameter": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Core diameter (um)" + "id": { + "const": "515", + "default": "515", + "title": "Id", + "type": "string" + } + }, + "title": "_Mpn", + "type": "object" + }, + "_Mpo": { + "description": "Model MPO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "numerical_aperture": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Numerical aperture" + "name": { + "const": "Medial preoptic area", + "default": "Medial preoptic area", + "title": "Name", + "type": "string" }, - "photobleaching_date": { - "anyOf": [ - { - "format": "date", - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Photobleaching date" + "acronym": { + "const": "MPO", + "default": "MPO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "523", + "default": "523", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "core_diameter", - "numerical_aperture" - ], - "title": "Patch", + "title": "_Mpo", "type": "object" }, - "Perfusion": { - "additionalProperties": false, - "description": "Description of a perfusion procedure that creates a specimen", + "_Mpt": { + "description": "Model MPT", "properties": { - "procedure_type": { - "const": "Perfusion", - "default": "Perfusion", - "enum": [ - "Perfusion" - ], - "title": "Procedure Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", + "name": { + "const": "Medial pretectal area", + "default": "Medial pretectal area", + "title": "Name", "type": "string" }, - "output_specimen_ids": { - "description": "IDs of specimens resulting from this procedure.", - "items": { - "type": "string" - }, - "title": "Specimen ID", - "type": "array", - "uniqueItems": true + "acronym": { + "const": "MPT", + "default": "MPT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "531", + "default": "531", + "title": "Id", + "type": "string" } }, - "required": [ - "protocol_id", - "output_specimen_ids" - ], - "title": "Perfusion", + "title": "_Mpt", "type": "object" }, - "PhotoStimulation": { - "additionalProperties": false, - "description": "Description of a photostimulation session", + "_Mrn": { + "description": "Model MRN", "properties": { - "stimulus_type": { - "const": "Photo Stimulation", - "default": "Photo Stimulation", - "enum": [ - "Photo Stimulation" - ], - "title": "Stimulus Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "stimulus_name": { - "title": "Stimulus name", + "name": { + "const": "Midbrain reticular nucleus", + "default": "Midbrain reticular nucleus", + "title": "Name", "type": "string" }, - "number_groups": { - "title": "Number of groups", - "type": "integer" + "acronym": { + "const": "MRN", + "default": "MRN", + "title": "Acronym", + "type": "string" }, - "groups": { - "items": { - "$ref": "#/$defs/PhotoStimulationGroup" - }, - "title": "Groups", - "type": "array" + "id": { + "const": "128", + "default": "128", + "title": "Id", + "type": "string" + } + }, + "title": "_Mrn", + "type": "object" + }, + "_Ms": { + "description": "Model MS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "inter_trial_interval": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Inter trial interval (s)" + "name": { + "const": "Medial septal nucleus", + "default": "Medial septal nucleus", + "title": "Name", + "type": "string" }, - "inter_trial_interval_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "second", - "title": "Inter trial interval unit" + "acronym": { + "const": "MS", + "default": "MS", + "title": "Acronym", + "type": "string" }, - "other_parameters": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Other parameters" + "id": { + "const": "564", + "default": "564", + "title": "Id", + "type": "string" + } + }, + "title": "_Ms", + "type": "object" + }, + "_Msc": { + "description": "Model MSC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "name": { + "const": "Medial septal complex", + "default": "Medial septal complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MSC", + "default": "MSC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "904", + "default": "904", + "title": "Id", + "type": "string" } }, - "required": [ - "stimulus_name", - "number_groups", - "groups", - "inter_trial_interval" - ], - "title": "PhotoStimulation", + "title": "_Msc", "type": "object" }, - "PhotoStimulationGroup": { - "additionalProperties": false, - "description": "Description of a photostimulation group", + "_Mt": { + "description": "Model MT", "properties": { - "group_index": { - "title": "Group index", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "number_of_neurons": { - "title": "Number of neurons", - "type": "integer" + "name": { + "const": "Medial terminal nucleus of the accessory optic tract", + "default": "Medial terminal nucleus of the accessory optic tract", + "title": "Name", + "type": "string" }, - "stimulation_laser_power": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Stimulation laser power (mW)" + "acronym": { + "const": "MT", + "default": "MT", + "title": "Acronym", + "type": "string" }, - "stimulation_laser_power_unit": { - "$ref": "#/$defs/PowerUnit", - "default": "milliwatt", - "title": "Stimulation laser power unit" + "id": { + "const": "58", + "default": "58", + "title": "Id", + "type": "string" + } + }, + "title": "_Mt", + "type": "object" + }, + "_Mtg": { + "description": "Model mtg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "number_trials": { - "title": "Number of trials", - "type": "integer" + "name": { + "const": "mammillotegmental tract", + "default": "mammillotegmental tract", + "title": "Name", + "type": "string" }, - "number_spirals": { - "title": "Number of spirals", - "type": "integer" + "acronym": { + "const": "mtg", + "default": "mtg", + "title": "Acronym", + "type": "string" }, - "spiral_duration": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Spiral duration (s)" + "id": { + "const": "681", + "default": "681", + "title": "Id", + "type": "string" + } + }, + "title": "_Mtg", + "type": "object" + }, + "_Mtn": { + "description": "Model MTN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "spiral_duration_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "second", - "title": "Spiral duration unit" + "name": { + "const": "Midline group of the dorsal thalamus", + "default": "Midline group of the dorsal thalamus", + "title": "Name", + "type": "string" }, - "inter_spiral_interval": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Inter trial interval (s)" + "acronym": { + "const": "MTN", + "default": "MTN", + "title": "Acronym", + "type": "string" }, - "inter_spiral_interval_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "second", - "title": "Inter trial interval unit" + "id": { + "const": "571", + "default": "571", + "title": "Id", + "type": "string" + } + }, + "title": "_Mtn", + "type": "object" + }, + "_Mtt": { + "description": "Model mtt", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "other_parameters": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Other parameters" + "name": { + "const": "mammillothalamic tract", + "default": "mammillothalamic tract", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ + "acronym": { + "const": "mtt", + "default": "mtt", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "690", + "default": "690", + "title": "Id", + "type": "string" + } + }, + "title": "_Mtt", + "type": "object" + }, + "_Multiplane_Ophys": { + "description": "Model multiplane-ophys", + "properties": { + "name": { + "const": "Multiplane optical physiology platform", + "default": "Multiplane optical physiology platform", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "multiplane-ophys", + "default": "multiplane-ophys", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Multiplane_Ophys", + "type": "object" + }, + "_Mus_Musculus": { + "description": "Model Mus musculus", + "properties": { + "name": { + "const": "Mus musculus", + "default": "Mus musculus", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "National Center for Biotechnology Information", + "abbreviation": "NCBI" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, { - "type": "string" + "$ref": "#/$defs/_Emapa" }, { - "type": "null" + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "title": "Notes" + "title": "Registry" + }, + "registry_identifier": { + "const": "NCBI:txid10090", + "default": "NCBI:txid10090", + "title": "Registry Identifier", + "type": "string" } }, - "required": [ - "group_index", - "number_of_neurons", - "stimulation_laser_power", - "number_trials", - "number_spirals", - "spiral_duration", - "inter_spiral_interval" - ], - "title": "PhotoStimulationGroup", + "title": "_Mus_Musculus", "type": "object" }, - "PipelineProcess": { - "additionalProperties": false, - "description": "Description of a Processing Pipeline", + "_Mv": { + "description": "Model MV", "properties": { - "data_processes": { - "items": { - "$ref": "#/$defs/DataProcess" - }, - "title": "Data processing", - "type": "array" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "processor_full_name": { - "description": "Name of person responsible for processing pipeline", - "title": "Processor Full Name", + "name": { + "const": "Medial vestibular nucleus", + "default": "Medial vestibular nucleus", + "title": "Name", "type": "string" }, - "pipeline_version": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Version of the pipeline", - "title": "Pipeline version" + "acronym": { + "const": "MV", + "default": "MV", + "title": "Acronym", + "type": "string" }, - "pipeline_url": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "URL to the pipeline code", - "title": "Pipeline URL" + "id": { + "const": "202", + "default": "202", + "title": "Id", + "type": "string" + } + }, + "title": "_Mv", + "type": "object" + }, + "_My": { + "description": "Model MY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "note": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "name": { + "const": "Medulla", + "default": "Medulla", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MY", + "default": "MY", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "354", + "default": "354", + "title": "Id", + "type": "string" } }, - "required": [ - "data_processes", - "processor_full_name" - ], - "title": "PipelineProcess", + "title": "_My", "type": "object" }, - "PockelsCell": { - "additionalProperties": false, - "description": "Description of a Pockels Cell", + "_My_Mot": { + "description": "Model MY-mot", "properties": { - "device_type": { - "const": "Pockels cell", - "default": "Pockels cell", - "enum": [ - "Pockels cell" - ], - "title": "Device Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, "name": { - "title": "Device name", + "const": "Medulla, motor related", + "default": "Medulla, motor related", + "title": "Name", "type": "string" }, - "serial_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Serial number" + "acronym": { + "const": "MY-mot", + "default": "MY-mot", + "title": "Acronym", + "type": "string" }, - "manufacturer": { - "anyOf": [ - { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ] + "id": { + "const": "370", + "default": "370", + "title": "Id", + "type": "string" + } + }, + "title": "_My_Mot", + "type": "object" + }, + "_My_Sat": { + "description": "Model MY-sat", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medulla, behavioral state related", + "default": "Medulla, behavioral state related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MY-sat", + "default": "MY-sat", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "379", + "default": "379", + "title": "Id", + "type": "string" + } + }, + "title": "_My_Sat", + "type": "object" + }, + "_My_Sen": { + "description": "Model MY-sen", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medulla, sensory related", + "default": "Medulla, sensory related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MY-sen", + "default": "MY-sen", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "386", + "default": "386", + "title": "Id", + "type": "string" + } + }, + "title": "_My_Sen", + "type": "object" + }, + "_National_Center_For_Complementary_And_Integrative_Health": { + "description": "Model National Center for Complementary and Integrative Health", + "properties": { + "name": { + "const": "National Center for Complementary and Integrative Health", + "default": "National Center for Complementary and Integrative Health", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NCCIH", + "default": "NCCIH", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "type": "null" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "title": "Manufacturer" + "title": "Registry" }, - "model": { - "anyOf": [ + "registry_identifier": { + "const": "00190t495", + "default": "00190t495", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_National_Center_For_Complementary_And_Integrative_Health", + "type": "object" + }, + "_National_Institute_Of_Mental_Health": { + "description": "Model National Institute of Mental Health", + "properties": { + "name": { + "const": "National Institute of Mental Health", + "default": "National Institute of Mental Health", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NIMH", + "default": "NIMH", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "type": "string" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "type": "null" + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "title": "Model" + "title": "Registry" }, - "path_to_cad": { - "anyOf": [ + "registry_identifier": { + "const": "04xeg9z08", + "default": "04xeg9z08", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_National_Institute_Of_Mental_Health", + "type": "object" + }, + "_National_Institute_Of_Neurological_Disorders_And_Stroke": { + "description": "Model National Institute of Neurological Disorders and Stroke", + "properties": { + "name": { + "const": "National Institute of Neurological Disorders and Stroke", + "default": "National Institute of Neurological Disorders and Stroke", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NINDS", + "default": "NINDS", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "type": "string" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "type": "null" + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], + "title": "Registry" + }, + "registry_identifier": { + "const": "01s5ya894", + "default": "01s5ya894", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_National_Institute_Of_Neurological_Disorders_And_Stroke", + "type": "object" + }, + "_National_Instruments": { + "description": "Model National Instruments", + "properties": { + "name": { + "const": "National Instruments", + "default": "National Instruments", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" + "title": "Abbreviation", + "type": "null" }, - "port_index": { - "anyOf": [ + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "type": "string" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "type": "null" + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], + "title": "Registry" + }, + "registry_identifier": { + "const": "026exqw73", + "default": "026exqw73", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_National_Instruments", + "type": "object" + }, + "_Navitar": { + "description": "Model Navitar", + "properties": { + "name": { + "const": "Navitar", + "default": "Navitar", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, "default": null, - "title": "Port index" + "title": "Abbreviation", + "type": "null" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "registry": { + "default": null, + "title": "Registry", + "type": "null" }, - "notes": { - "anyOf": [ + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Navitar", + "type": "object" + }, + "_Nb": { + "description": "Model NB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the brachium of the inferior colliculus", + "default": "Nucleus of the brachium of the inferior colliculus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NB", + "default": "NB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "580", + "default": "580", + "title": "Id", + "type": "string" + } + }, + "title": "_Nb", + "type": "object" + }, + "_Ncbi": { + "additionalProperties": false, + "description": "Model NCBI", + "properties": { + "name": { + "const": "National Center for Biotechnology Information", + "default": "National Center for Biotechnology Information", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NCBI", + "default": "NCBI", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Ncbi", + "type": "object" + }, + "_Nd": { + "description": "Model ND", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of Darkschewitsch", + "default": "Nucleus of Darkschewitsch", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ND", + "default": "ND", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "587", + "default": "587", + "title": "Id", + "type": "string" + } + }, + "title": "_Nd", + "type": "object" + }, + "_Ndb": { + "description": "Model NDB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Diagonal band nucleus", + "default": "Diagonal band nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NDB", + "default": "NDB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "596", + "default": "596", + "title": "Id", + "type": "string" + } + }, + "title": "_Ndb", + "type": "object" + }, + "_Neck": { + "description": "Model neck", + "properties": { + "name": { + "const": "neck", + "default": "neck", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "type": "string" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "type": "null" + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_35587", + "default": "EMAPA_35587", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Neck", + "type": "object" + }, + "_Neurophotometrics": { + "description": "Model Neurophotometrics", + "properties": { + "name": { + "const": "Neurophotometrics", + "default": "Neurophotometrics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, "default": null, - "title": "Notes" + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Neurophotometrics", + "type": "object" + }, + "_New_Scale_Technologies": { + "description": "Model New Scale Technologies", + "properties": { + "name": { + "const": "New Scale Technologies", + "default": "New Scale Technologies", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_New_Scale_Technologies", + "type": "object" + }, + "_New_York_University": { + "description": "Model New York University", + "properties": { + "name": { + "const": "New York University", + "default": "New York University", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NYU", + "default": "NYU", + "title": "Abbreviation", + "type": "string" }, - "polygonal_scanner": { - "anyOf": [ - { - "type": "string" + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "type": "null" - } - ], - "default": null, - "description": "Must match name of Polygonal scanner", - "title": "Polygonal scanner" - }, - "on_time": { - "anyOf": [ - { - "type": "number" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "type": "string" + "$ref": "#/$defs/_Emapa" }, { - "type": "null" - } - ], - "default": null, - "title": "On time (fraction of cycle)" - }, - "off_time": { - "anyOf": [ - { - "type": "number" + "$ref": "#/$defs/_Mgi" }, { - "type": "string" + "$ref": "#/$defs/_Ncbi" }, { - "type": "null" - } - ], - "default": null, - "title": "Off time (fraction of cycle)" - }, - "time_setting_unit": { - "$ref": "#/$defs/UnitlessUnit", - "default": "fraction of cycle", - "title": "Time setting unit" - }, - "beam_modulation": { - "anyOf": [ - { - "type": "number" + "$ref": "#/$defs/_Orcid" }, { - "type": "string" + "$ref": "#/$defs/_Ror" }, { - "type": "null" + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "title": "Beam modulation (V)" + "title": "Registry" }, - "beam_modulation_unit": { - "$ref": "#/$defs/VoltageUnit", - "default": "Volts", - "title": "Beam modulation unit" + "registry_identifier": { + "const": "0190ak572", + "default": "0190ak572", + "title": "Registry Identifier", + "type": "string" } }, - "required": [ - "name" - ], - "title": "PockelsCell", + "title": "_New_York_University", "type": "object" }, - "PolygonalScanner": { - "additionalProperties": false, - "description": "Description of a Polygonal scanner", + "_Ni": { + "description": "Model NI", "properties": { - "device_type": { - "const": "Polygonal scanner", - "default": "Polygonal scanner", - "enum": [ - "Polygonal scanner" - ], - "title": "Device Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, "name": { - "title": "Device name", + "const": "Nucleus incertus", + "default": "Nucleus incertus", + "title": "Name", "type": "string" }, - "serial_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "acronym": { + "const": "NI", + "default": "NI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "604", + "default": "604", + "title": "Id", + "type": "string" + } + }, + "title": "_Ni", + "type": "object" + }, + "_Nikon": { + "description": "Model Nikon", + "properties": { + "name": { + "const": "Nikon", + "default": "Nikon", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, "default": null, - "title": "Serial number" + "title": "Abbreviation", + "type": "null" }, - "manufacturer": { - "anyOf": [ - { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ] + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "type": "null" - } - ], - "default": null, - "title": "Manufacturer" - }, - "model": { - "anyOf": [ + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, { - "type": "string" + "$ref": "#/$defs/_Emapa" }, { - "type": "null" - } - ], - "default": null, - "title": "Model" - }, - "path_to_cad": { - "anyOf": [ + "$ref": "#/$defs/_Mgi" + }, { - "type": "string" + "$ref": "#/$defs/_Ncbi" }, { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" - }, - "port_index": { - "anyOf": [ + "$ref": "#/$defs/_Orcid" + }, { - "type": "string" + "$ref": "#/$defs/_Ror" }, { - "type": "null" + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "title": "Port index" + "title": "Registry" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "registry_identifier": { + "const": "0280y9h11", + "default": "0280y9h11", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Nikon", + "type": "object" + }, + "_Nll": { + "description": "Model NLL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "name": { + "const": "Nucleus of the lateral lemniscus", + "default": "Nucleus of the lateral lemniscus", + "title": "Name", + "type": "string" }, - "speed": { - "title": "Speed (rpm)", - "type": "integer" + "acronym": { + "const": "NLL", + "default": "NLL", + "title": "Acronym", + "type": "string" }, - "speed_unit": { - "$ref": "#/$defs/SpeedUnit", - "default": "rotations per minute", - "title": "Speed unit" + "id": { + "const": "612", + "default": "612", + "title": "Id", + "type": "string" + } + }, + "title": "_Nll", + "type": "object" + }, + "_Nlot": { + "description": "Model NLOT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "number_faces": { - "title": "Number of faces", - "type": "integer" + "name": { + "const": "Nucleus of the lateral olfactory tract", + "default": "Nucleus of the lateral olfactory tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NLOT", + "default": "NLOT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "619", + "default": "619", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "speed", - "number_faces" - ], - "title": "PolygonalScanner", + "title": "_Nlot", "type": "object" }, - "PowerUnit": { - "description": "Unit for power, set or measured", - "enum": [ - "microwatt", - "milliwatt", - "percent" - ], - "title": "PowerUnit", - "type": "string" + "_Nlot1": { + "description": "Model NLOT1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the lateral olfactory tract, molecular layer", + "default": "Nucleus of the lateral olfactory tract, molecular layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NLOT1", + "default": "NLOT1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "260", + "default": "260", + "title": "Id", + "type": "string" + } + }, + "title": "_Nlot1", + "type": "object" }, - "ProbeModel": { - "description": "Probe model name", - "enum": [ - "Michigan uLED Probe (Version 1)", - "MPI Photonic Probe (Version 1)", - "Neuropixels Opto (Demonstrator)", - "Neuropixels UHD (Fixed)", - "Neuropixels UHD (Switchable)", - "Neuropixels 1.0", - "Neuropixels 2.0 (Single Shank)", - "Neuropixels 2.0 (Multi Shank)", - "Neuropixels 2.0 (Quad Base)" - ], - "title": "ProbeModel", - "type": "string" + "_Nlot2": { + "description": "Model NLOT2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the lateral olfactory tract, pyramidal layer", + "default": "Nucleus of the lateral olfactory tract, pyramidal layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NLOT2", + "default": "NLOT2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "268", + "default": "268", + "title": "Id", + "type": "string" + } + }, + "title": "_Nlot2", + "type": "object" }, - "ProbePort": { - "additionalProperties": false, - "description": "Port for a probe connection", + "_Nlot3": { + "description": "Model NLOT3", "properties": { - "index": { - "title": "One-based port index", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "probes": { - "items": { - "type": "string" - }, - "title": "Names of probes connected to this port", - "type": "array" + "name": { + "const": "Nucleus of the lateral olfactory tract, layer 3", + "default": "Nucleus of the lateral olfactory tract, layer 3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NLOT3", + "default": "NLOT3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1139", + "default": "1139", + "title": "Id", + "type": "string" } }, - "required": [ - "index", - "probes" - ], - "title": "ProbePort", + "title": "_Nlot3", "type": "object" }, - "Procedures": { - "additionalProperties": false, - "description": "Description of all procedures performed on a subject", + "_Nod": { + "description": "Model NOD", "properties": { - "describedBy": { - "const": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/procedures.py", - "default": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/procedures.py", - "title": "Describedby", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "schema_version": { - "const": "1.1.3", - "default": "1.1.3", - "enum": [ - "1.1.3" - ], - "title": "Schema Version", + "name": { + "const": "Nodulus (X)", + "default": "Nodulus (X)", + "title": "Name", "type": "string" }, - "subject_id": { - "description": "Unique identifier for the subject. If this is not a Allen LAS ID, indicate this in the Notes.", - "title": "Subject ID", + "acronym": { + "const": "NOD", + "default": "NOD", + "title": "Acronym", "type": "string" }, - "subject_procedures": { - "default": [], - "items": { - "discriminator": { - "mapping": { - "Other Subject Procedure": "#/$defs/OtherSubjectProcedure", - "Surgery": "#/$defs/Surgery", - "Training": "#/$defs/TrainingProtocol", - "Water restriction": "#/$defs/WaterRestriction" - }, - "propertyName": "procedure_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/Surgery" - }, - { - "$ref": "#/$defs/TrainingProtocol" - }, - { - "$ref": "#/$defs/WaterRestriction" - }, - { - "$ref": "#/$defs/OtherSubjectProcedure" - } - ] - }, - "title": "Subject Procedures", - "type": "array" + "id": { + "const": "968", + "default": "968", + "title": "Id", + "type": "string" + } + }, + "title": "_Nod", + "type": "object" + }, + "_Not": { + "description": "Model NOT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "specimen_procedures": { - "default": [], - "items": { - "$ref": "#/$defs/SpecimenProcedure" - }, - "title": "Specimen Procedures", - "type": "array" + "name": { + "const": "Nucleus of the optic tract", + "default": "Nucleus of the optic tract", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "NOT", + "default": "NOT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "628", + "default": "628", + "title": "Id", + "type": "string" } }, - "required": [ - "subject_id" - ], - "title": "Procedures", + "title": "_Not", "type": "object" }, - "ProcessName": { - "description": "Process names", - "enum": [ - "Analysis", - "Compression", - "Denoising", - "dF/F estimation", - "Ephys curation", - "Ephys postprocessing", - "Ephys preprocessing", - "Ephys visualization", - "Fiducial segmentation", - "File format conversion", - "Fluorescence event detection", - "Image atlas alignment", - "Image background subtraction", - "Image cell classification", - "Image cell quantification", - "Image cell segmentation", - "Image destriping", - "Image flat-field correction", - "Image importing", - "Image mip visualization", - "Image thresholding", - "Image tile alignment", - "Image tile fusing", - "Image tile projection", - "Neuropil subtraction", - "Other", - "Simulation", - "Skull stripping", - "Spatial timeseries demixing", - "Spike sorting", - "Video motion correction", - "Video plane decrosstalk", - "Video ROI classification", - "Video ROI cross session matching", - "Video ROI segmentation", - "Video ROI timeseries extraction" - ], - "title": "ProcessName", - "type": "string" + "_Npc": { + "description": "Model NPC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the posterior commissure", + "default": "Nucleus of the posterior commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NPC", + "default": "NPC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "634", + "default": "634", + "title": "Id", + "type": "string" + } + }, + "title": "_Npc", + "type": "object" }, - "Processing": { - "additionalProperties": false, - "description": "Description of all processes run on data", + "_Nr": { + "description": "Model NR", "properties": { - "describedBy": { - "const": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/processing.py", - "default": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/processing.py", - "title": "Describedby", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "schema_version": { - "const": "1.1.3", - "default": "1.1.3", - "enum": [ - "1.1.3" - ], - "title": "Schema Version", + "name": { + "const": "Nucleus of Roller", + "default": "Nucleus of Roller", + "title": "Name", "type": "string" }, - "processing_pipeline": { - "$ref": "#/$defs/PipelineProcess", - "description": "Pipeline used to process data", - "title": "Processing Pipeline" + "acronym": { + "const": "NR", + "default": "NR", + "title": "Acronym", + "type": "string" }, - "analyses": { - "default": [], - "description": "Analysis steps taken after processing", - "items": { - "$ref": "#/$defs/AnalysisProcess" - }, - "title": "Analysis Steps", - "type": "array" + "id": { + "const": "177", + "default": "177", + "title": "Id", + "type": "string" + } + }, + "title": "_Nr", + "type": "object" + }, + "_Nresearch_Inc": { + "description": "Model NResearch Inc", + "properties": { + "name": { + "const": "NResearch Inc", + "default": "NResearch Inc", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "abbreviation": { + "const": null, "default": null, - "title": "Notes" + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" } }, - "required": [ - "processing_pipeline" - ], - "title": "Processing", + "title": "_Nresearch_Inc", "type": "object" }, - "ProcessingSteps": { - "additionalProperties": false, - "description": "Description of downstream processing steps", + "_Nst": { + "description": "Model nst", "properties": { - "channel_name": { - "title": "Channel name", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "process_name": { - "items": { - "enum": [ - "Image atlas alignment", - "Image background subtraction", - "Image cell segmentation", - "Image destriping", - "Image flat-field correction", - "Image importing", - "Image thresholding", - "Image tile alignment", - "Image tile fusing", - "Image tile projection", - "File format conversion" - ], - "type": "string" - }, - "title": "Process Name", - "type": "array" + "name": { + "const": "nigrostriatal tract", + "default": "nigrostriatal tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "nst", + "default": "nst", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "102", + "default": "102", + "title": "Id", + "type": "string" } }, - "required": [ - "channel_name", - "process_name" - ], - "title": "ProcessingSteps", + "title": "_Nst", "type": "object" }, - "ProtectiveMaterial": { - "description": "Name of material applied to craniotomy", - "enum": [ - "Agarose", - "Duragel", - "Kwik-Cast", - "SORTA-clear", - "Other - see notes" - ], - "title": "ProtectiveMaterial", - "type": "string" + "_Ntb": { + "description": "Model NTB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the trapezoid body", + "default": "Nucleus of the trapezoid body", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NTB", + "default": "NTB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "642", + "default": "642", + "title": "Id", + "type": "string" + } + }, + "title": "_Ntb", + "type": "object" + }, + "_Nts": { + "description": "Model NTS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the solitary tract", + "default": "Nucleus of the solitary tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NTS", + "default": "NTS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "651", + "default": "651", + "title": "Id", + "type": "string" + } + }, + "title": "_Nts", + "type": "object" + }, + "_Och": { + "description": "Model och", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "optic chiasm", + "default": "optic chiasm", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "och", + "default": "och", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "117", + "default": "117", + "title": "Id", + "type": "string" + } + }, + "title": "_Och", + "type": "object" + }, + "_Olf": { + "description": "Model OLF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Olfactory areas", + "default": "Olfactory areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "OLF", + "default": "OLF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "698", + "default": "698", + "title": "Id", + "type": "string" + } + }, + "title": "_Olf", + "type": "object" + }, + "_Olfactometer": { + "description": "Model Olfactometer", + "properties": { + "whoami": { + "const": 1140, + "default": 1140, + "title": "Whoami", + "type": "integer" + }, + "name": { + "const": "Olfactometer", + "default": "Olfactometer", + "title": "Name", + "type": "string" + } + }, + "title": "_Olfactometer", + "type": "object" }, - "ProtectiveMaterialReplacement": { - "additionalProperties": false, - "description": "Description of a protective material replacement procedure in preparation for ephys recording", + "_Olympus": { + "description": "Model Olympus", "properties": { - "procedure_type": { - "const": "Ground wire", - "default": "Ground wire", - "enum": [ - "Ground wire" - ], - "title": "Procedure Type", - "type": "string" - }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", + "name": { + "const": "Olympus", + "default": "Olympus", + "title": "Name", "type": "string" }, - "protective_material": { - "$ref": "#/$defs/ProtectiveMaterial", - "description": "New material being applied", - "title": "Protective material" + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" }, - "ground_wire_hole": { - "anyOf": [ + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "type": "integer" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "type": "null" - } - ], - "default": null, - "title": "Ground wire hole" - }, - "ground_wire_material": { - "anyOf": [ + "$ref": "#/$defs/_Emapa" + }, { - "$ref": "#/$defs/GroundWireMaterial" + "$ref": "#/$defs/_Mgi" }, { - "type": "null" - } - ], - "default": null, - "title": "Ground wire material" - }, - "ground_wire_diameter": { - "anyOf": [ + "$ref": "#/$defs/_Ncbi" + }, { - "type": "number" + "$ref": "#/$defs/_Orcid" }, { - "type": "string" + "$ref": "#/$defs/_Ror" }, { - "type": "null" + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "title": "Ground wire diameter" + "title": "Registry" }, - "ground_wire_diameter_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "inch", - "title": "Ground wire diameter unit" + "registry_identifier": { + "const": "02vcdte90", + "default": "02vcdte90", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Olympus", + "type": "object" + }, + "_Onl": { + "description": "Model onl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "well_part_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Well part number" + "name": { + "const": "olfactory nerve layer of main olfactory bulb", + "default": "olfactory nerve layer of main olfactory bulb", + "title": "Name", + "type": "string" }, - "well_type": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Well type" + "acronym": { + "const": "onl", + "default": "onl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1016", + "default": "1016", + "title": "Id", + "type": "string" } }, - "required": [ - "protocol_id", - "protective_material" - ], - "title": "ProtectiveMaterialReplacement", + "title": "_Onl", "type": "object" }, - "PulseShape": { - "description": "Types of Opto stim pulse shapes", - "enum": [ - "Square", - "Ramp", - "Sinusoidal" - ], - "title": "PulseShape", - "type": "string" + "_Op": { + "description": "Model OP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Olivary pretectal nucleus", + "default": "Olivary pretectal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "OP", + "default": "OP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "706", + "default": "706", + "title": "Id", + "type": "string" + } + }, + "title": "_Op", + "type": "object" }, - "QCEvaluation": { - "additionalProperties": false, - "description": "Description of one evaluation stage, with one or more metrics", + "_Open_Ephys_Production_Site": { + "description": "Model Open Ephys Production Site", "properties": { - "modality": { + "name": { + "const": "Open Ephys Production Site", + "default": "Open Ephys Production Site", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "OEPS", + "default": "OEPS", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, "discriminator": { "mapping": { - "EMG": "#/$defs/_Emg", - "ISI": "#/$defs/aind_data_schema_models__modalities___Isi", - "MRI": "#/$defs/aind_data_schema_models__modalities___Mri", - "SPIM": "#/$defs/_Spim", - "behavior": "#/$defs/aind_data_schema_models__modalities___Behavior", - "behavior-videos": "#/$defs/_Behavior_Videos", - "confocal": "#/$defs/aind_data_schema_models__modalities___Confocal", - "ecephys": "#/$defs/aind_data_schema_models__modalities___Ecephys", - "fMOST": "#/$defs/_Fmost", - "fib": "#/$defs/_Fib", - "icephys": "#/$defs/_Icephys", - "merfish": "#/$defs/aind_data_schema_models__modalities___Merfish", - "pophys": "#/$defs/_Pophys", - "slap": "#/$defs/_Slap" + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, "propertyName": "abbreviation" }, "oneOf": [ { - "$ref": "#/$defs/aind_data_schema_models__modalities___Behavior" - }, - { - "$ref": "#/$defs/_Behavior_Videos" - }, - { - "$ref": "#/$defs/aind_data_schema_models__modalities___Confocal" - }, - { - "$ref": "#/$defs/_Emg" - }, - { - "$ref": "#/$defs/aind_data_schema_models__modalities___Ecephys" - }, - { - "$ref": "#/$defs/_Fib" - }, - { - "$ref": "#/$defs/_Fmost" - }, - { - "$ref": "#/$defs/_Icephys" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/aind_data_schema_models__modalities___Isi" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/aind_data_schema_models__modalities___Mri" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/aind_data_schema_models__modalities___Merfish" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Pophys" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Slap" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Spim" + "$ref": "#/$defs/_Rrid" } ], - "title": "Modality" + "title": "Registry" }, - "stage": { - "$ref": "#/$defs/Stage", - "title": "Evaluation stage" + "registry_identifier": { + "const": "007rkz355", + "default": "007rkz355", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Open_Ephys_Production_Site", + "type": "object" + }, + "_Opt": { + "description": "Model opt", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, "name": { - "title": "Evaluation name", + "const": "optic tract", + "default": "optic tract", + "title": "Name", "type": "string" }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Evaluation description" + "acronym": { + "const": "opt", + "default": "opt", + "title": "Acronym", + "type": "string" }, - "metrics": { - "items": { - "$ref": "#/$defs/QCMetric" - }, - "title": "QC metrics", - "type": "array" + "id": { + "const": "125", + "default": "125", + "title": "Id", + "type": "string" + } + }, + "title": "_Opt", + "type": "object" + }, + "_Optotune": { + "description": "Model Optotune", + "properties": { + "name": { + "const": "Optotune", + "default": "Optotune", + "title": "Name", + "type": "string" }, - "tags": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], + "abbreviation": { + "const": null, "default": null, - "description": "Tags can be used to group QCEvaluation objects into groups", - "title": "Tags" + "title": "Abbreviation", + "type": "null" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "registry": { "default": null, - "title": "Notes" + "title": "Registry", + "type": "null" }, - "allow_failed_metrics": { - "default": false, - "description": "Set to true for evaluations that are not critical to the overall state of QC for a data asset, this will allow individual metrics to fail while still passing the evaluation.", - "title": "Allow metrics to fail", - "type": "boolean" + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" } }, - "required": [ - "modality", - "stage", - "name", - "metrics" - ], - "title": "QCEvaluation", + "title": "_Optotune", + "type": "object" + }, + "_Or": { + "description": "Model or", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "optic radiation", + "default": "optic radiation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "or", + "default": "or", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682520", + "default": "484682520", + "title": "Id", + "type": "string" + } + }, + "title": "_Or", + "type": "object" + }, + "_Orb": { + "description": "Model ORB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area", + "default": "Orbital area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORB", + "default": "ORB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "714", + "default": "714", + "title": "Id", + "type": "string" + } + }, + "title": "_Orb", + "type": "object" + }, + "_Orbl": { + "description": "Model ORBl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part", + "default": "Orbital area, lateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl", + "default": "ORBl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "723", + "default": "723", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl", + "type": "object" + }, + "_Orbl1": { + "description": "Model ORBl1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part, layer 1", + "default": "Orbital area, lateral part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl1", + "default": "ORBl1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "448", + "default": "448", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl1", + "type": "object" + }, + "_Orbl2_3": { + "description": "Model ORBl2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part, layer 2/3", + "default": "Orbital area, lateral part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl2/3", + "default": "ORBl2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "412", + "default": "412", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl2_3", + "type": "object" + }, + "_Orbl5": { + "description": "Model ORBl5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part, layer 5", + "default": "Orbital area, lateral part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl5", + "default": "ORBl5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "630", + "default": "630", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl5", + "type": "object" + }, + "_Orbl6A": { + "description": "Model ORBl6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part, layer 6a", + "default": "Orbital area, lateral part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl6a", + "default": "ORBl6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "440", + "default": "440", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl6A", + "type": "object" + }, + "_Orbl6B": { + "description": "Model ORBl6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part, layer 6b", + "default": "Orbital area, lateral part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl6b", + "default": "ORBl6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "488", + "default": "488", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl6B", + "type": "object" + }, + "_Orbm": { + "description": "Model ORBm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, medial part", + "default": "Orbital area, medial part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBm", + "default": "ORBm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "731", + "default": "731", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbm", + "type": "object" + }, + "_Orbm1": { + "description": "Model ORBm1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, medial part, layer 1", + "default": "Orbital area, medial part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBm1", + "default": "ORBm1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484", + "default": "484", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbm1", + "type": "object" + }, + "_Orbm2_3": { + "description": "Model ORBm2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, medial part, layer 2/3", + "default": "Orbital area, medial part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBm2/3", + "default": "ORBm2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "582", + "default": "582", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbm2_3", + "type": "object" + }, + "_Orbm5": { + "description": "Model ORBm5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, medial part, layer 5", + "default": "Orbital area, medial part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBm5", + "default": "ORBm5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "620", + "default": "620", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbm5", "type": "object" }, - "QCMetric": { - "description": "Description of a single quality control metric", + "_Orbm6A": { + "description": "Model ORBm6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "title": "Metric name", + "const": "Orbital area, medial part, layer 6a", + "default": "Orbital area, medial part, layer 6a", + "title": "Name", "type": "string" }, - "value": { - "title": "Metric value" + "acronym": { + "const": "ORBm6a", + "default": "ORBm6a", + "title": "Acronym", + "type": "string" }, - "status_history": { - "default": [], - "items": { - "$ref": "#/$defs/QCStatus" - }, - "title": "Metric status history", - "type": "array" + "id": { + "const": "910", + "default": "910", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbm6A", + "type": "object" + }, + "_Orbm6B": { + "description": "Model ORBm6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Metric description" + "name": { + "const": "Orbital area, medial part, layer 6b", + "default": "Orbital area, medial part, layer 6b", + "title": "Name", + "type": "string" }, - "reference": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Metric reference image URL or plot type" + "acronym": { + "const": "ORBm6b", + "default": "ORBm6b", + "title": "Acronym", + "type": "string" }, - "evaluated_assets": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Set to None except when a metric's calculation required data coming from a different data asset.", - "title": "List of asset names that this metric depends on" + "id": { + "const": "527696977", + "default": "527696977", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "value" - ], - "title": "QCMetric", + "title": "_Orbm6B", "type": "object" }, - "QCStatus": { - "description": "Description of a QC status, set by an evaluator", + "_Orbvl": { + "description": "Model ORBvl", "properties": { - "evaluator": { - "title": "Status evaluator full name", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "status": { - "$ref": "#/$defs/Status" + "name": { + "const": "Orbital area, ventrolateral part", + "default": "Orbital area, ventrolateral part", + "title": "Name", + "type": "string" }, - "timestamp": { - "format": "date-time", - "title": "Status date", + "acronym": { + "const": "ORBvl", + "default": "ORBvl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "746", + "default": "746", + "title": "Id", "type": "string" } }, - "required": [ - "evaluator", - "status", - "timestamp" - ], - "title": "QCStatus", + "title": "_Orbvl", "type": "object" }, - "QualityControl": { - "additionalProperties": false, - "description": "Description of quality metrics for a data asset", + "_Orbvl1": { + "description": "Model ORBvl1", "properties": { - "describedBy": { - "const": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/quality_control.py", - "default": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/quality_control.py", - "title": "Describedby", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "schema_version": { - "const": "1.2.1", - "default": "1.2.1", - "enum": [ - "1.2.1" - ], - "title": "Schema Version", + "name": { + "const": "Orbital area, ventrolateral part, layer 1", + "default": "Orbital area, ventrolateral part, layer 1", + "title": "Name", "type": "string" }, - "evaluations": { - "items": { - "$ref": "#/$defs/QCEvaluation" - }, - "title": "Evaluations", - "type": "array" + "acronym": { + "const": "ORBvl1", + "default": "ORBvl1", + "title": "Acronym", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "id": { + "const": "969", + "default": "969", + "title": "Id", + "type": "string" } }, - "required": [ - "evaluations" - ], - "title": "QualityControl", + "title": "_Orbvl1", "type": "object" }, - "Readout": { - "additionalProperties": false, - "description": "Description of a readout", + "_Orbvl2_3": { + "description": "Model ORBvl2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { + "const": "Orbital area, ventrolateral part, layer 2/3", + "default": "Orbital area, ventrolateral part, layer 2/3", "title": "Name", "type": "string" }, - "source": { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ], - "title": "Source" + "acronym": { + "const": "ORBvl2/3", + "default": "ORBvl2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "288", + "default": "288", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbvl2_3", + "type": "object" + }, + "_Orbvl5": { + "description": "Model ORBvl5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "rrid": { - "anyOf": [ - { - "$ref": "#/$defs/PIDName" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Research Resource ID" + "name": { + "const": "Orbital area, ventrolateral part, layer 5", + "default": "Orbital area, ventrolateral part, layer 5", + "title": "Name", + "type": "string" }, - "lot_number": { - "title": "Lot number", + "acronym": { + "const": "ORBvl5", + "default": "ORBvl5", + "title": "Acronym", "type": "string" }, - "expiration_date": { - "anyOf": [ - { - "format": "date", - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lot expiration date" + "id": { + "const": "1125", + "default": "1125", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbvl5", + "type": "object" + }, + "_Orbvl6A": { + "description": "Model ORBvl6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "fluorophore": { - "$ref": "#/$defs/Fluorophore" + "name": { + "const": "Orbital area, ventrolateral part, layer 6a", + "default": "Orbital area, ventrolateral part, layer 6a", + "title": "Name", + "type": "string" }, - "excitation_wavelength": { - "title": "Excitation wavelength (nm)", - "type": "integer" + "acronym": { + "const": "ORBvl6a", + "default": "ORBvl6a", + "title": "Acronym", + "type": "string" }, - "excitation_wavelength_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "nanometer", - "title": "Excitation wavelength unit" + "id": { + "const": "608", + "default": "608", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbvl6A", + "type": "object" + }, + "_Orbvl6B": { + "description": "Model ORBvl6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "stain_type": { - "$ref": "#/$defs/StainType", - "title": "Stain type" + "name": { + "const": "Orbital area, ventrolateral part, layer 6b", + "default": "Orbital area, ventrolateral part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBvl6b", + "default": "ORBvl6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "680", + "default": "680", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "source", - "lot_number", - "fluorophore", - "excitation_wavelength", - "stain_type" - ], - "title": "Readout", + "title": "_Orbvl6B", "type": "object" }, - "Reagent": { + "_Orcid": { "additionalProperties": false, - "description": "Description of reagent used in procedure", + "description": "Model ORCID", "properties": { "name": { + "const": "Open Researcher and Contributor ID", + "default": "Open Researcher and Contributor ID", "title": "Name", "type": "string" }, - "source": { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ], - "title": "Source" + "abbreviation": { + "const": "ORCID", + "default": "ORCID", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Orcid", + "type": "object" + }, + "_Ot": { + "description": "Model OT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Olfactory tubercle", + "default": "Olfactory tubercle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "OT", + "default": "OT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "754", + "default": "754", + "title": "Id", + "type": "string" + } + }, + "title": "_Ot", + "type": "object" + }, + "_Other": { + "description": "Model Other", + "properties": { + "name": { + "const": "Other", + "default": "Other", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Other", + "type": "object" + }, + "_Ov": { + "description": "Model OV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Vascular organ of the lamina terminalis", + "default": "Vascular organ of the lamina terminalis", + "title": "Name", + "type": "string" }, - "rrid": { - "anyOf": [ - { - "$ref": "#/$defs/PIDName" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Research Resource ID" + "acronym": { + "const": "OV", + "default": "OV", + "title": "Acronym", + "type": "string" }, - "lot_number": { - "title": "Lot number", + "id": { + "const": "763", + "default": "763", + "title": "Id", + "type": "string" + } + }, + "title": "_Ov", + "type": "object" + }, + "_Oxxius": { + "description": "Model Oxxius", + "properties": { + "name": { + "const": "Oxxius", + "default": "Oxxius", + "title": "Name", "type": "string" }, - "expiration_date": { - "anyOf": [ - { - "format": "date", - "type": "string" - }, - { - "type": "null" - } - ], + "abbreviation": { + "const": null, "default": null, - "title": "Lot expiration date" + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" } }, - "required": [ - "name", - "source", - "lot_number" - ], - "title": "Reagent", + "title": "_Oxxius", "type": "object" }, - "RelatedData": { - "additionalProperties": false, - "description": "Description of related data asset", + "_P": { + "description": "Model P", "properties": { - "related_data_path": { - "title": "Related data path", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "relation": { - "description": "Relation of data to this asset", - "title": "Relation", + "name": { + "const": "Pons", + "default": "Pons", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "P", + "default": "P", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "771", + "default": "771", + "title": "Id", "type": "string" } }, - "required": [ - "related_data_path", - "relation" - ], - "title": "RelatedData", + "title": "_P", "type": "object" }, - "RelativePosition": { - "additionalProperties": false, - "description": "Position and rotation of a device in a rig or instrument", + "_P5": { + "description": "Model P5", "properties": { - "device_position_transformations": { - "items": { - "discriminator": { - "mapping": { - "rotation": "#/$defs/Rotation3dTransform", - "translation": "#/$defs/Translation3dTransform" - }, - "propertyName": "type" - }, - "oneOf": [ - { - "$ref": "#/$defs/Translation3dTransform" - }, - { - "$ref": "#/$defs/Rotation3dTransform" - } - ] - }, - "title": "Device position transforms", - "type": "array" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "device_origin": { - "description": "Reference point on device for position information", - "title": "Device origin", + "name": { + "const": "Peritrigeminal zone", + "default": "Peritrigeminal zone", + "title": "Name", "type": "string" }, - "device_axes": { - "items": { - "$ref": "#/$defs/Axis" - }, - "maxItems": 3, - "minItems": 3, - "title": "Device axes", - "type": "array" + "acronym": { + "const": "P5", + "default": "P5", + "title": "Acronym", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "id": { + "const": "549009215", + "default": "549009215", + "title": "Id", + "type": "string" } }, - "required": [ - "device_position_transformations", - "device_origin", - "device_axes" - ], - "title": "RelativePosition", + "title": "_P5", "type": "object" }, - "ResourceTimestamped": { - "additionalProperties": false, - "description": "Description of resource usage at a moment in time", + "_P_Mot": { + "description": "Model P-mot", "properties": { - "timestamp": { - "format": "date-time", - "title": "Timestamp", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "usage": { - "title": "Usage", - "type": "number" + "name": { + "const": "Pons, motor related", + "default": "Pons, motor related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "P-mot", + "default": "P-mot", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "987", + "default": "987", + "title": "Id", + "type": "string" } }, - "required": [ - "timestamp", - "usage" - ], - "title": "ResourceTimestamped", + "title": "_P_Mot", "type": "object" }, - "ResourceUsage": { - "additionalProperties": false, - "description": "Description of resources used by a process", + "_P_Sat": { + "description": "Model P-sat", "properties": { - "os": { - "title": "Operating system", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "architecture": { - "title": "Architecture", + "name": { + "const": "Pons, behavioral state related", + "default": "Pons, behavioral state related", + "title": "Name", "type": "string" }, - "cpu": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "CPU name" + "acronym": { + "const": "P-sat", + "default": "P-sat", + "title": "Acronym", + "type": "string" }, - "cpu_cores": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "default": null, - "title": "CPU cores" + "id": { + "const": "1117", + "default": "1117", + "title": "Id", + "type": "string" + } + }, + "title": "_P_Sat", + "type": "object" + }, + "_P_Sen": { + "description": "Model P-sen", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "gpu": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "GPU name" + "name": { + "const": "Pons, sensory related", + "default": "Pons, sensory related", + "title": "Name", + "type": "string" }, - "system_memory": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "System memory" + "acronym": { + "const": "P-sen", + "default": "P-sen", + "title": "Acronym", + "type": "string" }, - "system_memory_unit": { - "anyOf": [ - { - "$ref": "#/$defs/MemoryUnit" - }, - { - "type": "null" - } - ], - "default": null, - "title": "System memory unit" + "id": { + "const": "1132", + "default": "1132", + "title": "Id", + "type": "string" + } + }, + "title": "_P_Sen", + "type": "object" + }, + "_Pa": { + "description": "Model PA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "ram": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "System RAM" + "name": { + "const": "Posterior amygdalar nucleus", + "default": "Posterior amygdalar nucleus", + "title": "Name", + "type": "string" }, - "ram_unit": { - "anyOf": [ - { - "$ref": "#/$defs/MemoryUnit" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Ram unit" + "acronym": { + "const": "PA", + "default": "PA", + "title": "Acronym", + "type": "string" }, - "cpu_usage": { - "anyOf": [ - { - "items": { - "$ref": "#/$defs/ResourceTimestamped" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "title": "CPU usage" + "id": { + "const": "780", + "default": "780", + "title": "Id", + "type": "string" + } + }, + "title": "_Pa", + "type": "object" + }, + "_Pa4": { + "description": "Model Pa4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "gpu_usage": { - "anyOf": [ - { - "items": { - "$ref": "#/$defs/ResourceTimestamped" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "title": "GPU usage" + "name": { + "const": "Paratrochlear nucleus", + "default": "Paratrochlear nucleus", + "title": "Name", + "type": "string" }, - "ram_usage": { - "anyOf": [ - { - "items": { - "$ref": "#/$defs/ResourceTimestamped" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "title": "RAM usage" + "acronym": { + "const": "Pa4", + "default": "Pa4", + "title": "Acronym", + "type": "string" }, - "usage_unit": { - "default": "percent", - "title": "Usage unit", + "id": { + "const": "606826663", + "default": "606826663", + "title": "Id", "type": "string" } }, - "required": [ - "os", - "architecture" - ], - "title": "ResourceUsage", + "title": "_Pa4", "type": "object" }, - "RetroOrbitalInjection": { - "additionalProperties": false, - "description": "Description of a retro-orbital injection procedure", + "_Pa5": { + "description": "Model Pa5", "properties": { - "injection_materials": { - "items": { - "discriminator": { - "mapping": { - "Reagent": "#/$defs/NonViralMaterial", - "Virus": "#/$defs/ViralMaterial" - }, - "propertyName": "material_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/ViralMaterial" - }, - { - "$ref": "#/$defs/NonViralMaterial" - } - ] - }, - "minItems": 1, - "title": "Injection material", - "type": "array" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "recovery_time": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Recovery time" + "name": { + "const": "Paratrigeminal nucleus", + "default": "Paratrigeminal nucleus", + "title": "Name", + "type": "string" }, - "recovery_time_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Recovery time unit" + "acronym": { + "const": "Pa5", + "default": "Pa5", + "title": "Acronym", + "type": "string" }, - "injection_duration": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Injection duration" + "id": { + "const": "589508451", + "default": "589508451", + "title": "Id", + "type": "string" + } + }, + "title": "_Pa5", + "type": "object" + }, + "_Paa": { + "description": "Model PAA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "injection_duration_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Injection duration unit" + "name": { + "const": "Piriform-amygdalar area", + "default": "Piriform-amygdalar area", + "title": "Name", + "type": "string" }, - "instrument_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Instrument ID" + "acronym": { + "const": "PAA", + "default": "PAA", + "title": "Acronym", + "type": "string" }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", + "id": { + "const": "788", + "default": "788", + "title": "Id", + "type": "string" + } + }, + "title": "_Paa", + "type": "object" + }, + "_Pag": { + "description": "Model PAG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "procedure_type": { - "const": "Retro-orbital injection", - "default": "Retro-orbital injection", - "enum": [ - "Retro-orbital injection" - ], - "title": "Procedure Type", + "name": { + "const": "Periaqueductal gray", + "default": "Periaqueductal gray", + "title": "Name", "type": "string" }, - "injection_volume": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Injection volume (uL)" + "acronym": { + "const": "PAG", + "default": "PAG", + "title": "Acronym", + "type": "string" }, - "injection_volume_unit": { - "$ref": "#/$defs/VolumeUnit", - "default": "microliter", - "title": "Injection volume unit" + "id": { + "const": "795", + "default": "795", + "title": "Id", + "type": "string" + } + }, + "title": "_Pag", + "type": "object" + }, + "_Pal": { + "description": "Model PAL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pallidum", + "default": "Pallidum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PAL", + "default": "PAL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "803", + "default": "803", + "title": "Id", + "type": "string" + } + }, + "title": "_Pal", + "type": "object" + }, + "_Palc": { + "description": "Model PALc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pallidum, caudal region", + "default": "Pallidum, caudal region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PALc", + "default": "PALc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "809", + "default": "809", + "title": "Id", + "type": "string" + } + }, + "title": "_Palc", + "type": "object" + }, + "_Pald": { + "description": "Model PALd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pallidum, dorsal region", + "default": "Pallidum, dorsal region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PALd", + "default": "PALd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "818", + "default": "818", + "title": "Id", + "type": "string" + } + }, + "title": "_Pald", + "type": "object" + }, + "_Palm": { + "description": "Model PALm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pallidum, medial region", + "default": "Pallidum, medial region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PALm", + "default": "PALm", + "title": "Acronym", + "type": "string" }, - "injection_eye": { - "$ref": "#/$defs/Side", - "title": "Injection eye" + "id": { + "const": "826", + "default": "826", + "title": "Id", + "type": "string" } }, - "required": [ - "injection_materials", - "protocol_id", - "injection_volume", - "injection_eye" - ], - "title": "RetroOrbitalInjection", + "title": "_Palm", "type": "object" }, - "RewardDelivery": { - "additionalProperties": false, - "description": "Description of reward delivery system", + "_Palv": { + "description": "Model PALv", "properties": { - "device_type": { - "const": "Reward delivery", - "default": "Reward delivery", - "enum": [ - "Reward delivery" - ], - "title": "Device Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "stage_type": { - "anyOf": [ - { - "$ref": "#/$defs/MotorizedStage" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Motorized stage" + "name": { + "const": "Pallidum, ventral region", + "default": "Pallidum, ventral region", + "title": "Name", + "type": "string" }, - "reward_spouts": { - "items": { - "$ref": "#/$defs/RewardSpout" - }, - "title": "Water spouts", - "type": "array" + "acronym": { + "const": "PALv", + "default": "PALv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "835", + "default": "835", + "title": "Id", + "type": "string" } }, - "required": [ - "reward_spouts" - ], - "title": "RewardDelivery", + "title": "_Palv", "type": "object" }, - "RewardDeliveryConfig": { - "additionalProperties": false, - "description": "Description of reward delivery configuration", + "_Par": { + "description": "Model PAR", "properties": { - "reward_solution": { - "$ref": "#/$defs/RewardSolution", - "description": "If Other use notes", - "title": "Reward solution" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "reward_spouts": { - "items": { - "$ref": "#/$defs/RewardSpoutConfig" - }, - "title": "Reward spouts", - "type": "array" + "name": { + "const": "Parasubiculum", + "default": "Parasubiculum", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "PAR", + "default": "PAR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "843", + "default": "843", + "title": "Id", + "type": "string" } }, - "required": [ - "reward_solution", - "reward_spouts" - ], - "title": "RewardDeliveryConfig", + "title": "_Par", "type": "object" }, - "RewardSolution": { - "description": "Reward solution name", - "enum": [ - "Water", - "Other" - ], - "title": "RewardSolution", - "type": "string" - }, - "RewardSpout": { - "additionalProperties": false, - "description": "Description of a reward spout", + "_Parn": { + "description": "Model PARN", "properties": { - "device_type": { - "const": "Reward spout", - "default": "Reward spout", - "enum": [ - "Reward spout" - ], - "title": "Device Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, "name": { - "title": "Device name", + "const": "Parvicellular reticular nucleus", + "default": "Parvicellular reticular nucleus", + "title": "Name", "type": "string" }, - "serial_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Serial number" + "acronym": { + "const": "PARN", + "default": "PARN", + "title": "Acronym", + "type": "string" }, - "manufacturer": { - "anyOf": [ - { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ] + "id": { + "const": "852", + "default": "852", + "title": "Id", + "type": "string" + } + }, + "title": "_Parn", + "type": "object" + }, + "_Pars_Scapularis_Of_Deltoid": { + "description": "Model pars scapularis of deltoid", + "properties": { + "name": { + "const": "pars scapularis of deltoid", + "default": "pars scapularis of deltoid", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "type": "null" - } - ], - "default": null, - "title": "Manufacturer" - }, - "model": { - "anyOf": [ + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, { - "type": "string" + "$ref": "#/$defs/_Emapa" }, { - "type": "null" - } - ], - "default": null, - "title": "Model" - }, - "path_to_cad": { - "anyOf": [ + "$ref": "#/$defs/_Mgi" + }, { - "type": "string" + "$ref": "#/$defs/_Ncbi" }, { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" - }, - "port_index": { - "anyOf": [ + "$ref": "#/$defs/_Orcid" + }, { - "type": "string" + "$ref": "#/$defs/_Ror" }, { - "type": "null" + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "title": "Port index" + "title": "Registry" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "registry_identifier": { + "const": "EMAPA_36163", + "default": "EMAPA_36163", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Pars_Scapularis_Of_Deltoid", + "type": "object" + }, + "_Pas": { + "description": "Model PAS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "notes": { - "anyOf": [ + "name": { + "const": "Parasolitary nucleus", + "default": "Parasolitary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PAS", + "default": "PAS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "859", + "default": "859", + "title": "Id", + "type": "string" + } + }, + "title": "_Pas", + "type": "object" + }, + "_Pb": { + "description": "Model PB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parabrachial nucleus", + "default": "Parabrachial nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PB", + "default": "PB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "867", + "default": "867", + "title": "Id", + "type": "string" + } + }, + "title": "_Pb", + "type": "object" + }, + "_Pbg": { + "description": "Model PBG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parabigeminal nucleus", + "default": "Parabigeminal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PBG", + "default": "PBG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "874", + "default": "874", + "title": "Id", + "type": "string" + } + }, + "title": "_Pbg", + "type": "object" + }, + "_Pc": { + "description": "Model pc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "posterior commissure", + "default": "posterior commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "pc", + "default": "pc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "158", + "default": "158", + "title": "Id", + "type": "string" + } + }, + "title": "_Pc", + "type": "object" + }, + "_Pc5": { + "description": "Model PC5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parvicellular motor 5 nucleus", + "default": "Parvicellular motor 5 nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PC5", + "default": "PC5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "549009223", + "default": "549009223", + "title": "Id", + "type": "string" + } + }, + "title": "_Pc5", + "type": "object" + }, + "_Pcg": { + "description": "Model PCG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pontine central gray", + "default": "Pontine central gray", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PCG", + "default": "PCG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "898", + "default": "898", + "title": "Id", + "type": "string" + } + }, + "title": "_Pcg", + "type": "object" + }, + "_Pcn": { + "description": "Model PCN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paracentral nucleus", + "default": "Paracentral nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PCN", + "default": "PCN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "907", + "default": "907", + "title": "Id", + "type": "string" + } + }, + "title": "_Pcn", + "type": "object" + }, + "_Pd": { + "description": "Model PD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterodorsal preoptic nucleus", + "default": "Posterodorsal preoptic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PD", + "default": "PD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "914", + "default": "914", + "title": "Id", + "type": "string" + } + }, + "title": "_Pd", + "type": "object" + }, + "_Pdtg": { + "description": "Model PDTg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterodorsal tegmental nucleus", + "default": "Posterodorsal tegmental nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PDTg", + "default": "PDTg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "599626927", + "default": "599626927", + "title": "Id", + "type": "string" + } + }, + "title": "_Pdtg", + "type": "object" + }, + "_Pectoralis_Major": { + "description": "Model pectoralis major", + "properties": { + "name": { + "const": "pectoralis major", + "default": "pectoralis major", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "type": "string" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - }, - "side": { - "$ref": "#/$defs/SpoutSide", - "description": "If Other use notes", - "title": "Spout side" - }, - "spout_diameter": { - "anyOf": [ + "$ref": "#/$defs/_Emapa" + }, { - "type": "number" + "$ref": "#/$defs/_Mgi" }, { - "type": "string" - } - ], - "title": "Spout diameter (mm)" - }, - "spout_diameter_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Spout diameter unit" - }, - "spout_position": { - "anyOf": [ + "$ref": "#/$defs/_Ncbi" + }, { - "$ref": "#/$defs/RelativePosition" + "$ref": "#/$defs/_Orcid" }, { - "type": "null" + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "title": "Spout stage position" + "title": "Registry" }, - "solenoid_valve": { - "$ref": "#/$defs/Device", - "title": "Solenoid valve" + "registry_identifier": { + "const": "EMAPA_18179", + "default": "EMAPA_18179", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Pectoralis_Major", + "type": "object" + }, + "_Pef": { + "description": "Model PeF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "lick_sensor": { - "$ref": "#/$defs/Device", - "title": "Lick sensor" + "name": { + "const": "Perifornical nucleus", + "default": "Perifornical nucleus", + "title": "Name", + "type": "string" }, - "lick_sensor_type": { - "anyOf": [ - { - "$ref": "#/$defs/LickSensorType" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lick sensor type" + "acronym": { + "const": "PeF", + "default": "PeF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "576073704", + "default": "576073704", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "side", - "spout_diameter", - "solenoid_valve", - "lick_sensor" - ], - "title": "RewardSpout", + "title": "_Pef", + "type": "object" + }, + "_Peri": { + "description": "Model PERI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area", + "default": "Perirhinal area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI", + "default": "PERI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "922", + "default": "922", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri", + "type": "object" + }, + "_Peri1": { + "description": "Model PERI1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area, layer 1", + "default": "Perirhinal area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI1", + "default": "PERI1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "540", + "default": "540", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri1", + "type": "object" + }, + "_Peri2_3": { + "description": "Model PERI2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area, layer 2/3", + "default": "Perirhinal area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI2/3", + "default": "PERI2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "888", + "default": "888", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri2_3", + "type": "object" + }, + "_Peri5": { + "description": "Model PERI5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area, layer 5", + "default": "Perirhinal area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI5", + "default": "PERI5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "692", + "default": "692", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri5", + "type": "object" + }, + "_Peri6A": { + "description": "Model PERI6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area, layer 6a", + "default": "Perirhinal area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI6a", + "default": "PERI6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "335", + "default": "335", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri6A", + "type": "object" + }, + "_Peri6B": { + "description": "Model PERI6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area, layer 6b", + "default": "Perirhinal area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI6b", + "default": "PERI6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "368", + "default": "368", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri6B", + "type": "object" + }, + "_Pf": { + "description": "Model PF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parafascicular nucleus", + "default": "Parafascicular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PF", + "default": "PF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "930", + "default": "930", + "title": "Id", + "type": "string" + } + }, + "title": "_Pf", + "type": "object" + }, + "_Pfl": { + "description": "Model PFL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paraflocculus", + "default": "Paraflocculus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PFL", + "default": "PFL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1041", + "default": "1041", + "title": "Id", + "type": "string" + } + }, + "title": "_Pfl", + "type": "object" + }, + "_Pg": { + "description": "Model PG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pontine gray", + "default": "Pontine gray", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PG", + "default": "PG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "931", + "default": "931", + "title": "Id", + "type": "string" + } + }, + "title": "_Pg", + "type": "object" + }, + "_Pgrn": { + "description": "Model PGRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paragigantocellular reticular nucleus", + "default": "Paragigantocellular reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PGRN", + "default": "PGRN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "938", + "default": "938", + "title": "Id", + "type": "string" + } + }, + "title": "_Pgrn", + "type": "object" + }, + "_Pgrnd": { + "description": "Model PGRNd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paragigantocellular reticular nucleus, dorsal part", + "default": "Paragigantocellular reticular nucleus, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PGRNd", + "default": "PGRNd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "970", + "default": "970", + "title": "Id", + "type": "string" + } + }, + "title": "_Pgrnd", + "type": "object" + }, + "_Pgrnl": { + "description": "Model PGRNl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paragigantocellular reticular nucleus, lateral part", + "default": "Paragigantocellular reticular nucleus, lateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PGRNl", + "default": "PGRNl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "978", + "default": "978", + "title": "Id", + "type": "string" + } + }, + "title": "_Pgrnl", + "type": "object" + }, + "_Ph": { + "description": "Model PH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior hypothalamic nucleus", + "default": "Posterior hypothalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PH", + "default": "PH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "946", + "default": "946", + "title": "Id", + "type": "string" + } + }, + "title": "_Ph", + "type": "object" + }, + "_Phy": { + "description": "Model PHY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perihypoglossal nuclei", + "default": "Perihypoglossal nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PHY", + "default": "PHY", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "154", + "default": "154", + "title": "Id", + "type": "string" + } + }, + "title": "_Phy", "type": "object" }, - "RewardSpoutConfig": { - "additionalProperties": false, - "description": "Reward spout session information", + "_Pil": { + "description": "Model PIL", "properties": { - "side": { - "$ref": "#/$defs/SpoutSide", - "description": "Must match rig", - "title": "Spout side" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "starting_position": { - "$ref": "#/$defs/RelativePosition", - "title": "Starting position" + "name": { + "const": "Posterior intralaminar thalamic nucleus", + "default": "Posterior intralaminar thalamic nucleus", + "title": "Name", + "type": "string" }, - "variable_position": { - "description": "True if spout position changes during session as tracked in data", - "title": "Variable position", - "type": "boolean" + "acronym": { + "const": "PIL", + "default": "PIL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "560581563", + "default": "560581563", + "title": "Id", + "type": "string" } }, - "required": [ - "side", - "starting_position", - "variable_position" - ], - "title": "RewardSpoutConfig", + "title": "_Pil", "type": "object" }, - "Rig": { - "additionalProperties": false, - "description": "Description of a rig", + "_Pir": { + "description": "Model PIR", "properties": { - "describedBy": { - "const": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/rig.py", - "default": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/rig.py", - "title": "Describedby", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "schema_version": { - "const": "1.0.3", - "default": "1.0.3", - "enum": [ - "1.0.3" - ], - "title": "Schema Version", + "name": { + "const": "Piriform area", + "default": "Piriform area", + "title": "Name", "type": "string" }, - "rig_id": { - "description": "Unique rig identifier, name convention: --", - "pattern": "^[a-zA-Z0-9]+_[a-zA-Z0-9-]+_\\d{8}$", - "title": "Rig ID", + "acronym": { + "const": "PIR", + "default": "PIR", + "title": "Acronym", "type": "string" }, - "modification_date": { - "format": "date", - "title": "Date of modification", + "id": { + "const": "961", + "default": "961", + "title": "Id", + "type": "string" + } + }, + "title": "_Pir", + "type": "object" + }, + "_Pl": { + "description": "Model PL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "mouse_platform": { - "discriminator": { - "mapping": { - "Arena": "#/$defs/Arena", - "Disc": "#/$defs/Disc", - "Treadmill": "#/$defs/Treadmill", - "Tube": "#/$defs/Tube", - "Wheel": "#/$defs/Wheel" - }, - "propertyName": "device_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/Disc" - }, - { - "$ref": "#/$defs/Wheel" - }, - { - "$ref": "#/$defs/Tube" - }, - { - "$ref": "#/$defs/Treadmill" - }, - { - "$ref": "#/$defs/Arena" - } - ], - "title": "Mouse Platform" - }, - "stimulus_devices": { - "default": [], - "items": { - "discriminator": { - "mapping": { - "Monitor": "#/$defs/Monitor", - "Olfactometer": "#/$defs/Olfactometer", - "Reward delivery": "#/$defs/RewardDelivery", - "Speaker": "#/$defs/Speaker" - }, - "propertyName": "device_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/Monitor" - }, - { - "$ref": "#/$defs/Olfactometer" - }, - { - "$ref": "#/$defs/RewardDelivery" - }, - { - "$ref": "#/$defs/Speaker" - } - ] - }, - "title": "Stimulus devices", - "type": "array" - }, - "cameras": { - "default": [], - "items": { - "$ref": "#/$defs/CameraAssembly" - }, - "title": "Camera assemblies", - "type": "array" + "name": { + "const": "Prelimbic area", + "default": "Prelimbic area", + "title": "Name", + "type": "string" }, - "enclosure": { - "anyOf": [ - { - "$ref": "#/$defs/Enclosure" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Enclosure" + "acronym": { + "const": "PL", + "default": "PL", + "title": "Acronym", + "type": "string" }, - "ephys_assemblies": { - "default": [], - "items": { - "$ref": "#/$defs/EphysAssembly" - }, - "title": "Ephys probes", - "type": "array" + "id": { + "const": "972", + "default": "972", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl", + "type": "object" + }, + "_Pl1": { + "description": "Model PL1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "fiber_assemblies": { - "default": [], - "items": { - "$ref": "#/$defs/FiberAssembly" - }, - "title": "Inserted fiber optics", - "type": "array" + "name": { + "const": "Prelimbic area, layer 1", + "default": "Prelimbic area, layer 1", + "title": "Name", + "type": "string" }, - "stick_microscopes": { - "default": [], - "items": { - "$ref": "#/$defs/CameraAssembly" - }, - "title": "Stick microscopes", - "type": "array" + "acronym": { + "const": "PL1", + "default": "PL1", + "title": "Acronym", + "type": "string" }, - "laser_assemblies": { - "default": [], - "items": { - "$ref": "#/$defs/LaserAssembly" - }, - "title": "Laser modules", - "type": "array" + "id": { + "const": "171", + "default": "171", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl1", + "type": "object" + }, + "_Pl2_3": { + "description": "Model PL2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "patch_cords": { - "default": [], - "items": { - "$ref": "#/$defs/Patch" - }, - "title": "Patch cords", - "type": "array" + "name": { + "const": "Prelimbic area, layer 2/3", + "default": "Prelimbic area, layer 2/3", + "title": "Name", + "type": "string" }, - "light_sources": { - "default": [], - "items": { - "discriminator": { - "mapping": { - "Lamp": "#/$defs/Lamp", - "Laser": "#/$defs/Laser", - "Light emitting diode": "#/$defs/LightEmittingDiode" - }, - "propertyName": "device_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/Laser" - }, - { - "$ref": "#/$defs/LightEmittingDiode" - }, - { - "$ref": "#/$defs/Lamp" - } - ] - }, - "title": "Light sources", - "type": "array" + "acronym": { + "const": "PL2/3", + "default": "PL2/3", + "title": "Acronym", + "type": "string" }, - "detectors": { - "default": [], - "items": { - "$ref": "#/$defs/Detector" - }, - "title": "Detectors", - "type": "array" + "id": { + "const": "304", + "default": "304", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl2_3", + "type": "object" + }, + "_Pl5": { + "description": "Model PL5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "objectives": { - "default": [], - "items": { - "$ref": "#/$defs/Objective" - }, - "title": "Objectives", - "type": "array" + "name": { + "const": "Prelimbic area, layer 5", + "default": "Prelimbic area, layer 5", + "title": "Name", + "type": "string" }, - "filters": { - "default": [], - "items": { - "$ref": "#/$defs/Filter" - }, - "title": "Filters", - "type": "array" + "acronym": { + "const": "PL5", + "default": "PL5", + "title": "Acronym", + "type": "string" }, - "lenses": { - "default": [], - "items": { - "$ref": "#/$defs/Lens" - }, - "title": "Lenses", - "type": "array" + "id": { + "const": "363", + "default": "363", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl5", + "type": "object" + }, + "_Pl6A": { + "description": "Model PL6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "digital_micromirror_devices": { - "default": [], - "items": { - "$ref": "#/$defs/DigitalMicromirrorDevice" - }, - "title": "DMDs", - "type": "array" + "name": { + "const": "Prelimbic area, layer 6a", + "default": "Prelimbic area, layer 6a", + "title": "Name", + "type": "string" }, - "polygonal_scanners": { - "default": [], - "items": { - "$ref": "#/$defs/PolygonalScanner" - }, - "title": "Polygonal scanners", - "type": "array" + "acronym": { + "const": "PL6a", + "default": "PL6a", + "title": "Acronym", + "type": "string" }, - "pockels_cells": { - "default": [], - "items": { - "$ref": "#/$defs/PockelsCell" - }, - "title": "Pockels cells", - "type": "array" + "id": { + "const": "84", + "default": "84", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl6A", + "type": "object" + }, + "_Pl6B": { + "description": "Model PL6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "additional_devices": { - "default": [], - "items": { - "$ref": "#/$defs/Device" - }, - "title": "Additional devices", - "type": "array" + "name": { + "const": "Prelimbic area, layer 6b", + "default": "Prelimbic area, layer 6b", + "title": "Name", + "type": "string" }, - "daqs": { - "default": [], - "items": { - "discriminator": { - "mapping": { - "DAQ Device": "#/$defs/DAQDevice", - "Harp device": "#/$defs/HarpDevice", - "Neuropixels basestation": "#/$defs/NeuropixelsBasestation", - "Open Ephys acquisition board": "#/$defs/OpenEphysAcquisitionBoard" - }, - "propertyName": "device_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/HarpDevice" - }, - { - "$ref": "#/$defs/NeuropixelsBasestation" - }, - { - "$ref": "#/$defs/OpenEphysAcquisitionBoard" - }, - { - "$ref": "#/$defs/DAQDevice" - } - ] - }, - "title": "Data acquisition devices", - "type": "array" + "acronym": { + "const": "PL6b", + "default": "PL6b", + "title": "Acronym", + "type": "string" }, - "calibrations": { - "items": { - "$ref": "#/$defs/Calibration" - }, - "title": "Full calibration of devices", - "type": "array" + "id": { + "const": "132", + "default": "132", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl6B", + "type": "object" + }, + "_Placid_Industries": { + "description": "Model Placid Industries", + "properties": { + "name": { + "const": "Placid Industries", + "default": "Placid Industries", + "title": "Name", + "type": "string" }, - "ccf_coordinate_transform": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "abbreviation": { + "const": null, "default": null, - "description": "Path to file that details the CCF-to-lab coordinate transform", - "title": "CCF coordinate transform" + "title": "Abbreviation", + "type": "null" }, - "origin": { - "anyOf": [ - { - "$ref": "#/$defs/Origin" - }, - { - "type": "null" - } - ], + "registry": { "default": null, - "title": "Origin point for rig position transforms" + "title": "Registry", + "type": "null" }, - "rig_axes": { - "anyOf": [ - { - "items": { - "$ref": "#/$defs/Axis" - }, - "maxItems": 3, - "minItems": 3, - "type": "array" - }, - { - "type": "null" - } - ], + "registry_identifier": { "default": null, - "title": "Rig axes" + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Placid_Industries", + "type": "object" + }, + "_Pm": { + "description": "Model pm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "modalities": { - "items": { - "discriminator": { - "mapping": { - "EMG": "#/$defs/_Emg", - "ISI": "#/$defs/aind_data_schema_models__modalities___Isi", - "MRI": "#/$defs/aind_data_schema_models__modalities___Mri", - "SPIM": "#/$defs/_Spim", - "behavior": "#/$defs/aind_data_schema_models__modalities___Behavior", - "behavior-videos": "#/$defs/_Behavior_Videos", - "confocal": "#/$defs/aind_data_schema_models__modalities___Confocal", - "ecephys": "#/$defs/aind_data_schema_models__modalities___Ecephys", - "fMOST": "#/$defs/_Fmost", - "fib": "#/$defs/_Fib", - "icephys": "#/$defs/_Icephys", - "merfish": "#/$defs/aind_data_schema_models__modalities___Merfish", - "pophys": "#/$defs/_Pophys", - "slap": "#/$defs/_Slap" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__modalities___Behavior" - }, - { - "$ref": "#/$defs/_Behavior_Videos" - }, - { - "$ref": "#/$defs/aind_data_schema_models__modalities___Confocal" - }, - { - "$ref": "#/$defs/_Emg" - }, - { - "$ref": "#/$defs/aind_data_schema_models__modalities___Ecephys" - }, - { - "$ref": "#/$defs/_Fib" - }, - { - "$ref": "#/$defs/_Fmost" - }, - { - "$ref": "#/$defs/_Icephys" - }, - { - "$ref": "#/$defs/aind_data_schema_models__modalities___Isi" - }, - { - "$ref": "#/$defs/aind_data_schema_models__modalities___Mri" - }, - { - "$ref": "#/$defs/aind_data_schema_models__modalities___Merfish" - }, - { - "$ref": "#/$defs/_Pophys" - }, - { - "$ref": "#/$defs/_Slap" - }, - { - "$ref": "#/$defs/_Spim" - } - ] - }, - "title": "Modalities", - "type": "array", - "uniqueItems": true + "name": { + "const": "principal mammillary tract", + "default": "principal mammillary tract", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "pm", + "default": "pm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "753", + "default": "753", + "title": "Id", + "type": "string" + } + }, + "title": "_Pm", + "type": "object" + }, + "_Pmd": { + "description": "Model PMd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal premammillary nucleus", + "default": "Dorsal premammillary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PMd", + "default": "PMd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "980", + "default": "980", + "title": "Id", + "type": "string" } }, - "required": [ - "rig_id", - "modification_date", - "mouse_platform", - "calibrations", - "modalities" - ], - "title": "Rig", + "title": "_Pmd", "type": "object" }, - "Rotation3dTransform": { - "additionalProperties": false, - "description": "Values to be vector-added to a 3D position. Often needed to specify a device or tile's origin.", + "_Pmv": { + "description": "Model PMv", "properties": { - "type": { - "const": "rotation", - "default": "rotation", - "enum": [ - "rotation" - ], - "title": "Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "rotation": { - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "maxItems": 9, - "minItems": 9, - "title": "3D rotation matrix values (3x3) ", - "type": "array" + "name": { + "const": "Ventral premammillary nucleus", + "default": "Ventral premammillary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PMv", + "default": "PMv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1004", + "default": "1004", + "title": "Id", + "type": "string" } }, - "required": [ - "rotation" - ], - "title": "Rotation3dTransform", + "title": "_Pmv", "type": "object" }, - "Scale3dTransform": { - "additionalProperties": false, - "description": "Values to be vector-multiplied with a 3D position, equivalent to the diagonals of a 3x3 transform matrix.\nRepresents voxel spacing if used as the first applied coordinate transform.", + "_Pn": { + "description": "Model PN", "properties": { - "type": { - "const": "scale", - "default": "scale", - "enum": [ - "scale" - ], - "title": "Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "scale": { - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "maxItems": 3, - "minItems": 3, - "title": "3D scale parameters", - "type": "array" + "name": { + "const": "Paranigral nucleus", + "default": "Paranigral nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PN", + "default": "PN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344830", + "default": "607344830", + "title": "Id", + "type": "string" } }, - "required": [ - "scale" - ], - "title": "Scale3dTransform", + "title": "_Pn", "type": "object" }, - "ScanType": { - "description": "Type of scan", - "enum": [ - "Set Up", - "3D Scan" - ], - "title": "ScanType", - "type": "string" - }, - "Scanner": { - "additionalProperties": false, - "description": "Description of a MRI Scanner", + "_Po": { + "description": "Model PO", "properties": { - "device_type": { - "const": "Scanner", - "default": "Scanner", - "enum": [ - "Scanner" - ], - "title": "Device Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, "name": { - "title": "Device name", + "const": "Posterior complex of the thalamus", + "default": "Posterior complex of the thalamus", + "title": "Name", "type": "string" }, - "serial_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Serial number" - }, - "manufacturer": { - "anyOf": [ - { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ] - }, - { - "type": "null" - } - ], - "default": null, - "title": "Manufacturer" + "acronym": { + "const": "PO", + "default": "PO", + "title": "Acronym", + "type": "string" }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Model" + "id": { + "const": "1020", + "default": "1020", + "title": "Id", + "type": "string" + } + }, + "title": "_Po", + "type": "object" + }, + "_Pol": { + "description": "Model POL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "path_to_cad": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" + "name": { + "const": "Posterior limiting nucleus of the thalamus", + "default": "Posterior limiting nucleus of the thalamus", + "title": "Name", + "type": "string" }, - "port_index": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Port index" + "acronym": { + "const": "POL", + "default": "POL", + "title": "Acronym", + "type": "string" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "id": { + "const": "1029", + "default": "1029", + "title": "Id", + "type": "string" + } + }, + "title": "_Pol", + "type": "object" + }, + "_Pophys": { + "additionalProperties": false, + "description": "Model pophys", + "properties": { + "name": { + "const": "Planar optical physiology", + "default": "Planar optical physiology", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "abbreviation": { + "const": "pophys", + "default": "pophys", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Pophys", + "type": "object" + }, + "_Por": { + "description": "Model POR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "scanner_location": { - "$ref": "#/$defs/ScannerLocation", - "title": "Scanner location" + "name": { + "const": "Superior olivary complex, periolivary region", + "default": "Superior olivary complex, periolivary region", + "title": "Name", + "type": "string" }, - "magnetic_strength": { - "$ref": "#/$defs/MagneticStrength", - "title": "Magnetic strength (T)" + "acronym": { + "const": "POR", + "default": "POR", + "title": "Acronym", + "type": "string" }, - "magnetic_strength_unit": { - "default": "T", - "title": "Magnetic strength unit", + "id": { + "const": "122", + "default": "122", + "title": "Id", "type": "string" } }, - "required": [ - "name", - "scanner_location", - "magnetic_strength" - ], - "title": "Scanner", + "title": "_Por", "type": "object" }, - "ScannerLocation": { - "description": "location of scanner", - "enum": [ - "Fred Hutch", - "UW SLU" - ], - "title": "ScannerLocation", - "type": "string" + "_Post": { + "description": "Model POST", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Postsubiculum", + "default": "Postsubiculum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "POST", + "default": "POST", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1037", + "default": "1037", + "title": "Id", + "type": "string" + } + }, + "title": "_Post", + "type": "object" }, - "ScanningStage": { - "additionalProperties": false, - "description": "Description of a scanning motorized stages", + "_Pot": { + "description": "Model PoT", "properties": { - "device_type": { - "const": "Motorized stage", - "default": "Motorized stage", - "enum": [ - "Motorized stage" - ], - "title": "Device Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, "name": { - "title": "Device name", + "const": "Posterior triangular thalamic nucleus", + "default": "Posterior triangular thalamic nucleus", + "title": "Name", "type": "string" }, - "serial_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Serial number" + "acronym": { + "const": "PoT", + "default": "PoT", + "title": "Acronym", + "type": "string" }, - "manufacturer": { - "anyOf": [ - { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ] - }, - { - "type": "null" - } - ], - "default": null, - "title": "Manufacturer" + "id": { + "const": "563807435", + "default": "563807435", + "title": "Id", + "type": "string" + } + }, + "title": "_Pot", + "type": "object" + }, + "_Pp": { + "description": "Model PP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "name": { + "const": "Peripeduncular nucleus", + "default": "Peripeduncular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PP", + "default": "PP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1044", + "default": "1044", + "title": "Id", + "type": "string" + } + }, + "title": "_Pp", + "type": "object" + }, + "_Ppn": { + "description": "Model PPN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pedunculopontine nucleus", + "default": "Pedunculopontine nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PPN", + "default": "PPN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1052", + "default": "1052", + "title": "Id", + "type": "string" + } + }, + "title": "_Ppn", + "type": "object" + }, + "_Ppt": { + "description": "Model PPT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior pretectal nucleus", + "default": "Posterior pretectal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PPT", + "default": "PPT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1061", + "default": "1061", + "title": "Id", + "type": "string" + } + }, + "title": "_Ppt", + "type": "object" + }, + "_Ppy": { + "description": "Model PPY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parapyramidal nucleus", + "default": "Parapyramidal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PPY", + "default": "PPY", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1069", + "default": "1069", + "title": "Id", + "type": "string" + } + }, + "title": "_Ppy", + "type": "object" + }, + "_Pr": { + "description": "Model PR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perireunensis nucleus", + "default": "Perireunensis nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PR", + "default": "PR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1077", + "default": "1077", + "title": "Id", + "type": "string" + } + }, + "title": "_Pr", + "type": "object" + }, + "_Prc": { + "description": "Model PRC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Precommissural nucleus", + "default": "Precommissural nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRC", + "default": "PRC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "50", + "default": "50", + "title": "Id", + "type": "string" + } + }, + "title": "_Prc", + "type": "object" + }, + "_Pre": { + "description": "Model PRE", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Presubiculum", + "default": "Presubiculum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRE", + "default": "PRE", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1084", + "default": "1084", + "title": "Id", + "type": "string" + } + }, + "title": "_Pre", + "type": "object" + }, + "_Prizmatix": { + "description": "Model Prizmatix", + "properties": { + "name": { + "const": "Prizmatix", + "default": "Prizmatix", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, "default": null, - "title": "Model" + "title": "Abbreviation", + "type": "null" }, - "path_to_cad": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "registry": { "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" + "title": "Registry", + "type": "null" }, - "port_index": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "registry_identifier": { "default": null, - "title": "Port index" + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Prizmatix", + "type": "object" + }, + "_Prm": { + "description": "Model PRM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "name": { + "const": "Paramedian lobule", + "default": "Paramedian lobule", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "PRM", + "default": "PRM", + "title": "Acronym", + "type": "string" }, - "travel": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Travel of device (mm)" + "id": { + "const": "1025", + "default": "1025", + "title": "Id", + "type": "string" + } + }, + "title": "_Prm", + "type": "object" + }, + "_Prnc": { + "description": "Model PRNc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "travel_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Travel unit" + "name": { + "const": "Pontine reticular nucleus, caudal part", + "default": "Pontine reticular nucleus, caudal part", + "title": "Name", + "type": "string" }, - "firmware": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Firmware" + "acronym": { + "const": "PRNc", + "default": "PRNc", + "title": "Acronym", + "type": "string" }, - "stage_axis_direction": { - "$ref": "#/$defs/StageAxisDirection", - "title": "Direction of stage axis" + "id": { + "const": "1093", + "default": "1093", + "title": "Id", + "type": "string" + } + }, + "title": "_Prnc", + "type": "object" + }, + "_Prnr": { + "description": "Model PRNr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "stage_axis_name": { - "$ref": "#/$defs/StageAxisName", - "title": "Name of stage axis" + "name": { + "const": "Pontine reticular nucleus", + "default": "Pontine reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRNr", + "default": "PRNr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "146", + "default": "146", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "travel", - "stage_axis_direction", - "stage_axis_name" - ], - "title": "ScanningStage", + "title": "_Prnr", "type": "object" }, - "SectionOrientation": { - "description": "Orientation of sectioning", - "enum": [ - "Coronal", - "Sagittal", - "Transverse" - ], - "title": "SectionOrientation", - "type": "string" + "_Pros": { + "description": "Model ProS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Prosubiculum", + "default": "Prosubiculum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ProS", + "default": "ProS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682470", + "default": "484682470", + "title": "Id", + "type": "string" + } + }, + "title": "_Pros", + "type": "object" }, - "SectionStrategy": { - "description": "Section strategy", - "enum": [ - "Whole Brain", - "Hemi Brain" - ], - "title": "SectionStrategy", - "type": "string" + "_Prp": { + "description": "Model PRP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus prepositus", + "default": "Nucleus prepositus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRP", + "default": "PRP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "169", + "default": "169", + "title": "Id", + "type": "string" + } + }, + "title": "_Prp", + "type": "object" }, - "Sectioning": { - "additionalProperties": false, - "description": "Description of a sectioning procedure", + "_Prt": { + "description": "Model PRT", "properties": { - "procedure_type": { - "const": "Sectioning", - "default": "Sectioning", - "enum": [ - "Sectioning" - ], - "title": "Procedure Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pretectal region", + "default": "Pretectal region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRT", + "default": "PRT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1100", + "default": "1100", + "title": "Id", + "type": "string" + } + }, + "title": "_Prt", + "type": "object" + }, + "_Ps": { + "description": "Model PS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parastrial nucleus", + "default": "Parastrial nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PS", + "default": "PS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1109", + "default": "1109", + "title": "Id", + "type": "string" + } + }, + "title": "_Ps", + "type": "object" + }, + "_Pst": { + "description": "Model PST", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Preparasubthalamic nucleus", + "default": "Preparasubthalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PST", + "default": "PST", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "356", + "default": "356", + "title": "Id", + "type": "string" + } + }, + "title": "_Pst", + "type": "object" + }, + "_Pstn": { + "description": "Model PSTN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parasubthalamic nucleus", + "default": "Parasubthalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PSTN", + "default": "PSTN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "364", + "default": "364", + "title": "Id", + "type": "string" + } + }, + "title": "_Pstn", + "type": "object" + }, + "_Psv": { + "description": "Model PSV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Principal sensory nucleus of the trigeminal", + "default": "Principal sensory nucleus of the trigeminal", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PSV", + "default": "PSV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "7", + "default": "7", + "title": "Id", + "type": "string" + } + }, + "title": "_Psv", + "type": "object" + }, + "_Pt": { + "description": "Model PT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parataenial nucleus", + "default": "Parataenial nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PT", + "default": "PT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "15", + "default": "15", + "title": "Id", + "type": "string" + } + }, + "title": "_Pt", + "type": "object" + }, + "_Ptlp": { + "description": "Model PTLp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior parietal association areas", + "default": "Posterior parietal association areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PTLp", + "default": "PTLp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "22", + "default": "22", + "title": "Id", + "type": "string" + } + }, + "title": "_Ptlp", + "type": "object" + }, + "_Pva": { + "description": "Model PVa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periventricular hypothalamic nucleus, anterior part", + "default": "Periventricular hypothalamic nucleus, anterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVa", + "default": "PVa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "30", + "default": "30", + "title": "Id", + "type": "string" + } + }, + "title": "_Pva", + "type": "object" + }, + "_Pvh": { + "description": "Model PVH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paraventricular hypothalamic nucleus", + "default": "Paraventricular hypothalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVH", + "default": "PVH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "38", + "default": "38", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvh", + "type": "object" + }, + "_Pvhd": { + "description": "Model PVHd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paraventricular hypothalamic nucleus, descending division", + "default": "Paraventricular hypothalamic nucleus, descending division", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVHd", + "default": "PVHd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "63", + "default": "63", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvhd", + "type": "object" + }, + "_Pvi": { + "description": "Model PVi", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periventricular hypothalamic nucleus, intermediate part", + "default": "Periventricular hypothalamic nucleus, intermediate part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVi", + "default": "PVi", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "118", + "default": "118", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvi", + "type": "object" + }, + "_Pvp": { + "description": "Model PVp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periventricular hypothalamic nucleus, posterior part", + "default": "Periventricular hypothalamic nucleus, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVp", + "default": "PVp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "126", + "default": "126", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvp", + "type": "object" + }, + "_Pvpo": { + "description": "Model PVpo", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periventricular hypothalamic nucleus, preoptic part", + "default": "Periventricular hypothalamic nucleus, preoptic part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVpo", + "default": "PVpo", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "133", + "default": "133", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvpo", + "type": "object" + }, + "_Pvr": { + "description": "Model PVR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periventricular region", + "default": "Periventricular region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVR", + "default": "PVR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "141", + "default": "141", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvr", + "type": "object" + }, + "_Pvt": { + "description": "Model PVT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "number_of_slices": { - "title": "Number of slices", - "type": "integer" - }, - "output_specimen_ids": { - "items": { - "type": "string" - }, - "minItems": 1, - "title": "Output specimen ids", - "type": "array" + "name": { + "const": "Paraventricular nucleus of the thalamus", + "default": "Paraventricular nucleus of the thalamus", + "title": "Name", + "type": "string" }, - "section_orientation": { - "$ref": "#/$defs/SectionOrientation", - "title": "Sectioning orientation" + "acronym": { + "const": "PVT", + "default": "PVT", + "title": "Acronym", + "type": "string" }, - "section_thickness": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Section thickness" + "id": { + "const": "149", + "default": "149", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvt", + "type": "object" + }, + "_Pvz": { + "description": "Model PVZ", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "section_thickness_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Section thickness unit" + "name": { + "const": "Periventricular zone", + "default": "Periventricular zone", + "title": "Name", + "type": "string" }, - "section_distance_from_reference": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Section distance from reference" + "acronym": { + "const": "PVZ", + "default": "PVZ", + "title": "Acronym", + "type": "string" }, - "section_distance_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Distance unit" + "id": { + "const": "157", + "default": "157", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvz", + "type": "object" + }, + "_Py": { + "description": "Model py", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "reference_location": { - "$ref": "#/$defs/CoordinateReferenceLocation", - "title": "Reference location for distance measurement" + "name": { + "const": "pyramid", + "default": "pyramid", + "title": "Name", + "type": "string" }, - "section_strategy": { - "$ref": "#/$defs/SectionStrategy", - "title": "Slice strategy" + "acronym": { + "const": "py", + "default": "py", + "title": "Acronym", + "type": "string" }, - "targeted_structure": { - "description": "Use Allen Brain Atlas Ontology", - "title": "Targeted structure", + "id": { + "const": "190", + "default": "190", + "title": "Id", "type": "string" } }, - "required": [ - "number_of_slices", - "output_specimen_ids", - "section_orientation", - "section_thickness", - "section_distance_from_reference", - "reference_location", - "section_strategy", - "targeted_structure" - ], - "title": "Sectioning", + "title": "_Py", "type": "object" }, - "Session": { - "additionalProperties": false, - "description": "Description of a physiology and/or behavior session", + "_Pyd": { + "description": "Model pyd", "properties": { - "describedBy": { - "const": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/session.py", - "default": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/session.py", - "title": "Describedby", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "schema_version": { - "const": "1.0.3", - "default": "1.0.3", - "enum": [ - "1.0.3" - ], - "title": "Schema Version", + "name": { + "const": "pyramidal decussation", + "default": "pyramidal decussation", + "title": "Name", "type": "string" }, - "protocol_id": { - "default": [], - "description": "DOI for protocols.io", - "items": { - "type": "string" - }, - "title": "Protocol ID", - "type": "array" + "acronym": { + "const": "pyd", + "default": "pyd", + "title": "Acronym", + "type": "string" }, - "experimenter_full_name": { - "description": "First and last name of the experimenter(s).", - "items": { - "type": "string" - }, - "title": "Experimenter(s) full name", - "type": "array" + "id": { + "const": "198", + "default": "198", + "title": "Id", + "type": "string" + } + }, + "title": "_Pyd", + "type": "object" + }, + "_Pyr": { + "description": "Model PYR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "session_start_time": { - "format": "date-time", - "title": "Session start time", + "name": { + "const": "Pyramus (VIII)", + "default": "Pyramus (VIII)", + "title": "Name", "type": "string" }, - "session_end_time": { - "anyOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Session end time" + "acronym": { + "const": "PYR", + "default": "PYR", + "title": "Acronym", + "type": "string" }, - "session_type": { - "title": "Session type", + "id": { + "const": "951", + "default": "951", + "title": "Id", + "type": "string" + } + }, + "title": "_Pyr", + "type": "object" + }, + "_Quantifi": { + "description": "Model Quantifi", + "properties": { + "name": { + "const": "Quantifi", + "default": "Quantifi", + "title": "Name", "type": "string" }, - "iacuc_protocol": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "abbreviation": { + "const": null, "default": null, - "title": "IACUC protocol" + "title": "Abbreviation", + "type": "null" }, - "rig_id": { - "title": "Rig ID", + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Quantifi", + "type": "object" + }, + "_Ramb": { + "description": "Model RAmb", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "calibrations": { - "default": [], - "description": "Calibrations of rig devices prior to session", - "items": { - "$ref": "#/$defs/Calibration" - }, - "title": "Calibrations", - "type": "array" + "name": { + "const": "Midbrain raphe nuclei", + "default": "Midbrain raphe nuclei", + "title": "Name", + "type": "string" }, - "maintenance": { - "default": [], - "description": "Maintenance of rig devices prior to session", - "items": { - "$ref": "#/$defs/Maintenance" - }, - "title": "Maintenance", - "type": "array" + "acronym": { + "const": "RAmb", + "default": "RAmb", + "title": "Acronym", + "type": "string" }, - "subject_id": { - "title": "Subject ID", + "id": { + "const": "165", + "default": "165", + "title": "Id", + "type": "string" + } + }, + "title": "_Ramb", + "type": "object" + }, + "_Raspberry_Pi": { + "description": "Model Raspberry Pi", + "properties": { + "name": { + "const": "Raspberry Pi", + "default": "Raspberry Pi", + "title": "Name", "type": "string" }, - "animal_weight_prior": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], + "abbreviation": { + "const": null, "default": null, - "description": "Animal weight before procedure", - "title": "Animal weight (g)" + "title": "Abbreviation", + "type": "null" }, - "animal_weight_post": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], + "registry": { "default": null, - "description": "Animal weight after procedure", - "title": "Animal weight (g)" - }, - "weight_unit": { - "$ref": "#/$defs/MassUnit", - "default": "gram", - "title": "Weight unit" + "title": "Registry", + "type": "null" }, - "anaesthesia": { - "anyOf": [ - { - "$ref": "#/$defs/Anaesthetic" - }, - { - "type": "null" - } - ], + "registry_identifier": { "default": null, - "title": "Anaesthesia" + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Raspberry_Pi", + "type": "object" + }, + "_Rattus_Norvegicus": { + "description": "Model Rattus norvegicus", + "properties": { + "name": { + "const": "Rattus norvegicus", + "default": "Rattus norvegicus", + "title": "Name", + "type": "string" }, - "data_streams": { - "description": "A data stream is a collection of devices that are recorded simultaneously. Each session can include multiple streams (e.g., if the manipulators are moved to a new location)", - "items": { - "$ref": "#/$defs/Stream" + "registry": { + "default": { + "name": "National Center for Biotechnology Information", + "abbreviation": "NCBI" }, - "title": "Data streams", - "type": "array" - }, - "stimulus_epochs": { - "default": [], - "items": { - "$ref": "#/$defs/StimulusEpoch" + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" }, - "title": "Stimulus", - "type": "array" - }, - "mouse_platform_name": { - "title": "Mouse platform", - "type": "string" - }, - "active_mouse_platform": { - "description": "Is the mouse platform being actively controlled", - "title": "Active mouse platform", - "type": "boolean" - }, - "headframe_registration": { - "anyOf": [ + "oneOf": [ { - "$ref": "#/$defs/Affine3dTransform" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "type": "null" - } - ], - "default": null, - "description": "MRI transform matrix for headframe", - "title": "Headframe registration" - }, - "reward_delivery": { - "anyOf": [ - { - "$ref": "#/$defs/RewardDeliveryConfig" + "$ref": "#/$defs/_Emapa" }, { - "type": "null" - } - ], - "default": null, - "title": "Reward delivery" - }, - "reward_consumed_total": { - "anyOf": [ - { - "type": "number" + "$ref": "#/$defs/_Mgi" }, { - "type": "string" + "$ref": "#/$defs/_Ncbi" }, { - "type": "null" - } - ], - "default": null, - "title": "Total reward consumed (mL)" - }, - "reward_consumed_unit": { - "$ref": "#/$defs/VolumeUnit", - "default": "milliliter", - "title": "Reward consumed unit" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Orcid" + }, { - "type": "string" + "$ref": "#/$defs/_Ror" }, { - "type": "null" + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "title": "Notes" + "title": "Registry" + }, + "registry_identifier": { + "const": "NCBI:txid10116", + "default": "NCBI:txid10116", + "title": "Registry Identifier", + "type": "string" } }, - "required": [ - "experimenter_full_name", - "session_start_time", - "session_type", - "rig_id", - "subject_id", - "data_streams", - "mouse_platform_name", - "active_mouse_platform" - ], - "title": "Session", + "title": "_Rattus_Norvegicus", "type": "object" }, - "Sex": { - "description": "Subject sex name", - "enum": [ - "Female", - "Male" - ], - "title": "Sex", - "type": "string" - }, - "Side": { - "description": "Side of animal", - "enum": [ - "Left", - "Right", - "Midline" - ], - "title": "Side", - "type": "string" + "_Rch": { + "description": "Model RCH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrochiasmatic area", + "default": "Retrochiasmatic area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RCH", + "default": "RCH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "173", + "default": "173", + "title": "Id", + "type": "string" + } + }, + "title": "_Rch", + "type": "object" }, - "Size3d": { - "additionalProperties": false, - "description": "3D size of an object", + "_Re": { + "description": "Model RE", "properties": { - "width": { - "title": "Width", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "length": { - "title": "Length", - "type": "integer" + "name": { + "const": "Nucleus of reuniens", + "default": "Nucleus of reuniens", + "title": "Name", + "type": "string" }, - "height": { - "title": "Height", - "type": "integer" + "acronym": { + "const": "RE", + "default": "RE", + "title": "Acronym", + "type": "string" }, - "unit": { - "$ref": "#/$defs/SizeUnit", - "default": "meter", - "title": "Size unit" + "id": { + "const": "181", + "default": "181", + "title": "Id", + "type": "string" } }, - "required": [ - "width", - "length", - "height" - ], - "title": "Size3d", + "title": "_Re", "type": "object" }, - "SizeUnit": { - "description": "Enumeration of Length Measurements", - "enum": [ - "meter", - "centimeter", - "millimeter", - "micrometer", - "nanometer", - "inch", - "pixel" - ], - "title": "SizeUnit", - "type": "string" + "_Rh": { + "description": "Model RH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Rhomboid nucleus", + "default": "Rhomboid nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RH", + "default": "RH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "189", + "default": "189", + "title": "Id", + "type": "string" + } + }, + "title": "_Rh", + "type": "object" }, - "SlapFieldOfView": { - "additionalProperties": false, - "description": "Description of a Slap2 scan", + "_Rhp": { + "description": "Model RHP", "properties": { - "index": { - "title": "Index", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "imaging_depth": { - "title": "Imaging depth (um)", - "type": "integer" + "name": { + "const": "Retrohippocampal region", + "default": "Retrohippocampal region", + "title": "Name", + "type": "string" }, - "imaging_depth_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Imaging depth unit" + "acronym": { + "const": "RHP", + "default": "RHP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "822", + "default": "822", + "title": "Id", + "type": "string" + } + }, + "title": "_Rhp", + "type": "object" + }, + "_Rl": { + "description": "Model RL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "targeted_structure": { - "title": "Targeted structure", + "name": { + "const": "Rostral linear nucleus raphe", + "default": "Rostral linear nucleus raphe", + "title": "Name", "type": "string" }, - "fov_coordinate_ml": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "FOV coordinate ML" + "acronym": { + "const": "RL", + "default": "RL", + "title": "Acronym", + "type": "string" }, - "fov_coordinate_ap": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "FOV coordinate AP" + "id": { + "const": "197", + "default": "197", + "title": "Id", + "type": "string" + } + }, + "title": "_Rl", + "type": "object" + }, + "_Rm": { + "description": "Model RM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "fov_coordinate_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "FOV coordinate unit" + "name": { + "const": "Nucleus raphe magnus", + "default": "Nucleus raphe magnus", + "title": "Name", + "type": "string" }, - "fov_reference": { - "description": "Reference for ML/AP coordinates", - "title": "FOV reference", + "acronym": { + "const": "RM", + "default": "RM", + "title": "Acronym", "type": "string" }, - "fov_width": { - "title": "FOV width (pixels)", - "type": "integer" + "id": { + "const": "206", + "default": "206", + "title": "Id", + "type": "string" + } + }, + "title": "_Rm", + "type": "object" + }, + "_Rn": { + "description": "Model RN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "fov_height": { - "title": "FOV height (pixels)", - "type": "integer" + "name": { + "const": "Red nucleus", + "default": "Red nucleus", + "title": "Name", + "type": "string" }, - "fov_size_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "pixel", - "title": "FOV size unit" + "acronym": { + "const": "RN", + "default": "RN", + "title": "Acronym", + "type": "string" }, - "magnification": { - "title": "Magnification", + "id": { + "const": "214", + "default": "214", + "title": "Id", + "type": "string" + } + }, + "title": "_Rn", + "type": "object" + }, + "_Ro": { + "description": "Model RO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "fov_scale_factor": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "FOV scale factor (um/pixel)" + "name": { + "const": "Nucleus raphe obscurus", + "default": "Nucleus raphe obscurus", + "title": "Name", + "type": "string" }, - "fov_scale_factor_unit": { - "default": "um/pixel", - "title": "FOV scale factor unit", + "acronym": { + "const": "RO", + "default": "RO", + "title": "Acronym", "type": "string" }, - "frame_rate": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Frame rate (Hz)" + "id": { + "const": "222", + "default": "222", + "title": "Id", + "type": "string" + } + }, + "title": "_Ro", + "type": "object" + }, + "_Root": { + "description": "Model root", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "frame_rate_unit": { - "$ref": "#/$defs/FrequencyUnit", - "default": "hertz", - "title": "Frame rate unit" + "name": { + "const": "root", + "default": "root", + "title": "Name", + "type": "string" }, - "coupled_fov_index": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Coupled planes for multiscope", - "title": "Coupled FOV" + "acronym": { + "const": "root", + "default": "root", + "title": "Acronym", + "type": "string" }, - "power": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "For coupled planes, this power is shared by both planes", - "title": "Power" + "id": { + "const": "997", + "default": "997", + "title": "Id", + "type": "string" + } + }, + "title": "_Root", + "type": "object" + }, + "_Ror": { + "additionalProperties": false, + "description": "Model ROR", + "properties": { + "name": { + "const": "Research Organization Registry", + "default": "Research Organization Registry", + "title": "Name", + "type": "string" }, - "power_unit": { - "$ref": "#/$defs/PowerUnit", - "default": "percent", - "title": "Power unit" + "abbreviation": { + "const": "ROR", + "default": "ROR", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Ror", + "type": "object" + }, + "_Rpa": { + "description": "Model RPA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "power_ratio": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Power ratio for coupled planes" + "name": { + "const": "Nucleus raphe pallidus", + "default": "Nucleus raphe pallidus", + "title": "Name", + "type": "string" }, - "scanfield_z": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Z stage position of the fastz actuator for a given targeted depth" + "acronym": { + "const": "RPA", + "default": "RPA", + "title": "Acronym", + "type": "string" }, - "scanfield_z_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Z stage position unit" + "id": { + "const": "230", + "default": "230", + "title": "Id", + "type": "string" + } + }, + "title": "_Rpa", + "type": "object" + }, + "_Rpf": { + "description": "Model RPF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "scanimage_roi_index": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "default": null, - "title": "ScanImage ROI index" + "name": { + "const": "Retroparafascicular nucleus", + "default": "Retroparafascicular nucleus", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "RPF", + "default": "RPF", + "title": "Acronym", + "type": "string" }, - "session_type": { - "$ref": "#/$defs/SlapSessionType", - "title": "Session type" + "id": { + "const": "549009203", + "default": "549009203", + "title": "Id", + "type": "string" + } + }, + "title": "_Rpf", + "type": "object" + }, + "_Rpo": { + "description": "Model RPO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "dmd_dilation_x": { - "title": "DMD Dilation X (pixels)", - "type": "integer" + "name": { + "const": "Nucleus raphe pontis", + "default": "Nucleus raphe pontis", + "title": "Name", + "type": "string" }, - "dmd_dilation_y": { - "title": "DMD Dilation Y (pixels)", - "type": "integer" + "acronym": { + "const": "RPO", + "default": "RPO", + "title": "Acronym", + "type": "string" }, - "dilation_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "pixel", - "title": "Dilation unit" + "id": { + "const": "238", + "default": "238", + "title": "Id", + "type": "string" + } + }, + "title": "_Rpo", + "type": "object" + }, + "_Rr": { + "description": "Model RR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "target_neuron": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Target neuron" + "name": { + "const": "Midbrain reticular nucleus, retrorubral area", + "default": "Midbrain reticular nucleus, retrorubral area", + "title": "Name", + "type": "string" }, - "target_branch": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Target branch" + "acronym": { + "const": "RR", + "default": "RR", + "title": "Acronym", + "type": "string" }, - "path_to_array_of_frame_rates": { - "title": "Array of frame rates", + "id": { + "const": "246", + "default": "246", + "title": "Id", "type": "string" } }, - "required": [ - "index", - "imaging_depth", - "targeted_structure", - "fov_coordinate_ml", - "fov_coordinate_ap", - "fov_reference", - "fov_width", - "fov_height", - "magnification", - "fov_scale_factor", - "session_type", - "dmd_dilation_x", - "dmd_dilation_y", - "path_to_array_of_frame_rates" - ], - "title": "SlapFieldOfView", + "title": "_Rr", "type": "object" }, - "SlapSessionType": { - "description": "Type of slap session", - "enum": [ - "Parent", - "Branch" - ], - "title": "SlapSessionType", - "type": "string" - }, - "Software": { + "_Rrid": { "additionalProperties": false, - "description": "Description of generic software", + "description": "Model RRID", "properties": { "name": { - "title": "Software name", + "const": "Research Resource Identifiers", + "default": "Research Resource Identifiers", + "title": "Name", "type": "string" }, - "version": { - "title": "Software version", + "abbreviation": { + "const": "RRID", + "default": "RRID", + "title": "Abbreviation", "type": "string" - }, - "url": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "URL to commit being used" - }, - "parameters": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Software parameters" } }, - "required": [ - "name", - "version" - ], - "title": "Software", + "title": "_Rrid", "type": "object" }, - "SoundIntensityUnit": { - "const": "decibels", - "description": "Sound intensity units", - "enum": [ - "decibels" - ], - "title": "SoundIntensityUnit", - "type": "string" - }, - "Speaker": { - "additionalProperties": false, - "description": "Description of a speaker for auditory stimuli", + "_Rsp": { + "description": "Model RSP", "properties": { - "device_type": { - "const": "Speaker", - "default": "Speaker", - "enum": [ - "Speaker" - ], - "title": "Device Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, "name": { - "title": "Device name", + "const": "Retrosplenial area", + "default": "Retrosplenial area", + "title": "Name", "type": "string" }, - "serial_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Serial number" - }, - "manufacturer": { - "discriminator": { - "mapping": { - "ISL Products International": "#/$defs/_Isl_Products_International", - "Other": "#/$defs/_Other", - "Tymphany": "#/$defs/_Tymphany" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Other" - } - ], - "title": "Manufacturer" - }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Model" + "acronym": { + "const": "RSP", + "default": "RSP", + "title": "Acronym", + "type": "string" }, - "path_to_cad": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" + "id": { + "const": "254", + "default": "254", + "title": "Id", + "type": "string" + } + }, + "title": "_Rsp", + "type": "object" + }, + "_Rspagl": { + "description": "Model RSPagl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "port_index": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Port index" + "name": { + "const": "Retrosplenial area, lateral agranular part", + "default": "Retrosplenial area, lateral agranular part", + "title": "Name", + "type": "string" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "acronym": { + "const": "RSPagl", + "default": "RSPagl", + "title": "Acronym", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "id": { + "const": "894", + "default": "894", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspagl", + "type": "object" + }, + "_Rspagl1": { + "description": "Model RSPagl1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "position": { - "anyOf": [ - { - "$ref": "#/$defs/RelativePosition" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Relative position of the speaker" + "name": { + "const": "Retrosplenial area, lateral agranular part, layer 1", + "default": "Retrosplenial area, lateral agranular part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPagl1", + "default": "RSPagl1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "671", + "default": "671", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "manufacturer" - ], - "title": "Speaker", + "title": "_Rspagl1", "type": "object" }, - "SpeakerConfig": { - "additionalProperties": false, - "description": "Description of auditory speaker configuration", + "_Rspagl2_3": { + "description": "Model RSPagl2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "description": "Must match rig json", + "const": "Retrosplenial area, lateral agranular part, layer 2/3", + "default": "Retrosplenial area, lateral agranular part, layer 2/3", "title": "Name", "type": "string" }, - "volume": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Volume (dB)" + "acronym": { + "const": "RSPagl2/3", + "default": "RSPagl2/3", + "title": "Acronym", + "type": "string" }, - "volume_unit": { - "$ref": "#/$defs/SoundIntensityUnit", - "default": "decibels", - "title": "Volume unit" + "id": { + "const": "965", + "default": "965", + "title": "Id", + "type": "string" } }, - "required": [ - "name" - ], - "title": "SpeakerConfig", + "title": "_Rspagl2_3", "type": "object" }, - "SpecimenProcedure": { - "additionalProperties": false, - "description": "Description of surgical or other procedure performed on a specimen", + "_Rspagl5": { + "description": "Model RSPagl5", "properties": { - "procedure_type": { - "$ref": "#/$defs/SpecimenProcedureType", - "title": "Procedure type" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "procedure_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Name to clarify specific procedure used as needed", - "title": "Procedure name" + "name": { + "const": "Retrosplenial area, lateral agranular part, layer 5", + "default": "Retrosplenial area, lateral agranular part, layer 5", + "title": "Name", + "type": "string" }, - "specimen_id": { - "title": "Specimen ID", + "acronym": { + "const": "RSPagl5", + "default": "RSPagl5", + "title": "Acronym", "type": "string" }, - "start_date": { - "format": "date", - "title": "Start date", + "id": { + "const": "774", + "default": "774", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspagl5", + "type": "object" + }, + "_Rspagl6A": { + "description": "Model RSPagl6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "end_date": { - "format": "date", - "title": "End date", + "name": { + "const": "Retrosplenial area, lateral agranular part, layer 6a", + "default": "Retrosplenial area, lateral agranular part, layer 6a", + "title": "Name", "type": "string" }, - "experimenter_full_name": { - "description": "First and last name of the experimenter.", - "title": "Experimenter full name", + "acronym": { + "const": "RSPagl6a", + "default": "RSPagl6a", + "title": "Acronym", "type": "string" }, - "protocol_id": { - "description": "DOI for protocols.io", - "items": { - "type": "string" - }, - "title": "Protocol ID", - "type": "array" + "id": { + "const": "906", + "default": "906", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspagl6A", + "type": "object" + }, + "_Rspagl6B": { + "description": "Model RSPagl6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "reagents": { - "default": [], - "items": { - "$ref": "#/$defs/Reagent" - }, - "title": "Reagents", - "type": "array" + "name": { + "const": "Retrosplenial area, lateral agranular part, layer 6b", + "default": "Retrosplenial area, lateral agranular part, layer 6b", + "title": "Name", + "type": "string" }, - "hcr_series": { - "anyOf": [ - { - "$ref": "#/$defs/HCRSeries" - }, - { - "type": "null" - } - ], - "default": null, - "title": "HCR Series" + "acronym": { + "const": "RSPagl6b", + "default": "RSPagl6b", + "title": "Acronym", + "type": "string" }, - "antibodies": { - "anyOf": [ - { - "items": { - "$ref": "#/$defs/Antibody" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Immunolabeling" + "id": { + "const": "279", + "default": "279", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspagl6B", + "type": "object" + }, + "_Rspd": { + "description": "Model RSPd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "sectioning": { - "anyOf": [ - { - "$ref": "#/$defs/Sectioning" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Sectioning" + "name": { + "const": "Retrosplenial area, dorsal part", + "default": "Retrosplenial area, dorsal part", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "RSPd", + "default": "RSPd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "879", + "default": "879", + "title": "Id", + "type": "string" } }, - "required": [ - "procedure_type", - "specimen_id", - "start_date", - "end_date", - "experimenter_full_name", - "protocol_id" - ], - "title": "SpecimenProcedure", + "title": "_Rspd", "type": "object" }, - "SpecimenProcedureType": { - "description": "Specimen procedures", - "enum": [ - "Clearing", - "Delipidation", - "Embedding", - "Expansion", - "Fixation", - "Fixation and permeabilization", - "Gelation", - "Hybridication and amplification", - "Hybridization Chain Reaction", - "Immunolabeling", - "Mounting", - "Other", - "Refractive index matching", - "Sectioning", - "Soak", - "Storage", - "Stripping", - "Tamoxifen induction" - ], - "title": "SpecimenProcedureType", - "type": "string" - }, - "SpeedUnit": { - "const": "rotations per minute", - "description": "Enumeration of Speed Measurements", - "enum": [ - "rotations per minute" - ], - "title": "SpeedUnit", - "type": "string" + "_Rspd1": { + "description": "Model RSPd1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, dorsal part, layer 1", + "default": "Retrosplenial area, dorsal part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPd1", + "default": "RSPd1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "442", + "default": "442", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd1", + "type": "object" }, - "SpoutSide": { - "description": "Spout sides", - "enum": [ - "Left", - "Right", - "Center", - "Other" - ], - "title": "SpoutSide", - "type": "string" + "_Rspd2_3": { + "description": "Model RSPd2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, dorsal part, layer 2/3", + "default": "Retrosplenial area, dorsal part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPd2/3", + "default": "RSPd2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "434", + "default": "434", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd2_3", + "type": "object" }, - "Stack": { - "additionalProperties": false, - "description": "Description of a two photon stack", + "_Rspd4": { + "description": "Model RSPd4", "properties": { - "channels": { - "items": { - "$ref": "#/$defs/StackChannel" - }, - "title": "Channels", - "type": "array" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "number_of_planes": { - "title": "Number of planes", - "type": "integer" + "name": { + "const": "Retrosplenial area, dorsal part, layer 4", + "default": "Retrosplenial area, dorsal part, layer 4", + "title": "Name", + "type": "string" }, - "step_size": { - "title": "Step size (um)", - "type": "number" + "acronym": { + "const": "RSPd4", + "default": "RSPd4", + "title": "Acronym", + "type": "string" }, - "step_size_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Step size unit" + "id": { + "const": "545", + "default": "545", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd4", + "type": "object" + }, + "_Rspd5": { + "description": "Model RSPd5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "number_of_plane_repeats_per_volume": { - "title": "Number of repeats per volume", - "type": "integer" + "name": { + "const": "Retrosplenial area, dorsal part, layer 5", + "default": "Retrosplenial area, dorsal part, layer 5", + "title": "Name", + "type": "string" }, - "number_of_volume_repeats": { - "title": "Number of volume repeats", - "type": "integer" + "acronym": { + "const": "RSPd5", + "default": "RSPd5", + "title": "Acronym", + "type": "string" }, - "fov_coordinate_ml": { - "title": "FOV coordinate ML", - "type": "number" + "id": { + "const": "610", + "default": "610", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd5", + "type": "object" + }, + "_Rspd6A": { + "description": "Model RSPd6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "fov_coordinate_ap": { - "title": "FOV coordinate AP", - "type": "number" + "name": { + "const": "Retrosplenial area, dorsal part, layer 6a", + "default": "Retrosplenial area, dorsal part, layer 6a", + "title": "Name", + "type": "string" }, - "fov_coordinate_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "FOV coordinate unit" + "acronym": { + "const": "RSPd6a", + "default": "RSPd6a", + "title": "Acronym", + "type": "string" }, - "fov_reference": { - "description": "Reference for ML/AP coordinates", - "title": "FOV reference", + "id": { + "const": "274", + "default": "274", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd6A", + "type": "object" + }, + "_Rspd6B": { + "description": "Model RSPd6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "fov_width": { - "title": "FOV width (pixels)", - "type": "integer" + "name": { + "const": "Retrosplenial area, dorsal part, layer 6b", + "default": "Retrosplenial area, dorsal part, layer 6b", + "title": "Name", + "type": "string" }, - "fov_height": { - "title": "FOV height (pixels)", - "type": "integer" + "acronym": { + "const": "RSPd6b", + "default": "RSPd6b", + "title": "Acronym", + "type": "string" }, - "fov_size_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "pixel", - "title": "FOV size unit" + "id": { + "const": "330", + "default": "330", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd6B", + "type": "object" + }, + "_Rspv": { + "description": "Model RSPv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "magnification": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Magnification" + "name": { + "const": "Retrosplenial area, ventral part", + "default": "Retrosplenial area, ventral part", + "title": "Name", + "type": "string" }, - "fov_scale_factor": { - "title": "FOV scale factor (um/pixel)", - "type": "number" + "acronym": { + "const": "RSPv", + "default": "RSPv", + "title": "Acronym", + "type": "string" }, - "fov_scale_factor_unit": { - "default": "um/pixel", - "title": "FOV scale factor unit", + "id": { + "const": "886", + "default": "886", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspv", + "type": "object" + }, + "_Rspv1": { + "description": "Model RSPv1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "frame_rate": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Frame rate (Hz)" + "name": { + "const": "Retrosplenial area, ventral part, layer 1", + "default": "Retrosplenial area, ventral part, layer 1", + "title": "Name", + "type": "string" }, - "frame_rate_unit": { - "$ref": "#/$defs/FrequencyUnit", - "default": "hertz", - "title": "Frame rate unit" + "acronym": { + "const": "RSPv1", + "default": "RSPv1", + "title": "Acronym", + "type": "string" }, - "targeted_structure": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Targeted structure" + "id": { + "const": "542", + "default": "542", + "title": "Id", + "type": "string" } }, - "required": [ - "channels", - "number_of_planes", - "step_size", - "number_of_plane_repeats_per_volume", - "number_of_volume_repeats", - "fov_coordinate_ml", - "fov_coordinate_ap", - "fov_reference", - "fov_width", - "fov_height", - "fov_scale_factor", - "frame_rate" - ], - "title": "Stack", + "title": "_Rspv1", "type": "object" }, - "StackChannel": { - "additionalProperties": false, - "description": "Description of a Channel used in a Stack", + "_Rspv2_3": { + "description": "Model RSPv2/3", "properties": { - "channel_name": { - "title": "Channel", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "light_source_name": { - "description": "Must match device name", - "title": "Light source name", + "name": { + "const": "Retrosplenial area, ventral part, layer 2/3", + "default": "Retrosplenial area, ventral part, layer 2/3", + "title": "Name", "type": "string" }, - "filter_names": { - "description": "Must match device names", - "items": { - "type": "string" - }, - "title": "Filter names", - "type": "array" + "acronym": { + "const": "RSPv2/3", + "default": "RSPv2/3", + "title": "Acronym", + "type": "string" }, - "detector_name": { - "description": "Must match device name", - "title": "Detector name", + "id": { + "const": "430", + "default": "430", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspv2_3", + "type": "object" + }, + "_Rspv5": { + "description": "Model RSPv5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "additional_device_names": { - "default": [], - "items": { - "type": "string" - }, - "title": "Additional device names", - "type": "array" + "name": { + "const": "Retrosplenial area, ventral part, layer 5", + "default": "Retrosplenial area, ventral part, layer 5", + "title": "Name", + "type": "string" }, - "excitation_wavelength": { - "maximum": 1000, - "minimum": 300, - "title": "Wavelength", - "type": "integer" + "acronym": { + "const": "RSPv5", + "default": "RSPv5", + "title": "Acronym", + "type": "string" }, - "excitation_wavelength_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "nanometer", - "title": "Laser wavelength unit" + "id": { + "const": "687", + "default": "687", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspv5", + "type": "object" + }, + "_Rspv6A": { + "description": "Model RSPv6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "excitation_power": { - "maximum": 2000.0, - "title": "Laser power", - "type": "number" + "name": { + "const": "Retrosplenial area, ventral part, layer 6a", + "default": "Retrosplenial area, ventral part, layer 6a", + "title": "Name", + "type": "string" }, - "excitation_power_unit": { - "$ref": "#/$defs/PowerUnit", - "default": "milliwatt", - "title": "Laser power unit" + "acronym": { + "const": "RSPv6a", + "default": "RSPv6a", + "title": "Acronym", + "type": "string" }, - "filter_wheel_index": { - "title": "Filter wheel index", - "type": "integer" + "id": { + "const": "590", + "default": "590", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspv6A", + "type": "object" + }, + "_Rspv6B": { + "description": "Model RSPv6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "dilation": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Dilation (pixels)" + "name": { + "const": "Retrosplenial area, ventral part, layer 6b", + "default": "Retrosplenial area, ventral part, layer 6b", + "title": "Name", + "type": "string" }, - "dilation_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "pixel", - "title": "Dilation unit" + "acronym": { + "const": "RSPv6b", + "default": "RSPv6b", + "title": "Acronym", + "type": "string" }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Description" + "id": { + "const": "622", + "default": "622", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspv6B", + "type": "object" + }, + "_Rt": { + "description": "Model RT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "start_depth": { - "title": "Starting depth (um)", - "type": "integer" + "name": { + "const": "Reticular nucleus of the thalamus", + "default": "Reticular nucleus of the thalamus", + "title": "Name", + "type": "string" }, - "end_depth": { - "title": "Ending depth (um)", - "type": "integer" + "acronym": { + "const": "RT", + "default": "RT", + "title": "Acronym", + "type": "string" }, - "depth_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Depth unit" + "id": { + "const": "262", + "default": "262", + "title": "Id", + "type": "string" } }, - "required": [ - "channel_name", - "light_source_name", - "filter_names", - "detector_name", - "excitation_wavelength", - "excitation_power", - "filter_wheel_index", - "start_depth", - "end_depth" - ], - "title": "StackChannel", + "title": "_Rt", "type": "object" }, - "Stage": { - "description": "QCEvaluation Stage\n\nWhen during data processing the QC metrics were derived.", - "enum": [ - "Raw data", - "Processing", - "Analysis", - "Multi-asset" - ], - "title": "Stage", - "type": "string" - }, - "StageAxisDirection": { - "description": "Direction of motion for motorized stage", - "enum": [ - "Detection axis", - "Illumination axis", - "Perpendicular axis" - ], - "title": "StageAxisDirection", - "type": "string" + "_Rust": { + "description": "Model rust", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "rubrospinal tract", + "default": "rubrospinal tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "rust", + "default": "rust", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "863", + "default": "863", + "title": "Id", + "type": "string" + } + }, + "title": "_Rust", + "type": "object" }, - "StageAxisName": { - "description": "Axis names for motorized stages as configured by hardware", - "enum": [ - "X", - "Y", - "Z" - ], - "title": "StageAxisName", - "type": "string" + "_Sag": { + "description": "Model SAG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus sagulum", + "default": "Nucleus sagulum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SAG", + "default": "SAG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "271", + "default": "271", + "title": "Id", + "type": "string" + } + }, + "title": "_Sag", + "type": "object" }, - "Stain": { - "additionalProperties": false, - "description": "Description of a non-oligo probe stain", + "_Same_Sky": { + "description": "Model Same Sky", "properties": { "name": { + "const": "Same Sky", + "default": "Same Sky", "title": "Name", "type": "string" }, - "source": { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ], - "title": "Source" + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" }, - "rrid": { - "anyOf": [ - { - "$ref": "#/$defs/PIDName" - }, - { - "type": "null" - } - ], + "registry": { "default": null, - "title": "Research Resource ID" + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Same_Sky", + "type": "object" + }, + "_Samy": { + "description": "Model sAMY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Striatum-like amygdalar nuclei", + "default": "Striatum-like amygdalar nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "sAMY", + "default": "sAMY", + "title": "Acronym", + "type": "string" }, - "lot_number": { - "title": "Lot number", + "id": { + "const": "278", + "default": "278", + "title": "Id", + "type": "string" + } + }, + "title": "_Samy", + "type": "object" + }, + "_Sbpv": { + "description": "Model SBPV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "expiration_date": { - "anyOf": [ - { - "format": "date", - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lot expiration date" + "name": { + "const": "Subparaventricular zone", + "default": "Subparaventricular zone", + "title": "Name", + "type": "string" }, - "stain_type": { - "$ref": "#/$defs/StainType", - "title": "Stain type" + "acronym": { + "const": "SBPV", + "default": "SBPV", + "title": "Acronym", + "type": "string" }, - "concentration": { - "$ref": "#/$defs/concentration", - "title": "Concentration (uM)" + "id": { + "const": "347", + "default": "347", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "source", - "lot_number", - "stain_type", - "concentration" - ], - "title": "Stain", + "title": "_Sbpv", "type": "object" }, - "StainType": { - "description": "Stain types for probes describing what is being labeled", - "enum": [ - "RNA", - "Nuclear", - "Fill" - ], - "title": "StainType", - "type": "string" + "_Scdg": { + "description": "Model SCdg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, motor related, deep gray layer", + "default": "Superior colliculus, motor related, deep gray layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCdg", + "default": "SCdg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "26", + "default": "26", + "title": "Id", + "type": "string" + } + }, + "title": "_Scdg", + "type": "object" }, - "Status": { - "description": "QC Status", - "enum": [ - "Fail", - "Pass", - "Pending" - ], - "title": "Status", - "type": "string" + "_Scdw": { + "description": "Model SCdw", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, motor related, deep white layer", + "default": "Superior colliculus, motor related, deep white layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCdw", + "default": "SCdw", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "42", + "default": "42", + "title": "Id", + "type": "string" + } + }, + "title": "_Scdw", + "type": "object" }, - "StimulusEpoch": { - "additionalProperties": false, - "description": "Description of stimulus used during session", + "_Sch": { + "description": "Model SCH", "properties": { - "stimulus_start_time": { - "description": "When a specific stimulus begins. This might be the same as the session start time.", - "format": "date-time", - "title": "Stimulus start time", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "stimulus_end_time": { - "description": "When a specific stimulus ends. This might be the same as the session end time.", - "format": "date-time", - "title": "Stimulus end time", + "name": { + "const": "Suprachiasmatic nucleus", + "default": "Suprachiasmatic nucleus", + "title": "Name", "type": "string" }, - "stimulus_name": { - "title": "Stimulus name", + "acronym": { + "const": "SCH", + "default": "SCH", + "title": "Acronym", "type": "string" }, - "session_number": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], + "id": { + "const": "286", + "default": "286", + "title": "Id", + "type": "string" + } + }, + "title": "_Sch", + "type": "object" + }, + "_Schneider_Kreuznach": { + "description": "Model Schneider-Kreuznach", + "properties": { + "name": { + "const": "Schneider-Kreuznach", + "default": "Schneider-Kreuznach", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, "default": null, - "title": "Session number" + "title": "Abbreviation", + "type": "null" }, - "software": { - "anyOf": [ - { - "items": { - "$ref": "#/$defs/Software" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": [], - "description": "The software used to control the behavior/stimulus (e.g. Bonsai)", - "title": "Software" + "registry": { + "default": null, + "title": "Registry", + "type": "null" }, - "script": { - "anyOf": [ - { - "$ref": "#/$defs/Software" - }, - { - "type": "null" - } - ], + "registry_identifier": { "default": null, - "description": "provide URL to the commit of the script and the parameters used", - "title": "Script" + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Schneider_Kreuznach", + "type": "object" + }, + "_Scig": { + "description": "Model SCig", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "stimulus_modalities": { - "items": { - "$ref": "#/$defs/StimulusModality" - }, - "title": "Stimulus modalities", - "type": "array" + "name": { + "const": "Superior colliculus, motor related, intermediate gray layer", + "default": "Superior colliculus, motor related, intermediate gray layer", + "title": "Name", + "type": "string" }, - "stimulus_parameters": { - "anyOf": [ - { - "items": { - "discriminator": { - "mapping": { - "Auditory Stimulation": "#/$defs/AuditoryStimulation", - "Olfactory Stimulation": "#/$defs/OlfactoryStimulation", - "Opto Stimulation": "#/$defs/OptoStimulation", - "Photo Stimulation": "#/$defs/PhotoStimulation", - "Visual Stimulation": "#/$defs/VisualStimulation" - }, - "propertyName": "stimulus_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/AuditoryStimulation" - }, - { - "$ref": "#/$defs/OptoStimulation" - }, - { - "$ref": "#/$defs/OlfactoryStimulation" - }, - { - "$ref": "#/$defs/PhotoStimulation" - }, - { - "$ref": "#/$defs/VisualStimulation" - } - ] - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Stimulus parameters" + "acronym": { + "const": "SCig", + "default": "SCig", + "title": "Acronym", + "type": "string" }, - "stimulus_device_names": { - "default": [], - "items": { - "type": "string" - }, - "title": "Stimulus devices", - "type": "array" + "id": { + "const": "10", + "default": "10", + "title": "Id", + "type": "string" + } + }, + "title": "_Scig", + "type": "object" + }, + "_Sciw": { + "description": "Model SCiw", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "speaker_config": { - "anyOf": [ - { - "$ref": "#/$defs/SpeakerConfig" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Speaker Config" + "name": { + "const": "Superior colliculus, motor related, intermediate white layer", + "default": "Superior colliculus, motor related, intermediate white layer", + "title": "Name", + "type": "string" }, - "light_source_config": { - "anyOf": [ - { - "items": { - "discriminator": { - "mapping": { - "Laser": "#/$defs/LaserConfig", - "Light emitting diode": "#/$defs/LightEmittingDiodeConfig" - }, - "propertyName": "device_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/LightEmittingDiodeConfig" - }, - { - "$ref": "#/$defs/LaserConfig" - } - ] - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": [], - "description": "Light sources for stimulation", - "title": "Light source config" + "acronym": { + "const": "SCiw", + "default": "SCiw", + "title": "Acronym", + "type": "string" }, - "output_parameters": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Performance metrics" + "id": { + "const": "17", + "default": "17", + "title": "Id", + "type": "string" + } + }, + "title": "_Sciw", + "type": "object" + }, + "_Scm": { + "description": "Model SCm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "reward_consumed_during_epoch": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], + "name": { + "const": "Superior colliculus, motor related", + "default": "Superior colliculus, motor related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCm", + "default": "SCm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "294", + "default": "294", + "title": "Id", + "type": "string" + } + }, + "title": "_Scm", + "type": "object" + }, + "_Sco": { + "description": "Model SCO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subcommissural organ", + "default": "Subcommissural organ", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCO", + "default": "SCO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "599626923", + "default": "599626923", + "title": "Id", + "type": "string" + } + }, + "title": "_Sco", + "type": "object" + }, + "_Scop": { + "description": "Model SCop", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, optic layer", + "default": "Superior colliculus, optic layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCop", + "default": "SCop", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "851", + "default": "851", + "title": "Id", + "type": "string" + } + }, + "title": "_Scop", + "type": "object" + }, + "_Scp": { + "description": "Model scp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "superior cerebelar peduncles", + "default": "superior cerebelar peduncles", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "scp", + "default": "scp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "326", + "default": "326", + "title": "Id", + "type": "string" + } + }, + "title": "_Scp", + "type": "object" + }, + "_Scs": { + "description": "Model SCs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, sensory related", + "default": "Superior colliculus, sensory related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCs", + "default": "SCs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "302", + "default": "302", + "title": "Id", + "type": "string" + } + }, + "title": "_Scs", + "type": "object" + }, + "_Scsg": { + "description": "Model SCsg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, superficial gray layer", + "default": "Superior colliculus, superficial gray layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCsg", + "default": "SCsg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "842", + "default": "842", + "title": "Id", + "type": "string" + } + }, + "title": "_Scsg", + "type": "object" + }, + "_Sctd": { + "description": "Model sctd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal spinocerebellar tract", + "default": "dorsal spinocerebellar tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "sctd", + "default": "sctd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "553", + "default": "553", + "title": "Id", + "type": "string" + } + }, + "title": "_Sctd", + "type": "object" + }, + "_Sctv": { + "description": "Model sctv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "ventral spinocerebellar tract", + "default": "ventral spinocerebellar tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "sctv", + "default": "sctv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "866", + "default": "866", + "title": "Id", + "type": "string" + } + }, + "title": "_Sctv", + "type": "object" + }, + "_Scwm": { + "description": "Model scwm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "supra-callosal cerebral white matter", + "default": "supra-callosal cerebral white matter", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "scwm", + "default": "scwm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682512", + "default": "484682512", + "title": "Id", + "type": "string" + } + }, + "title": "_Scwm", + "type": "object" + }, + "_Sczo": { + "description": "Model SCzo", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, zonal layer", + "default": "Superior colliculus, zonal layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCzo", + "default": "SCzo", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "834", + "default": "834", + "title": "Id", + "type": "string" + } + }, + "title": "_Sczo", + "type": "object" + }, + "_Second_Order_Effects": { + "description": "Model Second Order Effects", + "properties": { + "name": { + "const": "Second Order Effects", + "default": "Second Order Effects", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, "default": null, - "title": "Reward consumed during training (uL)" + "title": "Abbreviation", + "type": "null" }, - "reward_consumed_unit": { - "$ref": "#/$defs/VolumeUnit", - "default": "microliter", - "title": "Reward consumed unit" + "registry": { + "default": null, + "title": "Registry", + "type": "null" }, - "trials_total": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], + "registry_identifier": { "default": null, - "title": "Total trials" + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Second_Order_Effects", + "type": "object" + }, + "_Semrock": { + "description": "Model Semrock", + "properties": { + "name": { + "const": "Semrock", + "default": "Semrock", + "title": "Name", + "type": "string" }, - "trials_finished": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], + "abbreviation": { + "const": null, "default": null, - "title": "Finished trials" + "title": "Abbreviation", + "type": "null" }, - "trials_rewarded": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], + "registry": { "default": null, - "title": "Rewarded trials" + "title": "Registry", + "type": "null" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "registry_identifier": { "default": null, - "title": "Notes" + "title": "Registry Identifier", + "type": "null" } }, - "required": [ - "stimulus_start_time", - "stimulus_end_time", - "stimulus_name", - "stimulus_modalities" - ], - "title": "StimulusEpoch", + "title": "_Semrock", "type": "object" }, - "StimulusModality": { - "description": "Types of stimulus modalities", - "enum": [ - "Auditory", - "Olfactory", - "Optogenetics", - "None", - "Virtual reality", - "Visual", - "Wheel friction" - ], - "title": "StimulusModality", - "type": "string" - }, - "Stream": { - "additionalProperties": false, - "description": "Data streams with a start and stop time", + "_Sez": { + "description": "Model SEZ", "properties": { - "stream_start_time": { - "format": "date-time", - "title": "Stream start time", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "stream_end_time": { - "format": "date-time", - "title": "Stream stop time", + "name": { + "const": "subependymal zone", + "default": "subependymal zone", + "title": "Name", "type": "string" }, - "daq_names": { - "default": [], - "items": { - "type": "string" - }, - "title": "DAQ devices", - "type": "array" - }, - "camera_names": { - "default": [], - "items": { - "type": "string" - }, - "title": "Cameras", - "type": "array" - }, - "light_sources": { - "default": [], - "items": { - "discriminator": { - "mapping": { - "Laser": "#/$defs/LaserConfig", - "Light emitting diode": "#/$defs/LightEmittingDiodeConfig" - }, - "propertyName": "device_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/LightEmittingDiodeConfig" - }, - { - "$ref": "#/$defs/LaserConfig" - } - ] - }, - "title": "Light Sources", - "type": "array" - }, - "ephys_modules": { - "default": [], - "items": { - "$ref": "#/$defs/ManipulatorModule" - }, - "title": "Ephys modules", - "type": "array" - }, - "stick_microscopes": { - "default": [], - "description": "Must match stick microscope assemblies in rig file", - "items": { - "$ref": "#/$defs/DomeModule" - }, - "title": "Stick microscopes", - "type": "array" - }, - "manipulator_modules": { - "default": [], - "items": { - "$ref": "#/$defs/ManipulatorModule" - }, - "title": "Manipulator modules", - "type": "array" + "acronym": { + "const": "SEZ", + "default": "SEZ", + "title": "Acronym", + "type": "string" }, - "detectors": { - "default": [], - "items": { - "$ref": "#/$defs/DetectorConfig" - }, - "title": "Detectors", - "type": "array" + "id": { + "const": "98", + "default": "98", + "title": "Id", + "type": "string" + } + }, + "title": "_Sez", + "type": "object" + }, + "_Sf": { + "description": "Model SF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "fiber_connections": { - "default": [], - "items": { - "$ref": "#/$defs/FiberConnectionConfig" - }, - "title": "Implanted fiber photometry devices", - "type": "array" + "name": { + "const": "Septofimbrial nucleus", + "default": "Septofimbrial nucleus", + "title": "Name", + "type": "string" }, - "fiber_modules": { - "default": [], - "items": { - "$ref": "#/$defs/FiberModule" - }, - "title": "Inserted fiber modules", - "type": "array" + "acronym": { + "const": "SF", + "default": "SF", + "title": "Acronym", + "type": "string" }, - "ophys_fovs": { - "default": [], - "items": { - "$ref": "#/$defs/FieldOfView" - }, - "title": "Fields of view", - "type": "array" + "id": { + "const": "310", + "default": "310", + "title": "Id", + "type": "string" + } + }, + "title": "_Sf", + "type": "object" + }, + "_Sfo": { + "description": "Model SFO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "slap_fovs": { - "default": [], - "items": { - "$ref": "#/$defs/SlapFieldOfView" - }, - "title": "Slap2 fields of view", - "type": "array" + "name": { + "const": "Subfornical organ", + "default": "Subfornical organ", + "title": "Name", + "type": "string" }, - "stack_parameters": { - "anyOf": [ - { - "$ref": "#/$defs/Stack" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Stack parameters" + "acronym": { + "const": "SFO", + "default": "SFO", + "title": "Acronym", + "type": "string" }, - "mri_scans": { - "default": [], - "items": { - "$ref": "#/$defs/MRIScan" - }, - "title": "MRI scans", - "type": "array" + "id": { + "const": "338", + "default": "338", + "title": "Id", + "type": "string" + } + }, + "title": "_Sfo", + "type": "object" + }, + "_Sg": { + "description": "Model SG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "stream_modalities": { - "items": { - "discriminator": { - "mapping": { - "EMG": "#/$defs/_Emg", - "ISI": "#/$defs/aind_data_schema_models__modalities___Isi", - "MRI": "#/$defs/aind_data_schema_models__modalities___Mri", - "SPIM": "#/$defs/_Spim", - "behavior": "#/$defs/aind_data_schema_models__modalities___Behavior", - "behavior-videos": "#/$defs/_Behavior_Videos", - "confocal": "#/$defs/aind_data_schema_models__modalities___Confocal", - "ecephys": "#/$defs/aind_data_schema_models__modalities___Ecephys", - "fMOST": "#/$defs/_Fmost", - "fib": "#/$defs/_Fib", - "icephys": "#/$defs/_Icephys", - "merfish": "#/$defs/aind_data_schema_models__modalities___Merfish", - "pophys": "#/$defs/_Pophys", - "slap": "#/$defs/_Slap" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__modalities___Behavior" - }, - { - "$ref": "#/$defs/_Behavior_Videos" - }, - { - "$ref": "#/$defs/aind_data_schema_models__modalities___Confocal" - }, - { - "$ref": "#/$defs/_Emg" - }, - { - "$ref": "#/$defs/aind_data_schema_models__modalities___Ecephys" - }, - { - "$ref": "#/$defs/_Fib" - }, - { - "$ref": "#/$defs/_Fmost" - }, - { - "$ref": "#/$defs/_Icephys" - }, - { - "$ref": "#/$defs/aind_data_schema_models__modalities___Isi" - }, - { - "$ref": "#/$defs/aind_data_schema_models__modalities___Mri" - }, - { - "$ref": "#/$defs/aind_data_schema_models__modalities___Merfish" - }, - { - "$ref": "#/$defs/_Pophys" - }, - { - "$ref": "#/$defs/_Slap" - }, - { - "$ref": "#/$defs/_Spim" - } - ] - }, - "title": "Modalities", - "type": "array" + "name": { + "const": "Supragenual nucleus", + "default": "Supragenual nucleus", + "title": "Name", + "type": "string" }, - "software": { - "anyOf": [ - { - "items": { - "$ref": "#/$defs/Software" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": [], - "title": "Data stream software information" + "acronym": { + "const": "SG", + "default": "SG", + "title": "Acronym", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "id": { + "const": "318", + "default": "318", + "title": "Id", + "type": "string" } }, - "required": [ - "stream_start_time", - "stream_end_time", - "stream_modalities" - ], - "title": "Stream", + "title": "_Sg", "type": "object" }, - "Subject": { - "additionalProperties": false, - "description": "Description of a subject of data collection", + "_Sgn": { + "description": "Model SGN", "properties": { - "describedBy": { - "const": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/subject.py", - "default": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/subject.py", - "title": "Describedby", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "schema_version": { - "const": "1.0.2", - "default": "1.0.2", - "enum": [ - "1.0.2" - ], - "title": "Schema Version", + "name": { + "const": "Suprageniculate nucleus", + "default": "Suprageniculate nucleus", + "title": "Name", "type": "string" }, - "subject_id": { - "description": "Unique identifier for the subject. If this is not a Allen LAS ID, indicate this in the Notes.", - "title": "Subject ID", + "acronym": { + "const": "SGN", + "default": "SGN", + "title": "Acronym", "type": "string" }, - "sex": { - "$ref": "#/$defs/Sex" + "id": { + "const": "325", + "default": "325", + "title": "Id", + "type": "string" + } + }, + "title": "_Sgn", + "type": "object" + }, + "_Sh": { + "description": "Model SH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "date_of_birth": { - "format": "date", - "title": "Date of birth", + "name": { + "const": "Septohippocampal nucleus", + "default": "Septohippocampal nucleus", + "title": "Name", "type": "string" }, - "genotype": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Genotype of the animal providing both alleles", - "title": "Genotype" + "acronym": { + "const": "SH", + "default": "SH", + "title": "Acronym", + "type": "string" }, - "species": { - "discriminator": { - "mapping": { - "Callithrix jacchus": "#/$defs/_Callithrix_Jacchus", - "Homo sapiens": "#/$defs/_Homo_Sapiens", - "Macaca mulatta": "#/$defs/_Macaca_Mulatta", - "Mus musculus": "#/$defs/_Mus_Musculus", - "Rattus norvegicus": "#/$defs/_Rattus_Norvegicus" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Callithrix_Jacchus" - }, - { - "$ref": "#/$defs/_Homo_Sapiens" - }, - { - "$ref": "#/$defs/_Macaca_Mulatta" - }, - { - "$ref": "#/$defs/_Mus_Musculus" - }, - { - "$ref": "#/$defs/_Rattus_Norvegicus" - } - ], - "title": "Species" + "id": { + "const": "333", + "default": "333", + "title": "Id", + "type": "string" + } + }, + "title": "_Sh", + "type": "object" + }, + "_Short_Head_Of_Biceps_Brachii": { + "description": "Model short head of biceps brachii", + "properties": { + "name": { + "const": "short head of biceps brachii", + "default": "short head of biceps brachii", + "title": "Name", + "type": "string" }, - "alleles": { - "default": [], - "description": "Allele names and persistent IDs", - "items": { - "$ref": "#/$defs/PIDName" + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" }, - "title": "Alleles", - "type": "array" - }, - "background_strain": { - "anyOf": [ - { - "$ref": "#/$defs/BackgroundStrain" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Background strain" - }, - "breeding_info": { - "anyOf": [ - { - "$ref": "#/$defs/BreedingInfo" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Breeding Info" - }, - "source": { - "description": "Where the subject was acquired from. If bred in-house, use Allen Institute.", "discriminator": { "mapping": { - "Allen Institute": "#/$defs/_Allen_Institute", - "Columbia University": "#/$defs/_Columbia_University", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "New York University": "#/$defs/_New_York_University", - "Other": "#/$defs/_Other" + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, - "propertyName": "name" + "propertyName": "abbreviation" }, "oneOf": [ { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Other" - } - ], - "title": "Source" - }, - "rrid": { - "anyOf": [ - { - "$ref": "#/$defs/PIDName" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "type": "null" - } - ], - "default": null, - "description": "RRID of mouse if acquired from supplier", - "title": "RRID" - }, - "restrictions": { - "anyOf": [ - { - "type": "string" + "$ref": "#/$defs/_Emapa" }, { - "type": "null" - } - ], - "default": null, - "description": "Any restrictions on use or publishing based on subject source", - "title": "Restrictions" - }, - "wellness_reports": { - "default": [], - "items": { - "$ref": "#/$defs/WellnessReport" - }, - "title": "Wellness Report", - "type": "array" - }, - "housing": { - "anyOf": [ - { - "$ref": "#/$defs/Housing" + "$ref": "#/$defs/_Mgi" }, { - "type": "null" - } - ], - "default": null, - "title": "Housing" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Ncbi" + }, { - "type": "string" + "$ref": "#/$defs/_Orcid" }, { - "type": "null" + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "title": "Notes" + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_25055", + "default": "EMAPA_25055", + "title": "Registry Identifier", + "type": "string" } }, - "required": [ - "subject_id", - "sex", - "date_of_birth", - "species", - "source" - ], - "title": "Subject", + "title": "_Short_Head_Of_Biceps_Brachii", "type": "object" }, - "SubjectPosition": { - "description": "Subject position", - "enum": [ - "Prone", - "Supine" - ], - "title": "SubjectPosition", - "type": "string" - }, - "Surgery": { - "additionalProperties": false, - "description": "Description of subject procedures performed at one time", + "_Si": { + "description": "Model SI", "properties": { - "procedure_type": { - "const": "Surgery", - "default": "Surgery", - "enum": [ - "Surgery" - ], - "title": "Procedure Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", + "name": { + "const": "Substantia innominata", + "default": "Substantia innominata", + "title": "Name", "type": "string" }, - "start_date": { - "format": "date", - "title": "Start date", + "acronym": { + "const": "SI", + "default": "SI", + "title": "Acronym", "type": "string" }, - "experimenter_full_name": { - "description": "First and last name of the experimenter.", - "title": "Experimenter full name", + "id": { + "const": "342", + "default": "342", + "title": "Id", + "type": "string" + } + }, + "title": "_Si", + "type": "object" + }, + "_Sicgen": { + "description": "Model SICGEN", + "properties": { + "name": { + "const": "SICGEN", + "default": "SICGEN", + "title": "Name", "type": "string" }, - "iacuc_protocol": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "abbreviation": { + "const": null, "default": null, - "title": "IACUC protocol" + "title": "Abbreviation", + "type": "null" }, - "animal_weight_prior": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], + "registry": { "default": null, - "description": "Animal weight before procedure", - "title": "Animal weight (g)" + "title": "Registry", + "type": "null" }, - "animal_weight_post": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], + "registry_identifier": { "default": null, - "description": "Animal weight after procedure", - "title": "Animal weight (g)" + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Sicgen", + "type": "object" + }, + "_Sigma_Aldrich": { + "description": "Model Sigma-Aldrich", + "properties": { + "name": { + "const": "Sigma-Aldrich", + "default": "Sigma-Aldrich", + "title": "Name", + "type": "string" }, - "weight_unit": { - "$ref": "#/$defs/MassUnit", - "default": "gram", - "title": "Weight unit" + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" }, - "anaesthesia": { - "anyOf": [ - { - "$ref": "#/$defs/Anaesthetic" - }, - { - "type": "null" - } - ], + "registry": { "default": null, - "title": "Anaesthesia" + "title": "Registry", + "type": "null" }, - "workstation_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "registry_identifier": { "default": null, - "title": "Workstation ID" + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Sigma_Aldrich", + "type": "object" + }, + "_Sim": { + "description": "Model SIM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "procedures": { - "items": { - "discriminator": { - "mapping": { - "Craniotomy": "#/$defs/Craniotomy", - "Fiber implant": "#/$defs/FiberImplant", - "Ground wire": "#/$defs/ProtectiveMaterialReplacement", - "Headframe": "#/$defs/Headframe", - "ICM injection": "#/$defs/IntraCisternalMagnaInjection", - "ICV injection": "#/$defs/IntraCerebellarVentricleInjection", - "Intraperitoneal injection": "#/$defs/IntraperitonealInjection", - "Iontophoresis injection": "#/$defs/IontophoresisInjection", - "Myomatrix_Insertion": "#/$defs/MyomatrixInsertion", - "Nanoject injection": "#/$defs/NanojectInjection", - "Other Subject Procedure": "#/$defs/OtherSubjectProcedure", - "Perfusion": "#/$defs/Perfusion", - "Retro-orbital injection": "#/$defs/RetroOrbitalInjection" - }, - "propertyName": "procedure_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/Craniotomy" - }, - { - "$ref": "#/$defs/FiberImplant" - }, - { - "$ref": "#/$defs/Headframe" - }, - { - "$ref": "#/$defs/IntraCerebellarVentricleInjection" - }, - { - "$ref": "#/$defs/IntraCisternalMagnaInjection" - }, - { - "$ref": "#/$defs/IntraperitonealInjection" - }, - { - "$ref": "#/$defs/IontophoresisInjection" - }, - { - "$ref": "#/$defs/MyomatrixInsertion" - }, - { - "$ref": "#/$defs/NanojectInjection" - }, - { - "$ref": "#/$defs/OtherSubjectProcedure" - }, - { - "$ref": "#/$defs/Perfusion" - }, - { - "$ref": "#/$defs/ProtectiveMaterialReplacement" - }, - { - "$ref": "#/$defs/RetroOrbitalInjection" - } - ] - }, - "minItems": 1, - "title": "Procedures", - "type": "array" + "name": { + "const": "Simple lobule", + "default": "Simple lobule", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "SIM", + "default": "SIM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1007", + "default": "1007", + "title": "Id", + "type": "string" } }, - "required": [ - "protocol_id", - "start_date", - "experimenter_full_name", - "procedures" - ], - "title": "Surgery", + "title": "_Sim", "type": "object" }, - "TarsVirusIdentifiers": { - "additionalProperties": false, - "description": "TARS data for a viral prep", + "_Simons_Foundation": { + "description": "Model Simons Foundation", "properties": { - "virus_tars_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "name": { + "const": "Simons Foundation", + "default": "Simons Foundation", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, "default": null, - "title": "Virus ID, usually begins 'AiV'" + "title": "Abbreviation", + "type": "null" }, - "plasmid_tars_alias": { - "anyOf": [ - { - "type": "string" + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "type": "null" - } - ], - "default": null, - "description": "Alias used to reference the plasmid, usually begins 'AiP'", - "title": "Plasmid alias" - }, - "prep_lot_number": { - "title": "Preparation lot number", - "type": "string" - }, - "prep_date": { - "anyOf": [ + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, { - "format": "date", - "type": "string" + "$ref": "#/$defs/_Emapa" }, { - "type": "null" - } - ], - "default": null, - "description": "Date this prep lot was titered", - "title": "Preparation lot date" - }, - "prep_type": { - "anyOf": [ + "$ref": "#/$defs/_Mgi" + }, { - "$ref": "#/$defs/VirusPrepType" + "$ref": "#/$defs/_Ncbi" }, { - "type": "null" - } - ], - "default": null, - "title": "Viral prep type" - }, - "prep_protocol": { - "anyOf": [ + "$ref": "#/$defs/_Orcid" + }, { - "type": "string" + "$ref": "#/$defs/_Ror" }, { - "type": "null" + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "title": "Prep protocol" + "title": "Registry" + }, + "registry_identifier": { + "const": "01cmst727", + "default": "01cmst727", + "title": "Registry Identifier", + "type": "string" } }, - "required": [ - "prep_lot_number" - ], - "title": "TarsVirusIdentifiers", + "title": "_Simons_Foundation", "type": "object" }, - "TemperatureUnit": { - "description": "Temperature units", - "enum": [ - "Celsius", - "Kelvin" - ], - "title": "TemperatureUnit", - "type": "string" - }, - "TimeUnit": { - "description": "Enumeration of Time Measurements", - "enum": [ - "hour", - "minute", - "second", - "millisecond", - "microsecond", - "nanosecond" - ], - "title": "TimeUnit", - "type": "string" + "_Single_Plane_Ophys": { + "description": "Model single-plane-ophys", + "properties": { + "name": { + "const": "Single-plane optical physiology platform", + "default": "Single-plane optical physiology platform", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "single-plane-ophys", + "default": "single-plane-ophys", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Single_Plane_Ophys", + "type": "object" }, - "TrainingProtocol": { + "_Slap": { "additionalProperties": false, - "description": "Description of an animal training protocol", + "description": "Model slap", "properties": { - "procedure_type": { - "const": "Training", - "default": "Training", - "enum": [ - "Training" - ], - "title": "Procedure Type", + "name": { + "const": "Scanned line projection imaging", + "default": "Scanned line projection imaging", + "title": "Name", "type": "string" }, - "training_name": { - "title": "Training protocol name", + "abbreviation": { + "const": "slap", + "default": "slap", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Slap", + "type": "object" + }, + "_Slap2": { + "description": "Model SLAP2", + "properties": { + "name": { + "const": "SLAP2 platform", + "default": "SLAP2 platform", + "title": "Name", "type": "string" }, - "protocol_id": { - "title": "Training protocol ID", + "abbreviation": { + "const": "SLAP2", + "default": "SLAP2", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Slap2", + "type": "object" + }, + "_Slc": { + "description": "Model SLC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "start_date": { - "format": "date", - "title": "Training protocol start date", + "name": { + "const": "Subceruleus nucleus", + "default": "Subceruleus nucleus", + "title": "Name", "type": "string" }, - "end_date": { - "anyOf": [ - { - "format": "date", - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Training protocol end date" + "acronym": { + "const": "SLC", + "default": "SLC", + "title": "Acronym", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "id": { + "const": "350", + "default": "350", + "title": "Id", + "type": "string" + } + }, + "title": "_Slc", + "type": "object" + }, + "_Sld": { + "description": "Model SLD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Sublaterodorsal nucleus", + "default": "Sublaterodorsal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SLD", + "default": "SLD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "358", + "default": "358", + "title": "Id", + "type": "string" + } + }, + "title": "_Sld", + "type": "object" + }, + "_Sm": { + "description": "Model sm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "stria medullaris", + "default": "stria medullaris", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "sm", + "default": "sm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "802", + "default": "802", + "title": "Id", + "type": "string" } }, - "required": [ - "training_name", - "protocol_id", - "start_date" - ], - "title": "TrainingProtocol", + "title": "_Sm", "type": "object" }, - "Translation3dTransform": { - "additionalProperties": false, - "description": "Values to be vector-added to a 3D position. Often needed to specify a device or tile's origin.", + "_Smartspim": { + "description": "Model SmartSPIM", "properties": { - "type": { - "const": "translation", - "default": "translation", - "enum": [ - "translation" - ], - "title": "Type", + "name": { + "const": "SmartSPIM platform", + "default": "SmartSPIM platform", + "title": "Name", "type": "string" }, - "translation": { - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "maxItems": 3, - "minItems": 3, - "title": "3D translation parameters", - "type": "array" + "abbreviation": { + "const": "SmartSPIM", + "default": "SmartSPIM", + "title": "Abbreviation", + "type": "string" } }, - "required": [ - "translation" - ], - "title": "Translation3dTransform", + "title": "_Smartspim", "type": "object" }, - "Treadmill": { - "additionalProperties": false, - "description": "Description of treadmill platform", + "_Smt": { + "description": "Model SMT", "properties": { - "device_type": { - "const": "Treadmill", - "default": "Treadmill", - "enum": [ - "Treadmill" - ], - "title": "Device Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, "name": { - "title": "Device name", + "const": "Submedial nucleus of the thalamus", + "default": "Submedial nucleus of the thalamus", + "title": "Name", "type": "string" }, - "serial_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Serial number" + "acronym": { + "const": "SMT", + "default": "SMT", + "title": "Acronym", + "type": "string" }, - "manufacturer": { - "anyOf": [ - { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ] - }, - { - "type": "null" - } - ], - "default": null, - "title": "Manufacturer" + "id": { + "const": "366", + "default": "366", + "title": "Id", + "type": "string" + } + }, + "title": "_Smt", + "type": "object" + }, + "_Snc": { + "description": "Model SNc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Model" + "name": { + "const": "Substantia nigra, compact part", + "default": "Substantia nigra, compact part", + "title": "Name", + "type": "string" }, - "path_to_cad": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" + "acronym": { + "const": "SNc", + "default": "SNc", + "title": "Acronym", + "type": "string" }, - "port_index": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Port index" + "id": { + "const": "374", + "default": "374", + "title": "Id", + "type": "string" + } + }, + "title": "_Snc", + "type": "object" + }, + "_Sniff_Detector": { + "description": "Model Sniff Detector", + "properties": { + "whoami": { + "const": 1401, + "default": 1401, + "title": "Whoami", + "type": "integer" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "name": { + "const": "Sniff Detector", + "default": "Sniff Detector", + "title": "Name", + "type": "string" + } + }, + "title": "_Sniff_Detector", + "type": "object" + }, + "_Snr": { + "description": "Model SNr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "name": { + "const": "Substantia nigra, reticular part", + "default": "Substantia nigra, reticular part", + "title": "Name", + "type": "string" }, - "surface_material": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Surface material" + "acronym": { + "const": "SNr", + "default": "SNr", + "title": "Acronym", + "type": "string" }, - "date_surface_replaced": { - "anyOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Date surface replaced" + "id": { + "const": "381", + "default": "381", + "title": "Id", + "type": "string" + } + }, + "title": "_Snr", + "type": "object" + }, + "_So": { + "description": "Model SO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "treadmill_width": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Width of treadmill (mm)" + "name": { + "const": "Supraoptic nucleus", + "default": "Supraoptic nucleus", + "title": "Name", + "type": "string" }, - "width_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "centimeter", - "title": "Width unit" + "acronym": { + "const": "SO", + "default": "SO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "390", + "default": "390", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "treadmill_width" - ], - "title": "Treadmill", + "title": "_So", "type": "object" }, - "TriggerType": { - "description": "Types of detector triggers", - "enum": [ - "Internal", - "External" - ], - "title": "TriggerType", - "type": "string" + "_Soc": { + "description": "Model SOC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior olivary complex", + "default": "Superior olivary complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SOC", + "default": "SOC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "398", + "default": "398", + "title": "Id", + "type": "string" + } + }, + "title": "_Soc", + "type": "object" }, - "Tube": { - "additionalProperties": false, - "description": "Description of a tube platform", + "_Socl": { + "description": "Model SOCl", "properties": { - "device_type": { - "const": "Tube", - "default": "Tube", - "enum": [ - "Tube" - ], - "title": "Device Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, "name": { - "title": "Device name", + "const": "Superior olivary complex, lateral part", + "default": "Superior olivary complex, lateral part", + "title": "Name", "type": "string" }, - "serial_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Serial number" + "acronym": { + "const": "SOCl", + "default": "SOCl", + "title": "Acronym", + "type": "string" }, - "manufacturer": { - "anyOf": [ - { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ] - }, - { - "type": "null" - } - ], - "default": null, - "title": "Manufacturer" + "id": { + "const": "114", + "default": "114", + "title": "Id", + "type": "string" + } + }, + "title": "_Socl", + "type": "object" + }, + "_Socm": { + "description": "Model SOCm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Model" + "name": { + "const": "Superior olivary complex, medial part", + "default": "Superior olivary complex, medial part", + "title": "Name", + "type": "string" }, - "path_to_cad": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" + "acronym": { + "const": "SOCm", + "default": "SOCm", + "title": "Acronym", + "type": "string" }, - "port_index": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Port index" + "id": { + "const": "105", + "default": "105", + "title": "Id", + "type": "string" + } + }, + "title": "_Socm", + "type": "object" + }, + "_Sound_Card": { + "description": "Model Sound Card", + "properties": { + "whoami": { + "const": 1280, + "default": 1280, + "title": "Whoami", + "type": "integer" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "name": { + "const": "Sound Card", + "default": "Sound Card", + "title": "Name", + "type": "string" + } + }, + "title": "_Sound_Card", + "type": "object" + }, + "_Spa": { + "description": "Model SPA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "name": { + "const": "Subparafascicular area", + "default": "Subparafascicular area", + "title": "Name", + "type": "string" }, - "surface_material": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Surface material" + "acronym": { + "const": "SPA", + "default": "SPA", + "title": "Acronym", + "type": "string" }, - "date_surface_replaced": { - "anyOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Date surface replaced" + "id": { + "const": "609", + "default": "609", + "title": "Id", + "type": "string" + } + }, + "title": "_Spa", + "type": "object" + }, + "_Spf": { + "description": "Model SPF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "diameter": { - "anyOf": [ - { - "minimum": 0.0, - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Diameter" + "name": { + "const": "Subparafascicular nucleus", + "default": "Subparafascicular nucleus", + "title": "Name", + "type": "string" }, - "diameter_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "centimeter", - "title": "Diameter unit" + "acronym": { + "const": "SPF", + "default": "SPF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "406", + "default": "406", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "diameter" - ], - "title": "Tube", + "title": "_Spf", "type": "object" }, - "UnitlessUnit": { - "description": "Unitless options", - "enum": [ - "percent", - "fraction of cycle" - ], - "title": "UnitlessUnit", - "type": "string" + "_Spfm": { + "description": "Model SPFm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subparafascicular nucleus, magnocellular part", + "default": "Subparafascicular nucleus, magnocellular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPFm", + "default": "SPFm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "414", + "default": "414", + "title": "Id", + "type": "string" + } + }, + "title": "_Spfm", + "type": "object" }, - "ViralMaterial": { + "_Spfp": { + "description": "Model SPFp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subparafascicular nucleus, parvicellular part", + "default": "Subparafascicular nucleus, parvicellular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPFp", + "default": "SPFp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "422", + "default": "422", + "title": "Id", + "type": "string" + } + }, + "title": "_Spfp", + "type": "object" + }, + "_Spim": { "additionalProperties": false, - "description": "Description of viral material for injections", + "description": "Model SPIM", "properties": { - "material_type": { - "const": "Virus", - "default": "Virus", - "enum": [ - "Virus" - ], - "title": "Injection material type", + "name": { + "const": "Selective plane illumination microscopy", + "default": "Selective plane illumination microscopy", + "title": "Name", "type": "string" }, + "abbreviation": { + "const": "SPIM", + "default": "SPIM", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Spim", + "type": "object" + }, + "_Spinnaker": { + "description": "Model Spinnaker", + "properties": { "name": { - "description": "Full genome for virus construct", - "title": "Full genome name", + "const": "Spinnaker", + "default": "Spinnaker", + "title": "Name", "type": "string" }, - "tars_identifiers": { - "anyOf": [ - { - "$ref": "#/$defs/TarsVirusIdentifiers" - }, - { - "type": "null" - } - ], + "abbreviation": { + "const": null, "default": null, - "description": "TARS database identifiers", - "title": "TARS IDs" + "title": "Abbreviation", + "type": "null" }, - "addgene_id": { - "anyOf": [ - { - "$ref": "#/$defs/PIDName" - }, - { - "type": "null" - } - ], + "registry": { "default": null, - "description": "Registry must be Addgene", - "title": "Addgene id" + "title": "Registry", + "type": "null" }, - "titer": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], + "registry_identifier": { "default": null, - "description": "Final titer of viral material, accounting for mixture/diliution", - "title": "Effective titer (gc/mL)" + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Spinnaker", + "type": "object" + }, + "_Spiv": { + "description": "Model SPIV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "titer_unit": { - "default": "gc/mL", - "title": "Titer unit", + "name": { + "const": "Spinal vestibular nucleus", + "default": "Spinal vestibular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPIV", + "default": "SPIV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "225", + "default": "225", + "title": "Id", "type": "string" } }, - "required": [ - "name" - ], - "title": "ViralMaterial", + "title": "_Spiv", "type": "object" }, - "VirusPrepType": { - "description": "Type of virus preparation", - "enum": [ - "Crude", - "Purified" - ], - "title": "VirusPrepType", - "type": "string" + "_Sptv": { + "description": "Model sptV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "spinal tract of the trigeminal nerve", + "default": "spinal tract of the trigeminal nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "sptV", + "default": "sptV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "794", + "default": "794", + "title": "Id", + "type": "string" + } + }, + "title": "_Sptv", + "type": "object" }, - "VisualStimulation": { - "additionalProperties": false, - "description": "Description of visual stimulus parameters. Provides a high level description of stimulus.", + "_Spvc": { + "description": "Model SPVC", "properties": { - "stimulus_type": { - "const": "Visual Stimulation", - "default": "Visual Stimulation", - "enum": [ - "Visual Stimulation" - ], - "title": "Stimulus Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "stimulus_name": { - "title": "Stimulus name", + "name": { + "const": "Spinal nucleus of the trigeminal, caudal part", + "default": "Spinal nucleus of the trigeminal, caudal part", + "title": "Name", "type": "string" }, - "stimulus_parameters": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "description": "Define and list the parameter values used (e.g. all TF or orientation values)", - "title": "Stimulus parameters" + "acronym": { + "const": "SPVC", + "default": "SPVC", + "title": "Acronym", + "type": "string" }, - "stimulus_template_name": { - "default": [], - "description": "Name of image set or movie displayed", - "items": { - "type": "string" - }, - "title": "Stimulus template name", - "type": "array" + "id": { + "const": "429", + "default": "429", + "title": "Id", + "type": "string" + } + }, + "title": "_Spvc", + "type": "object" + }, + "_Spvi": { + "description": "Model SPVI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "name": { + "const": "Spinal nucleus of the trigeminal, interpolar part", + "default": "Spinal nucleus of the trigeminal, interpolar part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPVI", + "default": "SPVI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "437", + "default": "437", + "title": "Id", + "type": "string" } }, - "required": [ - "stimulus_name" - ], - "title": "VisualStimulation", + "title": "_Spvi", "type": "object" }, - "VoltageUnit": { - "const": "Volts", - "description": "Voltage units", - "enum": [ - "Volts" - ], - "title": "VoltageUnit", - "type": "string" + "_Spvo": { + "description": "Model SPVO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Spinal nucleus of the trigeminal, oral part", + "default": "Spinal nucleus of the trigeminal, oral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPVO", + "default": "SPVO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "445", + "default": "445", + "title": "Id", + "type": "string" + } + }, + "title": "_Spvo", + "type": "object" }, - "VolumeUnit": { - "description": "Enumeration of Volume Measurements", - "enum": [ - "liter", - "milliliter", - "microliter", - "nanoliter" - ], - "title": "VolumeUnit", - "type": "string" + "_Ss": { + "description": "Model SS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Somatosensory areas", + "default": "Somatosensory areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SS", + "default": "SS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "453", + "default": "453", + "title": "Id", + "type": "string" + } + }, + "title": "_Ss", + "type": "object" }, - "WaterRestriction": { - "additionalProperties": false, - "description": "Description of a water restriction procedure", + "_Ssp": { + "description": "Model SSp", "properties": { - "procedure_type": { - "const": "Water restriction", - "default": "Water restriction", - "enum": [ - "Water restriction" - ], - "title": "Procedure Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area", + "default": "Primary somatosensory area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp", + "default": "SSp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "322", + "default": "322", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp", + "type": "object" + }, + "_Ssp_Bfd": { + "description": "Model SSp-bfd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field", + "default": "Primary somatosensory area, barrel field", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd", + "default": "SSp-bfd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "329", + "default": "329", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd", + "type": "object" + }, + "_Ssp_Bfd1": { + "description": "Model SSp-bfd1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field, layer 1", + "default": "Primary somatosensory area, barrel field, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd1", + "default": "SSp-bfd1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "981", + "default": "981", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd1", + "type": "object" + }, + "_Ssp_Bfd2_3": { + "description": "Model SSp-bfd2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field, layer 2/3", + "default": "Primary somatosensory area, barrel field, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd2/3", + "default": "SSp-bfd2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "201", + "default": "201", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd2_3", + "type": "object" + }, + "_Ssp_Bfd4": { + "description": "Model SSp-bfd4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field, layer 4", + "default": "Primary somatosensory area, barrel field, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd4", + "default": "SSp-bfd4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1047", + "default": "1047", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd4", + "type": "object" + }, + "_Ssp_Bfd5": { + "description": "Model SSp-bfd5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field, layer 5", + "default": "Primary somatosensory area, barrel field, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd5", + "default": "SSp-bfd5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1070", + "default": "1070", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd5", + "type": "object" + }, + "_Ssp_Bfd6A": { + "description": "Model SSp-bfd6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field, layer 6a", + "default": "Primary somatosensory area, barrel field, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd6a", + "default": "SSp-bfd6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1038", + "default": "1038", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd6A", + "type": "object" + }, + "_Ssp_Bfd6B": { + "description": "Model SSp-bfd6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "iacuc_protocol": { - "title": "IACUC protocol", + "name": { + "const": "Primary somatosensory area, barrel field, layer 6b", + "default": "Primary somatosensory area, barrel field, layer 6b", + "title": "Name", "type": "string" }, - "target_fraction_weight": { - "title": "Target fraction weight (%)", - "type": "integer" + "acronym": { + "const": "SSp-bfd6b", + "default": "SSp-bfd6b", + "title": "Acronym", + "type": "string" }, - "target_fraction_weight_unit": { - "$ref": "#/$defs/UnitlessUnit", - "default": "percent", - "title": "Target fraction weight unit" + "id": { + "const": "1062", + "default": "1062", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd6B", + "type": "object" + }, + "_Ssp_Ll": { + "description": "Model SSp-ll", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "minimum_water_per_day": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Minimum water per day (mL)" + "name": { + "const": "Primary somatosensory area, lower limb", + "default": "Primary somatosensory area, lower limb", + "title": "Name", + "type": "string" }, - "minimum_water_per_day_unit": { - "$ref": "#/$defs/VolumeUnit", - "default": "milliliter", - "title": "Minimum water per day unit" + "acronym": { + "const": "SSp-ll", + "default": "SSp-ll", + "title": "Acronym", + "type": "string" }, - "baseline_weight": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "description": "Weight at start of water restriction", - "title": "Baseline weight (g)" + "id": { + "const": "337", + "default": "337", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll", + "type": "object" + }, + "_Ssp_Ll1": { + "description": "Model SSp-ll1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "weight_unit": { - "$ref": "#/$defs/MassUnit", - "default": "gram", - "title": "Weight unit" + "name": { + "const": "Primary somatosensory area, lower limb, layer 1", + "default": "Primary somatosensory area, lower limb, layer 1", + "title": "Name", + "type": "string" }, - "start_date": { - "format": "date", - "title": "Water restriction start date", + "acronym": { + "const": "SSp-ll1", + "default": "SSp-ll1", + "title": "Acronym", "type": "string" }, - "end_date": { - "anyOf": [ - { - "format": "date", - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Water restriction end date" + "id": { + "const": "1030", + "default": "1030", + "title": "Id", + "type": "string" } }, - "required": [ - "iacuc_protocol", - "target_fraction_weight", - "minimum_water_per_day", - "baseline_weight", - "start_date" - ], - "title": "WaterRestriction", + "title": "_Ssp_Ll1", "type": "object" }, - "WellnessReport": { - "additionalProperties": false, - "description": "Wellness report on animal health", + "_Ssp_Ll2_3": { + "description": "Model SSp-ll2/3", "properties": { - "date": { - "format": "date", - "title": "Date", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "report": { - "title": "Report", + "name": { + "const": "Primary somatosensory area, lower limb, layer 2/3", + "default": "Primary somatosensory area, lower limb, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ll2/3", + "default": "SSp-ll2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "113", + "default": "113", + "title": "Id", "type": "string" } }, - "required": [ - "date", - "report" - ], - "title": "WellnessReport", + "title": "_Ssp_Ll2_3", "type": "object" }, - "Wheel": { - "additionalProperties": false, - "description": "Description of a running wheel", + "_Ssp_Ll4": { + "description": "Model SSp-ll4", "properties": { - "device_type": { - "const": "Wheel", - "default": "Wheel", - "enum": [ - "Wheel" - ], - "title": "Device Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, "name": { - "title": "Device name", + "const": "Primary somatosensory area, lower limb, layer 4", + "default": "Primary somatosensory area, lower limb, layer 4", + "title": "Name", "type": "string" }, - "serial_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Serial number" + "acronym": { + "const": "SSp-ll4", + "default": "SSp-ll4", + "title": "Acronym", + "type": "string" }, - "manufacturer": { - "anyOf": [ - { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" - }, - "propertyName": "name" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" - }, - { - "$ref": "#/$defs/_Raspberry_Pi" - }, - { - "$ref": "#/$defs/_Sicgen" - }, - { - "$ref": "#/$defs/_Schneider_Kreuznach" - }, - { - "$ref": "#/$defs/_Second_Order_Effects" - }, - { - "$ref": "#/$defs/_Semrock" - }, - { - "$ref": "#/$defs/_Sigma_Aldrich" - }, - { - "$ref": "#/$defs/_Simons_Foundation" - }, - { - "$ref": "#/$defs/_Spinnaker" - }, - { - "$ref": "#/$defs/_Tamron" - }, - { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" - }, - { - "$ref": "#/$defs/_Teledyne_Flir" - }, - { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" - }, - { - "$ref": "#/$defs/_The_Imaging_Source" - }, - { - "$ref": "#/$defs/_The_Lee_Company" - }, - { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" - }, - { - "$ref": "#/$defs/_Thorlabs" - }, - { - "$ref": "#/$defs/_Tymphany" - }, - { - "$ref": "#/$defs/_Vieworks" - }, - { - "$ref": "#/$defs/_Vortran" - }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ] - }, - { - "type": "null" - } - ], - "default": null, - "title": "Manufacturer" + "id": { + "const": "1094", + "default": "1094", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll4", + "type": "object" + }, + "_Ssp_Ll5": { + "description": "Model SSp-ll5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Model" + "name": { + "const": "Primary somatosensory area, lower limb, layer 5", + "default": "Primary somatosensory area, lower limb, layer 5", + "title": "Name", + "type": "string" }, - "path_to_cad": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" + "acronym": { + "const": "SSp-ll5", + "default": "SSp-ll5", + "title": "Acronym", + "type": "string" }, - "port_index": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Port index" + "id": { + "const": "1128", + "default": "1128", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll5", + "type": "object" + }, + "_Ssp_Ll6A": { + "description": "Model SSp-ll6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "name": { + "const": "Primary somatosensory area, lower limb, layer 6a", + "default": "Primary somatosensory area, lower limb, layer 6a", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "SSp-ll6a", + "default": "SSp-ll6a", + "title": "Acronym", + "type": "string" }, - "surface_material": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Surface material" + "id": { + "const": "478", + "default": "478", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll6A", + "type": "object" + }, + "_Ssp_Ll6B": { + "description": "Model SSp-ll6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "date_surface_replaced": { - "anyOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Date surface replaced" + "name": { + "const": "Primary somatosensory area, lower limb, layer 6b", + "default": "Primary somatosensory area, lower limb, layer 6b", + "title": "Name", + "type": "string" }, - "radius": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Radius (mm)" + "acronym": { + "const": "SSp-ll6b", + "default": "SSp-ll6b", + "title": "Acronym", + "type": "string" }, - "width": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Width (mm)" + "id": { + "const": "510", + "default": "510", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll6B", + "type": "object" + }, + "_Ssp_M": { + "description": "Model SSp-m", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "size_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Size unit" + "name": { + "const": "Primary somatosensory area, mouth", + "default": "Primary somatosensory area, mouth", + "title": "Name", + "type": "string" }, - "encoder": { - "$ref": "#/$defs/Device", - "title": "Encoder" + "acronym": { + "const": "SSp-m", + "default": "SSp-m", + "title": "Acronym", + "type": "string" }, - "encoder_output": { - "anyOf": [ - { - "$ref": "#/$defs/DAQChannel" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Encoder DAQ channel" + "id": { + "const": "345", + "default": "345", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M", + "type": "object" + }, + "_Ssp_M1": { + "description": "Model SSp-m1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "pulse_per_revolution": { - "title": "Pulse per revolution", - "type": "integer" + "name": { + "const": "Primary somatosensory area, mouth, layer 1", + "default": "Primary somatosensory area, mouth, layer 1", + "title": "Name", + "type": "string" }, - "magnetic_brake": { - "$ref": "#/$defs/Device", - "title": "Magnetic brake" + "acronym": { + "const": "SSp-m1", + "default": "SSp-m1", + "title": "Acronym", + "type": "string" }, - "brake_output": { - "anyOf": [ - { - "$ref": "#/$defs/DAQChannel" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Brake DAQ channel" + "id": { + "const": "878", + "default": "878", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M1", + "type": "object" + }, + "_Ssp_M2_3": { + "description": "Model SSp-m2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth, layer 2/3", + "default": "Primary somatosensory area, mouth, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m2/3", + "default": "SSp-m2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "657", + "default": "657", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M2_3", + "type": "object" + }, + "_Ssp_M4": { + "description": "Model SSp-m4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth, layer 4", + "default": "Primary somatosensory area, mouth, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m4", + "default": "SSp-m4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "950", + "default": "950", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M4", + "type": "object" + }, + "_Ssp_M5": { + "description": "Model SSp-m5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth, layer 5", + "default": "Primary somatosensory area, mouth, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m5", + "default": "SSp-m5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "974", + "default": "974", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M5", + "type": "object" + }, + "_Ssp_M6A": { + "description": "Model SSp-m6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth, layer 6a", + "default": "Primary somatosensory area, mouth, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m6a", + "default": "SSp-m6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1102", + "default": "1102", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M6A", + "type": "object" + }, + "_Ssp_M6B": { + "description": "Model SSp-m6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth, layer 6b", + "default": "Primary somatosensory area, mouth, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m6b", + "default": "SSp-m6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "2", + "default": "2", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M6B", + "type": "object" + }, + "_Ssp_N": { + "description": "Model SSp-n", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose", + "default": "Primary somatosensory area, nose", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n", + "default": "SSp-n", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "353", + "default": "353", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N", + "type": "object" + }, + "_Ssp_N1": { + "description": "Model SSp-n1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 1", + "default": "Primary somatosensory area, nose, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n1", + "default": "SSp-n1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "558", + "default": "558", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N1", + "type": "object" + }, + "_Ssp_N2_3": { + "description": "Model SSp-n2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 2/3", + "default": "Primary somatosensory area, nose, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n2/3", + "default": "SSp-n2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "838", + "default": "838", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N2_3", + "type": "object" + }, + "_Ssp_N4": { + "description": "Model SSp-n4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 4", + "default": "Primary somatosensory area, nose, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n4", + "default": "SSp-n4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "654", + "default": "654", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N4", + "type": "object" + }, + "_Ssp_N5": { + "description": "Model SSp-n5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 5", + "default": "Primary somatosensory area, nose, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n5", + "default": "SSp-n5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "702", + "default": "702", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N5", + "type": "object" + }, + "_Ssp_N6A": { + "description": "Model SSp-n6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 6a", + "default": "Primary somatosensory area, nose, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n6a", + "default": "SSp-n6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "889", + "default": "889", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N6A", + "type": "object" + }, + "_Ssp_N6B": { + "description": "Model SSp-n6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 6b", + "default": "Primary somatosensory area, nose, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n6b", + "default": "SSp-n6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "929", + "default": "929", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N6B", + "type": "object" + }, + "_Ssp_Tr": { + "description": "Model SSp-tr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk", + "default": "Primary somatosensory area, trunk", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr", + "default": "SSp-tr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "361", + "default": "361", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr", + "type": "object" + }, + "_Ssp_Tr1": { + "description": "Model SSp-tr1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 1", + "default": "Primary somatosensory area, trunk, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr1", + "default": "SSp-tr1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1006", + "default": "1006", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr1", + "type": "object" + }, + "_Ssp_Tr2_3": { + "description": "Model SSp-tr2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 2/3", + "default": "Primary somatosensory area, trunk, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr2/3", + "default": "SSp-tr2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "670", + "default": "670", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr2_3", + "type": "object" + }, + "_Ssp_Tr4": { + "description": "Model SSp-tr4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 4", + "default": "Primary somatosensory area, trunk, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr4", + "default": "SSp-tr4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1086", + "default": "1086", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr4", + "type": "object" + }, + "_Ssp_Tr5": { + "description": "Model SSp-tr5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 5", + "default": "Primary somatosensory area, trunk, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr5", + "default": "SSp-tr5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1111", + "default": "1111", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr5", + "type": "object" + }, + "_Ssp_Tr6A": { + "description": "Model SSp-tr6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 6a", + "default": "Primary somatosensory area, trunk, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr6a", + "default": "SSp-tr6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "9", + "default": "9", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr6A", + "type": "object" + }, + "_Ssp_Tr6B": { + "description": "Model SSp-tr6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 6b", + "default": "Primary somatosensory area, trunk, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr6b", + "default": "SSp-tr6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "461", + "default": "461", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr6B", + "type": "object" + }, + "_Ssp_Ul": { + "description": "Model SSp-ul", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, upper limb", + "default": "Primary somatosensory area, upper limb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ul", + "default": "SSp-ul", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "369", + "default": "369", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ul", + "type": "object" + }, + "_Ssp_Ul1": { + "description": "Model SSp-ul1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, upper limb, layer 1", + "default": "Primary somatosensory area, upper limb, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ul1", + "default": "SSp-ul1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "450", + "default": "450", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ul1", + "type": "object" + }, + "_Ssp_Ul2_3": { + "description": "Model SSp-ul2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, upper limb, layer 2/3", + "default": "Primary somatosensory area, upper limb, layer 2/3", + "title": "Name", + "type": "string" }, - "torque_sensor": { - "$ref": "#/$defs/Device", - "title": "Torque sensor" + "acronym": { + "const": "SSp-ul2/3", + "default": "SSp-ul2/3", + "title": "Acronym", + "type": "string" }, - "torque_output": { - "anyOf": [ - { - "$ref": "#/$defs/DAQChannel" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Torque DAQ channel" + "id": { + "const": "854", + "default": "854", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "radius", - "width", - "encoder", - "pulse_per_revolution", - "magnetic_brake", - "torque_sensor" - ], - "title": "Wheel", + "title": "_Ssp_Ul2_3", "type": "object" }, - "_Aa_Opto_Electronic": { - "description": "Model AA Opto Electronic", + "_Ssp_Ul4": { + "description": "Model SSp-ul4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "AA Opto Electronic", - "default": "AA Opto Electronic", - "enum": [ - "AA Opto Electronic" - ], + "const": "Primary somatosensory area, upper limb, layer 4", + "default": "Primary somatosensory area, upper limb, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "SSp-ul4", + "default": "SSp-ul4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "577", + "default": "577", + "title": "Id", + "type": "string" } }, - "title": "_Aa_Opto_Electronic", + "title": "_Ssp_Ul4", "type": "object" }, - "_Abcam": { - "description": "Model Abcam", + "_Ssp_Ul5": { + "description": "Model SSp-ul5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Abcam", - "default": "Abcam", - "enum": [ - "Abcam" - ], + "const": "Primary somatosensory area, upper limb, layer 5", + "default": "Primary somatosensory area, upper limb, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "SSp-ul5", + "default": "SSp-ul5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "02e1wjw63", - "default": "02e1wjw63", - "enum": [ - "02e1wjw63" - ], - "title": "Registry Identifier", + "id": { + "const": "625", + "default": "625", + "title": "Id", "type": "string" } }, - "title": "_Abcam", + "title": "_Ssp_Ul5", "type": "object" }, - "_Ailipu_Technology_Co": { - "description": "Model Ailipu Technology Co", + "_Ssp_Ul6A": { + "description": "Model SSp-ul6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Ailipu Technology Co", - "default": "Ailipu Technology Co", - "enum": [ - "Ailipu Technology Co" - ], + "const": "Primary somatosensory area, upper limb, layer 6a", + "default": "Primary somatosensory area, upper limb, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "Ailipu", - "default": "Ailipu", - "enum": [ - "Ailipu" - ], - "title": "Abbreviation", + "acronym": { + "const": "SSp-ul6a", + "default": "SSp-ul6a", + "title": "Acronym", "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" - }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "945", + "default": "945", + "title": "Id", + "type": "string" } }, - "title": "_Ailipu_Technology_Co", + "title": "_Ssp_Ul6A", "type": "object" }, - "_Allen_Institute": { - "description": "Model Allen Institute", + "_Ssp_Ul6B": { + "description": "Model SSp-ul6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Allen Institute", - "default": "Allen Institute", - "enum": [ - "Allen Institute" - ], + "const": "Primary somatosensory area, upper limb, layer 6b", + "default": "Primary somatosensory area, upper limb, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "AI", - "default": "AI", - "enum": [ - "AI" - ], - "title": "Abbreviation", + "acronym": { + "const": "SSp-ul6b", + "default": "SSp-ul6b", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "03cpe7c52", - "default": "03cpe7c52", - "enum": [ - "03cpe7c52" - ], - "title": "Registry Identifier", + "id": { + "const": "1026", + "default": "1026", + "title": "Id", "type": "string" } }, - "title": "_Allen_Institute", + "title": "_Ssp_Ul6B", "type": "object" }, - "_Allen_Institute_For_Brain_Science": { - "description": "Model Allen Institute for Brain Science", + "_Ssp_Un": { + "description": "Model SSp-un", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Allen Institute for Brain Science", - "default": "Allen Institute for Brain Science", - "enum": [ - "Allen Institute for Brain Science" - ], + "const": "Primary somatosensory area, unassigned", + "default": "Primary somatosensory area, unassigned", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "AIBS", - "default": "AIBS", - "enum": [ - "AIBS" - ], - "title": "Abbreviation", + "acronym": { + "const": "SSp-un", + "default": "SSp-un", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "00dcv1019", - "default": "00dcv1019", - "enum": [ - "00dcv1019" - ], - "title": "Registry Identifier", + "id": { + "const": "182305689", + "default": "182305689", + "title": "Id", "type": "string" } }, - "title": "_Allen_Institute_For_Brain_Science", + "title": "_Ssp_Un", "type": "object" }, - "_Allen_Institute_For_Neural_Dynamics": { - "description": "Model Allen Institute for Neural Dynamics", + "_Ssp_Un1": { + "description": "Model SSp-un1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Allen Institute for Neural Dynamics", - "default": "Allen Institute for Neural Dynamics", - "enum": [ - "Allen Institute for Neural Dynamics" - ], + "const": "Primary somatosensory area, unassigned, layer 1", + "default": "Primary somatosensory area, unassigned, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "AIND", - "default": "AIND", - "enum": [ - "AIND" - ], - "title": "Abbreviation", + "acronym": { + "const": "SSp-un1", + "default": "SSp-un1", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "182305693", + "default": "182305693", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Un1", + "type": "object" + }, + "_Ssp_Un2_3": { + "description": "Model SSp-un2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "04szwah67", - "default": "04szwah67", - "enum": [ - "04szwah67" - ], - "title": "Registry Identifier", + "name": { + "const": "Primary somatosensory area, unassigned, layer 2/3", + "default": "Primary somatosensory area, unassigned, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-un2/3", + "default": "SSp-un2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "182305697", + "default": "182305697", + "title": "Id", "type": "string" } }, - "title": "_Allen_Institute_For_Neural_Dynamics", + "title": "_Ssp_Un2_3", "type": "object" }, - "_Allied": { - "description": "Model Allied", + "_Ssp_Un4": { + "description": "Model SSp-un4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Allied", - "default": "Allied", - "enum": [ - "Allied" - ], + "const": "Primary somatosensory area, unassigned, layer 4", + "default": "Primary somatosensory area, unassigned, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "SSp-un4", + "default": "SSp-un4", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "182305701", + "default": "182305701", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Un4", + "type": "object" + }, + "_Ssp_Un5": { + "description": "Model SSp-un5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Primary somatosensory area, unassigned, layer 5", + "default": "Primary somatosensory area, unassigned, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-un5", + "default": "SSp-un5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "182305705", + "default": "182305705", + "title": "Id", + "type": "string" } }, - "title": "_Allied", + "title": "_Ssp_Un5", "type": "object" }, - "_Ams_Osram": { - "description": "Model ams OSRAM", + "_Ssp_Un6A": { + "description": "Model SSp-un6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "ams OSRAM", - "default": "ams OSRAM", - "enum": [ - "ams OSRAM" - ], + "const": "Primary somatosensory area, unassigned, layer 6a", + "default": "Primary somatosensory area, unassigned, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "SSp-un6a", + "default": "SSp-un6a", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "182305709", + "default": "182305709", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Un6A", + "type": "object" + }, + "_Ssp_Un6B": { + "description": "Model SSp-un6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "045d0h266", - "default": "045d0h266", - "enum": [ - "045d0h266" - ], - "title": "Registry Identifier", + "name": { + "const": "Primary somatosensory area, unassigned, layer 6b", + "default": "Primary somatosensory area, unassigned, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-un6b", + "default": "SSp-un6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "182305713", + "default": "182305713", + "title": "Id", "type": "string" } }, - "title": "_Ams_Osram", + "title": "_Ssp_Un6B", "type": "object" }, - "_Applied_Scientific_Instrumentation": { - "description": "Model Applied Scientific Instrumentation", + "_Sss": { + "description": "Model SSs", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Applied Scientific Instrumentation", - "default": "Applied Scientific Instrumentation", - "enum": [ - "Applied Scientific Instrumentation" - ], + "const": "Supplemental somatosensory area", + "default": "Supplemental somatosensory area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "ASI", - "default": "ASI", - "enum": [ - "ASI" - ], - "title": "Abbreviation", + "acronym": { + "const": "SSs", + "default": "SSs", + "title": "Acronym", "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "378", + "default": "378", + "title": "Id", + "type": "string" + } + }, + "title": "_Sss", + "type": "object" + }, + "_Sss1": { + "description": "Model SSs1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Supplemental somatosensory area, layer 1", + "default": "Supplemental somatosensory area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSs1", + "default": "SSs1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "873", + "default": "873", + "title": "Id", + "type": "string" } }, - "title": "_Applied_Scientific_Instrumentation", + "title": "_Sss1", "type": "object" }, - "_Arecont_Vision_Costar": { - "description": "Model Arecont Vision Costar", + "_Sss2_3": { + "description": "Model SSs2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Arecont Vision Costar", - "default": "Arecont Vision Costar", - "enum": [ - "Arecont Vision Costar" - ], + "const": "Supplemental somatosensory area, layer 2/3", + "default": "Supplemental somatosensory area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "SSs2/3", + "default": "SSs2/3", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "806", + "default": "806", + "title": "Id", + "type": "string" } }, - "title": "_Arecont_Vision_Costar", + "title": "_Sss2_3", "type": "object" }, - "_Asus": { - "description": "Model ASUS", + "_Sss4": { + "description": "Model SSs4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "ASUS", - "default": "ASUS", - "enum": [ - "ASUS" - ], + "const": "Supplemental somatosensory area, layer 4", + "default": "Supplemental somatosensory area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "SSs4", + "default": "SSs4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "00bxkz165", - "default": "00bxkz165", - "enum": [ - "00bxkz165" - ], - "title": "Registry Identifier", + "id": { + "const": "1035", + "default": "1035", + "title": "Id", "type": "string" } }, - "title": "_Asus", + "title": "_Sss4", "type": "object" }, - "_Basler": { - "description": "Model Basler", + "_Sss5": { + "description": "Model SSs5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Basler", - "default": "Basler", - "enum": [ - "Basler" - ], + "const": "Supplemental somatosensory area, layer 5", + "default": "Supplemental somatosensory area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "SSs5", + "default": "SSs5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "1090", + "default": "1090", + "title": "Id", + "type": "string" } }, - "title": "_Basler", + "title": "_Sss5", "type": "object" }, - "_Behavior_Videos": { - "additionalProperties": false, - "description": "Model behavior-videos", + "_Sss6A": { + "description": "Model SSs6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Behavior videos", - "default": "Behavior videos", - "enum": [ - "Behavior videos" - ], + "const": "Supplemental somatosensory area, layer 6a", + "default": "Supplemental somatosensory area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "behavior-videos", - "default": "behavior-videos", - "enum": [ - "behavior-videos" - ], - "title": "Abbreviation", + "acronym": { + "const": "SSs6a", + "default": "SSs6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "862", + "default": "862", + "title": "Id", "type": "string" } }, - "title": "_Behavior_Videos", + "title": "_Sss6A", "type": "object" }, - "_Biceps_Brachii": { - "description": "Model biceps brachii", + "_Sss6B": { + "description": "Model SSs6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "biceps brachii", - "default": "biceps brachii", - "enum": [ - "biceps brachii" - ], + "const": "Supplemental somatosensory area, layer 6b", + "default": "Supplemental somatosensory area, layer 6b", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "SSs6b", + "default": "SSs6b", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_19108", - "default": "EMAPA_19108", - "enum": [ - "EMAPA_19108" - ], - "title": "Registry Identifier", + "id": { + "const": "893", + "default": "893", + "title": "Id", "type": "string" } }, - "title": "_Biceps_Brachii", + "title": "_Sss6B", "type": "object" }, - "_Callithrix_Jacchus": { - "description": "Model Callithrix jacchus", + "_St": { + "description": "Model st", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Callithrix jacchus", - "default": "Callithrix jacchus", - "enum": [ - "Callithrix jacchus" - ], + "const": "stria terminalis", + "default": "stria terminalis", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "National Center for Biotechnology Information", - "abbreviation": "NCBI" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "st", + "default": "st", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "NCBI:txid9483", - "default": "NCBI:txid9483", - "enum": [ - "NCBI:txid9483" - ], - "title": "Registry Identifier", + "id": { + "const": "301", + "default": "301", + "title": "Id", "type": "string" } }, - "title": "_Callithrix_Jacchus", + "title": "_St", "type": "object" }, - "_Cambridge_Technology": { - "description": "Model Cambridge Technology", + "_Stc": { + "description": "Model stc", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Cambridge Technology", - "default": "Cambridge Technology", - "enum": [ - "Cambridge Technology" - ], + "const": "commissural branch of stria terminalis", + "default": "commissural branch of stria terminalis", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "stc", + "default": "stc", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "484682528", + "default": "484682528", + "title": "Id", + "type": "string" } }, - "title": "_Cambridge_Technology", + "title": "_Stc", "type": "object" }, - "_Camera_Controller": { - "description": "Model Camera Controller", + "_Stepper_Driver": { + "description": "Model Stepper Driver", "properties": { "whoami": { - "const": 1168, - "default": 1168, - "enum": [ - 1168 - ], + "const": 1130, + "default": 1130, "title": "Whoami", "type": "integer" }, "name": { - "const": "Camera Controller", - "default": "Camera Controller", - "enum": [ - "Camera Controller" - ], + "const": "Stepper Driver", + "default": "Stepper Driver", "title": "Name", "type": "string" } }, - "title": "_Camera_Controller", + "title": "_Stepper_Driver", "type": "object" }, - "_Carl_Zeiss": { - "description": "Model Carl Zeiss", + "_Stn": { + "description": "Model STN", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Carl Zeiss", - "default": "Carl Zeiss", - "enum": [ - "Carl Zeiss" - ], + "const": "Subthalamic nucleus", + "default": "Subthalamic nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "STN", + "default": "STN", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "01xk5xs43", - "default": "01xk5xs43", - "enum": [ - "01xk5xs43" - ], - "title": "Registry Identifier", + "id": { + "const": "470", + "default": "470", + "title": "Id", "type": "string" } }, - "title": "_Carl_Zeiss", + "title": "_Stn", "type": "object" }, - "_Champalimaud_Foundation": { - "description": "Model Champalimaud Foundation", + "_Str": { + "description": "Model STR", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Champalimaud Foundation", - "default": "Champalimaud Foundation", - "enum": [ - "Champalimaud Foundation" - ], + "const": "Striatum", + "default": "Striatum", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "Champalimaud", - "default": "Champalimaud", - "enum": [ - "Champalimaud" - ], - "title": "Abbreviation", + "acronym": { + "const": "STR", + "default": "STR", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "477", + "default": "477", + "title": "Id", + "type": "string" + } + }, + "title": "_Str", + "type": "object" + }, + "_Strd": { + "description": "Model STRd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "03g001n57", - "default": "03g001n57", - "enum": [ - "03g001n57" - ], - "title": "Registry Identifier", + "name": { + "const": "Striatum dorsal region", + "default": "Striatum dorsal region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "STRd", + "default": "STRd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "485", + "default": "485", + "title": "Id", "type": "string" } }, - "title": "_Champalimaud_Foundation", + "title": "_Strd", "type": "object" }, - "_Chan_Zuckerberg_Initiative": { - "description": "Model Chan Zuckerberg Initiative", + "_Strv": { + "description": "Model STRv", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Chan Zuckerberg Initiative", - "default": "Chan Zuckerberg Initiative", - "enum": [ - "Chan Zuckerberg Initiative" - ], + "const": "Striatum ventral region", + "default": "Striatum ventral region", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "CZI", - "default": "CZI", - "enum": [ - "CZI" - ], - "title": "Abbreviation", + "acronym": { + "const": "STRv", + "default": "STRv", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "493", + "default": "493", + "title": "Id", + "type": "string" + } + }, + "title": "_Strv", + "type": "object" + }, + "_Su3": { + "description": "Model Su3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Supraoculomotor periaqueductal gray", + "default": "Supraoculomotor periaqueductal gray", + "title": "Name", + "type": "string" }, - "registry_identifier": { - "const": "02qenvm24", - "default": "02qenvm24", - "enum": [ - "02qenvm24" - ], - "title": "Registry Identifier", + "acronym": { + "const": "Su3", + "default": "Su3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "614454277", + "default": "614454277", + "title": "Id", "type": "string" } }, - "title": "_Chan_Zuckerberg_Initiative", + "title": "_Su3", "type": "object" }, - "_Chroma": { - "description": "Model Chroma", + "_Sub": { + "description": "Model SUB", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Chroma", - "default": "Chroma", - "enum": [ - "Chroma" - ], + "const": "Subiculum", + "default": "Subiculum", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "SUB", + "default": "SUB", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "502", + "default": "502", + "title": "Id", + "type": "string" } }, - "title": "_Chroma", + "title": "_Sub", "type": "object" }, - "_Clock_Synchronizer": { - "description": "Model Clock Synchronizer", + "_Subg": { + "description": "Model SubG", "properties": { - "whoami": { - "const": 1152, - "default": 1152, - "enum": [ - 1152 - ], - "title": "Whoami", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, "name": { - "const": "Clock Synchronizer", - "default": "Clock Synchronizer", - "enum": [ - "Clock Synchronizer" - ], + "const": "Subgeniculate nucleus", + "default": "Subgeniculate nucleus", "title": "Name", "type": "string" + }, + "acronym": { + "const": "SubG", + "default": "SubG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "321", + "default": "321", + "title": "Id", + "type": "string" } }, - "title": "_Clock_Synchronizer", + "title": "_Subg", "type": "object" }, - "_Coherent_Scientific": { - "description": "Model Coherent Scientific", + "_Sum": { + "description": "Model SUM", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Coherent Scientific", - "default": "Coherent Scientific", - "enum": [ - "Coherent Scientific" - ], + "const": "Supramammillary nucleus", + "default": "Supramammillary nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "SUM", + "default": "SUM", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "031tysd23", - "default": "031tysd23", - "enum": [ - "031tysd23" - ], - "title": "Registry Identifier", + "id": { + "const": "525", + "default": "525", + "title": "Id", "type": "string" } }, - "title": "_Coherent_Scientific", + "title": "_Sum", "type": "object" }, - "_Columbia_University": { - "description": "Model Columbia University", + "_Sup": { + "description": "Model sup", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Columbia University", - "default": "Columbia University", - "enum": [ - "Columbia University" - ], + "const": "supraoptic commissures", + "default": "supraoptic commissures", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "Columbia", - "default": "Columbia", - "enum": [ - "Columbia" - ], - "title": "Abbreviation", + "acronym": { + "const": "sup", + "default": "sup", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "00hj8s172", - "default": "00hj8s172", - "enum": [ - "00hj8s172" - ], - "title": "Registry Identifier", + "id": { + "const": "349", + "default": "349", + "title": "Id", "type": "string" } }, - "title": "_Columbia_University", + "title": "_Sup", "type": "object" }, - "_Computar": { - "description": "Model Computar", + "_Sut": { + "description": "Model SUT", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Computar", - "default": "Computar", - "enum": [ - "Computar" - ], + "const": "Supratrigeminal nucleus", + "default": "Supratrigeminal nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "SUT", + "default": "SUT", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "534", + "default": "534", + "title": "Id", + "type": "string" } }, - "title": "_Computar", + "title": "_Sut", "type": "object" }, - "_Conoptics": { - "description": "Model Conoptics", + "_Suv": { + "description": "Model SUV", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Conoptics", - "default": "Conoptics", - "enum": [ - "Conoptics" - ], + "const": "Superior vestibular nucleus", + "default": "Superior vestibular nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "SUV", + "default": "SUV", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "217", + "default": "217", + "title": "Id", + "type": "string" } }, - "title": "_Conoptics", + "title": "_Suv", "type": "object" }, - "_Custom": { - "description": "Model Custom", + "_Sv": { + "description": "Model sV", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Custom", - "default": "Custom", - "enum": [ - "Custom" - ], + "const": "sensory root of the trigeminal nerve", + "default": "sensory root of the trigeminal nerve", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "sV", + "default": "sV", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "229", + "default": "229", + "title": "Id", + "type": "string" } }, - "title": "_Custom", + "title": "_Sv", "type": "object" }, - "_Cuttlefish": { - "description": "Model Cuttlefish", + "_Synchronizer": { + "description": "Model Synchronizer", "properties": { "whoami": { - "const": 1403, - "default": 1403, - "enum": [ - 1403 - ], + "const": 1104, + "default": 1104, "title": "Whoami", "type": "integer" }, "name": { - "const": "Cuttlefish", - "default": "Cuttlefish", - "enum": [ - "Cuttlefish" - ], + "const": "Synchronizer", + "default": "Synchronizer", "title": "Name", "type": "string" } }, - "title": "_Cuttlefish", + "title": "_Synchronizer", "type": "object" }, - "_Deltoid": { - "description": "Model deltoid", + "_Tail": { + "description": "Model tail", "properties": { "name": { - "const": "deltoid", - "default": "deltoid", - "enum": [ - "deltoid" - ], + "const": "tail", + "default": "tail", "title": "Name", "type": "string" }, @@ -30592,36 +101304,27 @@ "title": "Registry" }, "registry_identifier": { - "const": "EMAPA_18177", - "default": "EMAPA_18177", - "enum": [ - "EMAPA_18177" - ], + "const": "EMAPA_16748", + "default": "EMAPA_16748", "title": "Registry Identifier", "type": "string" } }, - "title": "_Deltoid", + "title": "_Tail", "type": "object" }, - "_Dodotronic": { - "description": "Model Dodotronic", + "_Tamron": { + "description": "Model Tamron", "properties": { "name": { - "const": "Dodotronic", - "default": "Dodotronic", - "enum": [ - "Dodotronic" - ], + "const": "Tamron", + "default": "Tamron", "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -30636,344 +101339,271 @@ "type": "null" } }, - "title": "_Dodotronic", + "title": "_Tamron", "type": "object" }, - "_Doric": { - "description": "Model Doric", + "_Tb": { + "description": "Model tb", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Doric", - "default": "Doric", - "enum": [ - "Doric" - ], + "const": "trapezoid body", + "default": "trapezoid body", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "tb", + "default": "tb", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "059n53q30", - "default": "059n53q30", - "enum": [ - "059n53q30" - ], - "title": "Registry Identifier", + "id": { + "const": "841", + "default": "841", + "title": "Id", "type": "string" } }, - "title": "_Doric", + "title": "_Tb", "type": "object" }, - "_Ealing": { - "description": "Model Ealing", + "_Tea": { + "description": "Model TEa", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Ealing", - "default": "Ealing", - "enum": [ - "Ealing" - ], + "const": "Temporal association areas", + "default": "Temporal association areas", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "TEa", + "default": "TEa", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "541", + "default": "541", + "title": "Id", + "type": "string" + } + }, + "title": "_Tea", + "type": "object" + }, + "_Tea1": { + "description": "Model TEa1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Temporal association areas, layer 1", + "default": "Temporal association areas, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TEa1", + "default": "TEa1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "97", + "default": "97", + "title": "Id", + "type": "string" } }, - "title": "_Ealing", + "title": "_Tea1", "type": "object" }, - "_Edmund_Optics": { - "description": "Model Edmund Optics", + "_Tea2_3": { + "description": "Model TEa2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Edmund Optics", - "default": "Edmund Optics", - "enum": [ - "Edmund Optics" - ], + "const": "Temporal association areas, layer 2/3", + "default": "Temporal association areas, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "TEa2/3", + "default": "TEa2/3", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "1127", + "default": "1127", + "title": "Id", + "type": "string" + } + }, + "title": "_Tea2_3", + "type": "object" + }, + "_Tea4": { + "description": "Model TEa4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "01j1gwp17", - "default": "01j1gwp17", - "enum": [ - "01j1gwp17" - ], - "title": "Registry Identifier", + "name": { + "const": "Temporal association areas, layer 4", + "default": "Temporal association areas, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TEa4", + "default": "TEa4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "234", + "default": "234", + "title": "Id", "type": "string" } }, - "title": "_Edmund_Optics", + "title": "_Tea4", "type": "object" }, - "_Emapa": { - "additionalProperties": false, - "description": "Model EMAPA", + "_Tea5": { + "description": "Model TEa5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Edinburgh Mouse Atlas Project", - "default": "Edinburgh Mouse Atlas Project", - "enum": [ - "Edinburgh Mouse Atlas Project" - ], + "const": "Temporal association areas, layer 5", + "default": "Temporal association areas, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "EMAPA", - "default": "EMAPA", - "enum": [ - "EMAPA" - ], - "title": "Abbreviation", + "acronym": { + "const": "TEa5", + "default": "TEa5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "289", + "default": "289", + "title": "Id", "type": "string" } }, - "title": "_Emapa", + "title": "_Tea5", "type": "object" }, - "_Emg": { - "additionalProperties": false, - "description": "Model EMG", + "_Tea6A": { + "description": "Model TEa6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Electromyography", - "default": "Electromyography", - "enum": [ - "Electromyography" - ], + "const": "Temporal association areas, layer 6a", + "default": "Temporal association areas, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "EMG", - "default": "EMG", - "enum": [ - "EMG" - ], - "title": "Abbreviation", + "acronym": { + "const": "TEa6a", + "default": "TEa6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "729", + "default": "729", + "title": "Id", "type": "string" } }, - "title": "_Emg", + "title": "_Tea6A", "type": "object" }, - "_Emory_University": { - "description": "Model Emory University", + "_Tea6B": { + "description": "Model TEa6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Emory University", - "default": "Emory University", - "enum": [ - "Emory University" - ], + "const": "Temporal association areas, layer 6b", + "default": "Temporal association areas, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "Emory", - "default": "Emory", - "enum": [ - "Emory" - ], - "title": "Abbreviation", + "acronym": { + "const": "TEa6b", + "default": "TEa6b", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "03czfpz43", - "default": "03czfpz43", - "enum": [ - "03czfpz43" - ], - "title": "Registry Identifier", + "id": { + "const": "786", + "default": "786", + "title": "Id", "type": "string" } }, - "title": "_Emory_University", + "title": "_Tea6B", "type": "object" }, - "_Euresys": { - "description": "Model Euresys", + "_Technical_Manufacturing_Corporation": { + "description": "Model Technical Manufacturing Corporation", "properties": { "name": { - "const": "Euresys", - "default": "Euresys", - "enum": [ - "Euresys" - ], + "const": "Technical Manufacturing Corporation", + "default": "Technical Manufacturing Corporation", "title": "Name", "type": "string" }, "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], + "const": "TMC", + "default": "TMC", "title": "Abbreviation", - "type": "null" + "type": "string" }, "registry": { "default": null, @@ -30986,50 +101616,28 @@ "type": "null" } }, - "title": "_Euresys", + "title": "_Technical_Manufacturing_Corporation", "type": "object" }, - "_Exaspim": { - "description": "Model exaSPIM", + "_Teledyne_Flir": { + "description": "Model Teledyne FLIR", "properties": { "name": { - "const": "ExaSPIM platform", - "default": "ExaSPIM platform", - "enum": [ - "ExaSPIM platform" - ], + "const": "Teledyne FLIR", + "default": "Teledyne FLIR", "title": "Name", "type": "string" }, "abbreviation": { - "const": "exaSPIM", - "default": "exaSPIM", - "enum": [ - "exaSPIM" - ], + "const": "FLIR", + "default": "FLIR", "title": "Abbreviation", "type": "string" - } - }, - "title": "_Exaspim", - "type": "object" - }, - "_Extensor_Carpi_Radialis_Longus": { - "description": "Model extensor carpi radialis longus", - "properties": { - "name": { - "const": "extensor carpi radialis longus", - "default": "extensor carpi radialis longus", - "enum": [ - "extensor carpi radialis longus" - ], - "title": "Name", - "type": "string" }, "registry": { "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" + "name": "Research Organization Registry", + "abbreviation": "ROR" }, "discriminator": { "mapping": { @@ -31069,34 +101677,34 @@ "title": "Registry" }, "registry_identifier": { - "const": "EMAPA_36189", - "default": "EMAPA_36189", - "enum": [ - "EMAPA_36189" - ], + "const": "01j1gwp17", + "default": "01j1gwp17", "title": "Registry Identifier", "type": "string" } }, - "title": "_Extensor_Carpi_Radialis_Longus", + "title": "_Teledyne_Flir", "type": "object" }, - "_Extensor_Carpi_Ulnaris": { - "description": "Model extensor carpi ulnaris", + "_Templeton_World_Charity_Foundation": { + "description": "Model Templeton World Charity Foundation", "properties": { "name": { - "const": "extensor carpi ulnaris", - "default": "extensor carpi ulnaris", - "enum": [ - "extensor carpi ulnaris" - ], + "const": "Templeton World Charity Foundation", + "default": "Templeton World Charity Foundation", "title": "Name", "type": "string" }, + "abbreviation": { + "const": "TWCF", + "default": "TWCF", + "title": "Abbreviation", + "type": "string" + }, "registry": { "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" + "name": "Research Organization Registry", + "abbreviation": "ROR" }, "discriminator": { "mapping": { @@ -31136,27 +101744,21 @@ "title": "Registry" }, "registry_identifier": { - "const": "EMAPA_36190", - "default": "EMAPA_36190", - "enum": [ - "EMAPA_36190" - ], + "const": "00x0z1472", + "default": "00x0z1472", "title": "Registry Identifier", "type": "string" } }, - "title": "_Extensor_Carpi_Ulnaris", + "title": "_Templeton_World_Charity_Foundation", "type": "object" }, - "_Extensor_Digitorum_Communis": { - "description": "Model extensor digitorum communis", + "_Tendon_Of_Biceps_Brachii": { + "description": "Model tendon of biceps brachii", "properties": { "name": { - "const": "extensor digitorum communis", - "default": "extensor digitorum communis", - "enum": [ - "extensor digitorum communis" - ], + "const": "tendon of biceps brachii", + "default": "tendon of biceps brachii", "title": "Name", "type": "string" }, @@ -31203,152 +101805,123 @@ "title": "Registry" }, "registry_identifier": { - "const": "EMAPA_36191", - "default": "EMAPA_36191", - "enum": [ - "EMAPA_36191" - ], + "const": "EMAPA_25053", + "default": "EMAPA_25053", "title": "Registry Identifier", "type": "string" } }, - "title": "_Extensor_Digitorum_Communis", + "title": "_Tendon_Of_Biceps_Brachii", "type": "object" }, - "_Extensor_Digitorum_Lateralis": { - "description": "Model extensor digitorum lateralis", + "_Th": { + "description": "Model TH", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "extensor digitorum lateralis", - "default": "extensor digitorum lateralis", - "enum": [ - "extensor digitorum lateralis" - ], + "const": "Thalamus", + "default": "Thalamus", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "TH", + "default": "TH", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_36192", - "default": "EMAPA_36192", - "enum": [ - "EMAPA_36192" - ], - "title": "Registry Identifier", + "id": { + "const": "549", + "default": "549", + "title": "Id", "type": "string" } }, - "title": "_Extensor_Digitorum_Lateralis", + "title": "_Th", "type": "object" }, - "_Fib": { - "additionalProperties": false, - "description": "Model fib", + "_The_Imaging_Source": { + "description": "Model The Imaging Source", "properties": { "name": { - "const": "Fiber photometry", - "default": "Fiber photometry", - "enum": [ - "Fiber photometry" - ], + "const": "The Imaging Source", + "default": "The Imaging Source", "title": "Name", "type": "string" }, "abbreviation": { - "const": "fib", - "default": "fib", - "enum": [ - "fib" - ], + "const": null, + "default": null, "title": "Abbreviation", - "type": "string" + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" } }, - "title": "_Fib", + "title": "_The_Imaging_Source", "type": "object" }, - "_Fip": { - "description": "Model FIP", + "_The_Lee_Company": { + "description": "Model The Lee Company", "properties": { "name": { - "const": "Frame-projected independent-fiber photometry platform", - "default": "Frame-projected independent-fiber photometry platform", - "enum": [ - "Frame-projected independent-fiber photometry platform" - ], + "const": "The Lee Company", + "default": "The Lee Company", "title": "Name", "type": "string" }, "abbreviation": { - "const": "FIP", - "default": "FIP", - "enum": [ - "FIP" - ], + "const": null, + "default": null, "title": "Abbreviation", - "type": "string" + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" } }, - "title": "_Fip", + "title": "_The_Lee_Company", "type": "object" }, - "_Flexor_Carpi_Radialis": { - "description": "Model flexor carpi radialis", + "_Thermo_Fisher_Scientific": { + "description": "Model Thermo Fisher Scientific", "properties": { "name": { - "const": "flexor carpi radialis", - "default": "flexor carpi radialis", - "enum": [ - "flexor carpi radialis" - ], + "const": "Thermo Fisher Scientific", + "default": "Thermo Fisher Scientific", "title": "Name", "type": "string" }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, "registry": { "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" + "name": "Research Organization Registry", + "abbreviation": "ROR" }, "discriminator": { "mapping": { @@ -31388,34 +101961,34 @@ "title": "Registry" }, "registry_identifier": { - "const": "EMAPA_36197", - "default": "EMAPA_36197", - "enum": [ - "EMAPA_36197" - ], + "const": "03x1ewr52", + "default": "03x1ewr52", "title": "Registry Identifier", "type": "string" } }, - "title": "_Flexor_Carpi_Radialis", + "title": "_Thermo_Fisher_Scientific", "type": "object" }, - "_Flexor_Carpi_Ulnaris": { - "description": "Model flexor carpi ulnaris", + "_Thorlabs": { + "description": "Model Thorlabs", "properties": { "name": { - "const": "flexor carpi ulnaris", - "default": "flexor carpi ulnaris", - "enum": [ - "flexor carpi ulnaris" - ], + "const": "Thorlabs", + "default": "Thorlabs", "title": "Name", "type": "string" }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, "registry": { "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" + "name": "Research Organization Registry", + "abbreviation": "ROR" }, "discriminator": { "mapping": { @@ -31455,27 +102028,231 @@ "title": "Registry" }, "registry_identifier": { - "const": "EMAPA_36198", - "default": "EMAPA_36198", - "enum": [ - "EMAPA_36198" - ], + "const": "04gsnvb07", + "default": "04gsnvb07", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Thorlabs", + "type": "object" + }, + "_Timestamp_Generator_Gen_1": { + "description": "Model Timestamp Generator Gen 1", + "properties": { + "whoami": { + "const": 1154, + "default": 1154, + "title": "Whoami", + "type": "integer" + }, + "name": { + "const": "Timestamp Generator Gen 1", + "default": "Timestamp Generator Gen 1", + "title": "Name", + "type": "string" + } + }, + "title": "_Timestamp_Generator_Gen_1", + "type": "object" + }, + "_Timestamp_Generator_Gen_3": { + "description": "Model Timestamp Generator Gen 3", + "properties": { + "whoami": { + "const": 1158, + "default": 1158, + "title": "Whoami", + "type": "integer" + }, + "name": { + "const": "Timestamp Generator Gen 3", + "default": "Timestamp Generator Gen 3", + "title": "Name", + "type": "string" + } + }, + "title": "_Timestamp_Generator_Gen_3", + "type": "object" + }, + "_Tm": { + "description": "Model TM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Tuberomammillary nucleus", + "default": "Tuberomammillary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TM", + "default": "TM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "557", + "default": "557", + "title": "Id", + "type": "string" + } + }, + "title": "_Tm", + "type": "object" + }, + "_Tmd": { + "description": "Model TMd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Tuberomammillary nucleus, dorsal part", + "default": "Tuberomammillary nucleus, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TMd", + "default": "TMd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1126", + "default": "1126", + "title": "Id", + "type": "string" + } + }, + "title": "_Tmd", + "type": "object" + }, + "_Tmv": { + "description": "Model TMv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Tuberomammillary nucleus, ventral part", + "default": "Tuberomammillary nucleus, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TMv", + "default": "TMv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1", + "default": "1", + "title": "Id", + "type": "string" + } + }, + "title": "_Tmv", + "type": "object" + }, + "_Tr": { + "description": "Model TR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Postpiriform transition area", + "default": "Postpiriform transition area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TR", + "default": "TR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "566", + "default": "566", + "title": "Id", + "type": "string" + } + }, + "title": "_Tr", + "type": "object" + }, + "_Transducer_Techniques": { + "description": "Model Transducer Techniques", + "properties": { + "name": { + "const": "Transducer Techniques", + "default": "Transducer Techniques", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Transducer_Techniques", + "type": "object" + }, + "_Treadmill": { + "description": "Model Treadmill", + "properties": { + "whoami": { + "const": 1402, + "default": 1402, + "title": "Whoami", + "type": "integer" + }, + "name": { + "const": "Treadmill", + "default": "Treadmill", + "title": "Name", "type": "string" } }, - "title": "_Flexor_Carpi_Ulnaris", + "title": "_Treadmill", "type": "object" }, - "_Flexor_Digitorum_Profundus": { - "description": "Model flexor digitorum profundus", + "_Triceps_Brachii": { + "description": "Model triceps brachii", "properties": { "name": { - "const": "flexor digitorum profundus", - "default": "flexor digitorum profundus", - "enum": [ - "flexor digitorum profundus" - ], + "const": "triceps brachii", + "default": "triceps brachii", "title": "Name", "type": "string" }, @@ -31522,53 +102299,83 @@ "title": "Registry" }, "registry_identifier": { - "const": "EMAPA_19319", - "default": "EMAPA_19319", - "enum": [ - "EMAPA_19319" - ], + "const": "EMAPA_19111", + "default": "EMAPA_19111", "title": "Registry Identifier", "type": "string" } }, - "title": "_Flexor_Digitorum_Profundus", + "title": "_Triceps_Brachii", "type": "object" }, - "_Fmost": { - "additionalProperties": false, - "description": "Model fMOST", + "_Trn": { + "description": "Model TRN", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Fluorescence micro-optical sectioning tomography", - "default": "Fluorescence micro-optical sectioning tomography", - "enum": [ - "Fluorescence micro-optical sectioning tomography" - ], + "const": "Tegmental reticular nucleus", + "default": "Tegmental reticular nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "fMOST", - "default": "fMOST", - "enum": [ - "fMOST" - ], - "title": "Abbreviation", + "acronym": { + "const": "TRN", + "default": "TRN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "574", + "default": "574", + "title": "Id", "type": "string" } }, - "title": "_Fmost", + "title": "_Trn", "type": "object" }, - "_Forelimb": { - "description": "Model forelimb", + "_Trs": { + "description": "Model TRS", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "forelimb", - "default": "forelimb", - "enum": [ - "forelimb" - ], + "const": "Triangular nucleus of septum", + "default": "Triangular nucleus of septum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TRS", + "default": "TRS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "581", + "default": "581", + "title": "Id", + "type": "string" + } + }, + "title": "_Trs", + "type": "object" + }, + "_Trunk": { + "description": "Model trunk", + "properties": { + "name": { + "const": "trunk", + "default": "trunk", "title": "Name", "type": "string" }, @@ -31615,172 +102422,275 @@ "title": "Registry" }, "registry_identifier": { - "const": "EMAPA_17412", - "default": "EMAPA_17412", - "enum": [ - "EMAPA_17412" - ], + "const": "EMAPA_31857", + "default": "EMAPA_31857", "title": "Registry Identifier", "type": "string" } }, - "title": "_Forelimb", + "title": "_Trunk", "type": "object" }, - "_Fujinon": { - "description": "Model Fujinon", + "_Ts": { + "description": "Model ts", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Fujinon", - "default": "Fujinon", - "enum": [ - "Fujinon" - ], + "const": "solitary tract", + "default": "solitary tract", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "ts", + "default": "ts", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "237", + "default": "237", + "title": "Id", + "type": "string" + } + }, + "title": "_Ts", + "type": "object" + }, + "_Tsp": { + "description": "Model tsp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "tectospinal pathway", + "default": "tectospinal pathway", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "tsp", + "default": "tsp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "877", + "default": "877", + "title": "Id", + "type": "string" } }, - "title": "_Fujinon", + "title": "_Tsp", "type": "object" }, - "_Generic_Harp_Device": { - "description": "Model Generic Harp Device", + "_Tspc": { + "description": "Model tspc", "properties": { - "whoami": { - "const": 0, - "default": 0, - "enum": [ - 0 - ], - "title": "Whoami", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, "name": { - "const": "Generic Harp Device", - "default": "Generic Harp Device", - "enum": [ - "Generic Harp Device" - ], + "const": "crossed tectospinal pathway", + "default": "crossed tectospinal pathway", "title": "Name", "type": "string" + }, + "acronym": { + "const": "tspc", + "default": "tspc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1043", + "default": "1043", + "title": "Id", + "type": "string" } }, - "title": "_Generic_Harp_Device", + "title": "_Tspc", "type": "object" }, - "_Hamamatsu": { - "description": "Model Hamamatsu", + "_Tspd": { + "description": "Model tspd", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Hamamatsu", - "default": "Hamamatsu", - "enum": [ - "Hamamatsu" - ], + "const": "direct tectospinal pathway", + "default": "direct tectospinal pathway", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "tspd", + "default": "tspd", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "1051", + "default": "1051", + "title": "Id", + "type": "string" + } + }, + "title": "_Tspd", + "type": "object" + }, + "_Tt": { + "description": "Model TT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "03natb733", - "default": "03natb733", - "enum": [ - "03natb733" - ], - "title": "Registry Identifier", + "name": { + "const": "Taenia tecta", + "default": "Taenia tecta", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TT", + "default": "TT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "589", + "default": "589", + "title": "Id", "type": "string" } }, - "title": "_Hamamatsu", + "title": "_Tt", "type": "object" }, - "_Hamilton": { - "description": "Model Hamilton", + "_Ttd": { + "description": "Model TTd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Taenia tecta, dorsal part", + "default": "Taenia tecta, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TTd", + "default": "TTd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "597", + "default": "597", + "title": "Id", + "type": "string" + } + }, + "title": "_Ttd", + "type": "object" + }, + "_Ttv": { + "description": "Model TTv", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Hamilton", - "default": "Hamilton", - "enum": [ - "Hamilton" - ], + "const": "Taenia tecta, ventral part", + "default": "Taenia tecta, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TTv", + "default": "TTv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "605", + "default": "605", + "title": "Id", + "type": "string" + } + }, + "title": "_Ttv", + "type": "object" + }, + "_Tu": { + "description": "Model TU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Tuberal nucleus", + "default": "Tuberal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TU", + "default": "TU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "614", + "default": "614", + "title": "Id", + "type": "string" + } + }, + "title": "_Tu", + "type": "object" + }, + "_Tymphany": { + "description": "Model Tymphany", + "properties": { + "name": { + "const": "Tymphany", + "default": "Tymphany", "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -31795,380 +102705,424 @@ "type": "null" } }, - "title": "_Hamilton", + "title": "_Tymphany", "type": "object" }, - "_Hcr": { - "description": "Model HCR", + "_Uf": { + "description": "Model uf", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Hybridization chain reaction platform", - "default": "Hybridization chain reaction platform", - "enum": [ - "Hybridization chain reaction platform" - ], + "const": "uncinate fascicle", + "default": "uncinate fascicle", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "HCR", - "default": "HCR", - "enum": [ - "HCR" - ], - "title": "Abbreviation", + "acronym": { + "const": "uf", + "default": "uf", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "850", + "default": "850", + "title": "Id", "type": "string" } }, - "title": "_Hcr", + "title": "_Uf", "type": "object" }, - "_Head": { - "description": "Model head", + "_Uvu": { + "description": "Model UVU", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "head", - "default": "head", - "enum": [ - "head" - ], + "const": "Uvula (IX)", + "default": "Uvula (IX)", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "UVU", + "default": "UVU", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_31858", - "default": "EMAPA_31858", - "enum": [ - "EMAPA_31858" - ], - "title": "Registry Identifier", + "id": { + "const": "957", + "default": "957", + "title": "Id", "type": "string" } }, - "title": "_Head", + "title": "_Uvu", "type": "object" }, - "_Hindlimb": { - "description": "Model hindlimb", + "_V": { + "description": "Model V", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "hindlimb", - "default": "hindlimb", - "enum": [ - "hindlimb" - ], + "const": "Motor nucleus of trigeminal", + "default": "Motor nucleus of trigeminal", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "V", + "default": "V", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_17458", - "default": "EMAPA_17458", - "enum": [ - "EMAPA_17458" - ], - "title": "Registry Identifier", + "id": { + "const": "621", + "default": "621", + "title": "Id", "type": "string" } }, - "title": "_Hindlimb", + "title": "_V", "type": "object" }, - "_Homo_Sapiens": { - "description": "Model Homo sapiens", + "_V3": { + "description": "Model V3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Homo sapiens", - "default": "Homo sapiens", - "enum": [ - "Homo sapiens" - ], + "const": "third ventricle", + "default": "third ventricle", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "National Center for Biotechnology Information", - "abbreviation": "NCBI" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "V3", + "default": "V3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "129", + "default": "129", + "title": "Id", + "type": "string" + } + }, + "title": "_V3", + "type": "object" + }, + "_V4": { + "description": "Model V4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "fourth ventricle", + "default": "fourth ventricle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "V4", + "default": "V4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "145", + "default": "145", + "title": "Id", + "type": "string" + } + }, + "title": "_V4", + "type": "object" + }, + "_V4R": { + "description": "Model V4r", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "lateral recess", + "default": "lateral recess", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "V4r", + "default": "V4r", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "153", + "default": "153", + "title": "Id", + "type": "string" + } + }, + "title": "_V4R", + "type": "object" + }, + "_Val": { + "description": "Model VAL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral anterior-lateral complex of the thalamus", + "default": "Ventral anterior-lateral complex of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VAL", + "default": "VAL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "629", + "default": "629", + "title": "Id", + "type": "string" + } + }, + "title": "_Val", + "type": "object" + }, + "_Vco": { + "description": "Model VCO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "NCBI:txid9606", - "default": "NCBI:txid9606", - "enum": [ - "NCBI:txid9606" - ], - "title": "Registry Identifier", + "name": { + "const": "Ventral cochlear nucleus", + "default": "Ventral cochlear nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VCO", + "default": "VCO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "101", + "default": "101", + "title": "Id", "type": "string" } }, - "title": "_Homo_Sapiens", + "title": "_Vco", "type": "object" }, - "_Hsfp": { - "description": "Model HSFP", + "_Vecb": { + "description": "Model VeCB", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Hyperspectral fiber photometry platform", - "default": "Hyperspectral fiber photometry platform", - "enum": [ - "Hyperspectral fiber photometry platform" - ], + "const": "Vestibulocerebellar nucleus", + "default": "Vestibulocerebellar nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "HSFP", - "default": "HSFP", - "enum": [ - "HSFP" - ], - "title": "Abbreviation", + "acronym": { + "const": "VeCB", + "default": "VeCB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "589508455", + "default": "589508455", + "title": "Id", "type": "string" } }, - "title": "_Hsfp", + "title": "_Vecb", "type": "object" }, - "_Huazhong_University_Of_Science_And_Technology": { - "description": "Model Huazhong University of Science and Technology", + "_Vent": { + "description": "Model VENT", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Huazhong University of Science and Technology", - "default": "Huazhong University of Science and Technology", - "enum": [ - "Huazhong University of Science and Technology" - ], + "const": "Ventral group of the dorsal thalamus", + "default": "Ventral group of the dorsal thalamus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "HUST", - "default": "HUST", - "enum": [ - "HUST" - ], - "title": "Abbreviation", + "acronym": { + "const": "VENT", + "default": "VENT", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "637", + "default": "637", + "title": "Id", + "type": "string" + } + }, + "title": "_Vent", + "type": "object" + }, + "_Verm": { + "description": "Model VERM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "00p991c53", - "default": "00p991c53", - "enum": [ - "00p991c53" - ], - "title": "Registry Identifier", + "name": { + "const": "Vermal regions", + "default": "Vermal regions", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VERM", + "default": "VERM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "645", + "default": "645", + "title": "Id", "type": "string" } }, - "title": "_Huazhong_University_Of_Science_And_Technology", + "title": "_Verm", "type": "object" }, - "_Icephys": { - "additionalProperties": false, - "description": "Model icephys", + "_Vhc": { + "description": "Model vhc", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Intracellular electrophysiology", - "default": "Intracellular electrophysiology", - "enum": [ - "Intracellular electrophysiology" - ], + "const": "ventral hippocampal commissure", + "default": "ventral hippocampal commissure", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "icephys", - "default": "icephys", - "enum": [ - "icephys" - ], - "title": "Abbreviation", + "acronym": { + "const": "vhc", + "default": "vhc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "449", + "default": "449", + "title": "Id", "type": "string" } }, - "title": "_Icephys", + "title": "_Vhc", "type": "object" }, - "_Infinity_Photo_Optical": { - "description": "Model Infinity Photo-Optical", + "_Vi": { + "description": "Model VI", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Infinity Photo-Optical", - "default": "Infinity Photo-Optical", - "enum": [ - "Infinity Photo-Optical" - ], + "const": "Abducens nucleus", + "default": "Abducens nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VI", + "default": "VI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "653", + "default": "653", + "title": "Id", + "type": "string" + } + }, + "title": "_Vi", + "type": "object" + }, + "_Vieworks": { + "description": "Model Vieworks", + "properties": { + "name": { + "const": "Vieworks", + "default": "Vieworks", "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -32183,3708 +103137,2780 @@ "type": "null" } }, - "title": "_Infinity_Photo_Optical", + "title": "_Vieworks", "type": "object" }, - "_Input_Expander": { - "description": "Model Input Expander", + "_Vii": { + "description": "Model VII", "properties": { - "whoami": { - "const": 1106, - "default": 1106, - "enum": [ - 1106 - ], - "title": "Whoami", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, "name": { - "const": "Input Expander", - "default": "Input Expander", - "enum": [ - "Input Expander" - ], + "const": "Facial motor nucleus", + "default": "Facial motor nucleus", "title": "Name", "type": "string" + }, + "acronym": { + "const": "VII", + "default": "VII", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "661", + "default": "661", + "title": "Id", + "type": "string" } }, - "title": "_Input_Expander", + "title": "_Vii", "type": "object" }, - "_Integrated_Dna_Technologies": { - "description": "Model Integrated DNA Technologies", + "_Viiin": { + "description": "Model VIIIn", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Integrated DNA Technologies", - "default": "Integrated DNA Technologies", - "enum": [ - "Integrated DNA Technologies" - ], + "const": "vestibulocochlear nerve", + "default": "vestibulocochlear nerve", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "IDT", - "default": "IDT", - "enum": [ - "IDT" - ], - "title": "Abbreviation", + "acronym": { + "const": "VIIIn", + "default": "VIIIn", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "933", + "default": "933", + "title": "Id", + "type": "string" + } + }, + "title": "_Viiin", + "type": "object" + }, + "_Viin": { + "description": "Model VIIn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "009jvpf03", - "default": "009jvpf03", - "enum": [ - "009jvpf03" - ], - "title": "Registry Identifier", + "name": { + "const": "facial nerve", + "default": "facial nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VIIn", + "default": "VIIn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "798", + "default": "798", + "title": "Id", "type": "string" } }, - "title": "_Integrated_Dna_Technologies", + "title": "_Viin", "type": "object" }, - "_Interuniversity_Microelectronics_Center": { - "description": "Model Interuniversity Microelectronics Center", + "_Vis": { + "description": "Model VIS", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Interuniversity Microelectronics Center", - "default": "Interuniversity Microelectronics Center", - "enum": [ - "Interuniversity Microelectronics Center" - ], + "const": "Visual areas", + "default": "Visual areas", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "IMEC", - "default": "IMEC", - "enum": [ - "IMEC" - ], - "title": "Abbreviation", + "acronym": { + "const": "VIS", + "default": "VIS", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "669", + "default": "669", + "title": "Id", + "type": "string" + } + }, + "title": "_Vis", + "type": "object" + }, + "_Visa": { + "description": "Model VISa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "02kcbn207", - "default": "02kcbn207", - "enum": [ - "02kcbn207" - ], - "title": "Registry Identifier", + "name": { + "const": "Anterior area", + "default": "Anterior area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISa", + "default": "VISa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782546", + "default": "312782546", + "title": "Id", "type": "string" } }, - "title": "_Interuniversity_Microelectronics_Center", + "title": "_Visa", "type": "object" }, - "_Invitrogen": { - "description": "Model Invitrogen", + "_Visa1": { + "description": "Model VISa1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Invitrogen", - "default": "Invitrogen", - "enum": [ - "Invitrogen" - ], + "const": "Anterior area, layer 1", + "default": "Anterior area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISa1", + "default": "VISa1", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "312782550", + "default": "312782550", + "title": "Id", + "type": "string" + } + }, + "title": "_Visa1", + "type": "object" + }, + "_Visa2_3": { + "description": "Model VISa2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "03x1ewr52", - "default": "03x1ewr52", - "enum": [ - "03x1ewr52" - ], - "title": "Registry Identifier", + "name": { + "const": "Anterior area, layer 2/3", + "default": "Anterior area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISa2/3", + "default": "VISa2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782554", + "default": "312782554", + "title": "Id", "type": "string" } }, - "title": "_Invitrogen", + "title": "_Visa2_3", "type": "object" }, - "_Ir_Robot_Co": { - "description": "Model IR Robot Co", + "_Visa4": { + "description": "Model VISa4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "IR Robot Co", - "default": "IR Robot Co", - "enum": [ - "IR Robot Co" - ], + "const": "Anterior area, layer 4", + "default": "Anterior area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISa4", + "default": "VISa4", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "312782558", + "default": "312782558", + "title": "Id", + "type": "string" + } + }, + "title": "_Visa4", + "type": "object" + }, + "_Visa5": { + "description": "Model VISa5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Anterior area, layer 5", + "default": "Anterior area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISa5", + "default": "VISa5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782562", + "default": "312782562", + "title": "Id", + "type": "string" } }, - "title": "_Ir_Robot_Co", + "title": "_Visa5", "type": "object" }, - "_Isl_Products_International": { - "description": "Model ISL Products International", + "_Visa6A": { + "description": "Model VISa6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "ISL Products International", - "default": "ISL Products International", - "enum": [ - "ISL Products International" - ], + "const": "Anterior area, layer 6a", + "default": "Anterior area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "ISL", - "default": "ISL", - "enum": [ - "ISL" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISa6a", + "default": "VISa6a", + "title": "Acronym", "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "312782566", + "default": "312782566", + "title": "Id", + "type": "string" + } + }, + "title": "_Visa6A", + "type": "object" + }, + "_Visa6B": { + "description": "Model VISa6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Anterior area, layer 6b", + "default": "Anterior area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISa6b", + "default": "VISa6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782570", + "default": "312782570", + "title": "Id", + "type": "string" } }, - "title": "_Isl_Products_International", + "title": "_Visa6B", "type": "object" }, - "_Jackson_Laboratory": { - "description": "Model Jackson Laboratory", + "_Visal": { + "description": "Model VISal", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterolateral visual area", + "default": "Anterolateral visual area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISal", + "default": "VISal", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "402", + "default": "402", + "title": "Id", + "type": "string" + } + }, + "title": "_Visal", + "type": "object" + }, + "_Visal1": { + "description": "Model VISal1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Jackson Laboratory", - "default": "Jackson Laboratory", - "enum": [ - "Jackson Laboratory" - ], + "const": "Anterolateral visual area, layer 1", + "default": "Anterolateral visual area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "JAX", - "default": "JAX", - "enum": [ - "JAX" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISal1", + "default": "VISal1", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "021sy4w91", - "default": "021sy4w91", - "enum": [ - "021sy4w91" - ], - "title": "Registry Identifier", + "id": { + "const": "1074", + "default": "1074", + "title": "Id", "type": "string" } }, - "title": "_Jackson_Laboratory", + "title": "_Visal1", "type": "object" }, - "_Janelia_Research_Campus": { - "description": "Model Janelia Research Campus", + "_Visal2_3": { + "description": "Model VISal2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Janelia Research Campus", - "default": "Janelia Research Campus", - "enum": [ - "Janelia Research Campus" - ], + "const": "Anterolateral visual area, layer 2/3", + "default": "Anterolateral visual area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "Janelia", - "default": "Janelia", - "enum": [ - "Janelia" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISal2/3", + "default": "VISal2/3", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "013sk6x84", - "default": "013sk6x84", - "enum": [ - "013sk6x84" - ], - "title": "Registry Identifier", + "id": { + "const": "905", + "default": "905", + "title": "Id", "type": "string" } }, - "title": "_Janelia_Research_Campus", + "title": "_Visal2_3", "type": "object" }, - "_Julabo": { - "description": "Model Julabo", + "_Visal4": { + "description": "Model VISal4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Julabo", - "default": "Julabo", - "enum": [ - "Julabo" - ], + "const": "Anterolateral visual area, layer 4", + "default": "Anterolateral visual area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISal4", + "default": "VISal4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "1114", + "default": "1114", + "title": "Id", + "type": "string" } }, - "title": "_Julabo", + "title": "_Visal4", "type": "object" }, - "_Lateral_Head_Of_Triceps_Brachii": { - "description": "Model lateral head of triceps brachii", + "_Visal5": { + "description": "Model VISal5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "lateral head of triceps brachii", - "default": "lateral head of triceps brachii", - "enum": [ - "lateral head of triceps brachii" - ], + "const": "Anterolateral visual area, layer 5", + "default": "Anterolateral visual area, layer 5", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISal5", + "default": "VISal5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_36184", - "default": "EMAPA_36184", - "enum": [ - "EMAPA_36184" - ], - "title": "Registry Identifier", + "id": { + "const": "233", + "default": "233", + "title": "Id", "type": "string" } }, - "title": "_Lateral_Head_Of_Triceps_Brachii", + "title": "_Visal5", "type": "object" }, - "_Leica": { - "description": "Model Leica", + "_Visal6A": { + "description": "Model VISal6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Leica", - "default": "Leica", - "enum": [ - "Leica" - ], + "const": "Anterolateral visual area, layer 6a", + "default": "Anterolateral visual area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISal6a", + "default": "VISal6a", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "601", + "default": "601", + "title": "Id", + "type": "string" } }, - "title": "_Leica", + "title": "_Visal6A", "type": "object" }, - "_Lg": { - "description": "Model LG", + "_Visal6B": { + "description": "Model VISal6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "LG", - "default": "LG", - "enum": [ - "LG" - ], + "const": "Anterolateral visual area, layer 6b", + "default": "Anterolateral visual area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISal6b", + "default": "VISal6b", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "02b948n83", - "default": "02b948n83", - "enum": [ - "02b948n83" - ], - "title": "Registry Identifier", + "id": { + "const": "649", + "default": "649", + "title": "Id", "type": "string" } }, - "title": "_Lg", + "title": "_Visal6B", "type": "object" }, - "_Lickety_Split": { - "description": "Model Lickety Split", + "_Visam": { + "description": "Model VISam", "properties": { - "whoami": { - "const": 1400, - "default": 1400, - "enum": [ - 1400 - ], - "title": "Whoami", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, "name": { - "const": "Lickety Split", - "default": "Lickety Split", - "enum": [ - "Lickety Split" - ], + "const": "Anteromedial visual area", + "default": "Anteromedial visual area", "title": "Name", "type": "string" + }, + "acronym": { + "const": "VISam", + "default": "VISam", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "394", + "default": "394", + "title": "Id", + "type": "string" } }, - "title": "_Lickety_Split", + "title": "_Visam", "type": "object" }, - "_Lifecanvas": { - "description": "Model LifeCanvas", + "_Visam1": { + "description": "Model VISam1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "LifeCanvas", - "default": "LifeCanvas", - "enum": [ - "LifeCanvas" - ], + "const": "Anteromedial visual area, layer 1", + "default": "Anteromedial visual area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISam1", + "default": "VISam1", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "281", + "default": "281", + "title": "Id", + "type": "string" } }, - "title": "_Lifecanvas", + "title": "_Visam1", "type": "object" }, - "_Load_Cells": { - "description": "Model Load Cells", + "_Visam2_3": { + "description": "Model VISam2/3", "properties": { - "whoami": { - "const": 1232, - "default": 1232, - "enum": [ - 1232 - ], - "title": "Whoami", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, "name": { - "const": "Load Cells", - "default": "Load Cells", - "enum": [ - "Load Cells" - ], + "const": "Anteromedial visual area, layer 2/3", + "default": "Anteromedial visual area, layer 2/3", "title": "Name", "type": "string" + }, + "acronym": { + "const": "VISam2/3", + "default": "VISam2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1066", + "default": "1066", + "title": "Id", + "type": "string" } }, - "title": "_Load_Cells", + "title": "_Visam2_3", "type": "object" }, - "_Long_Head_Of_Biceps_Brachii": { - "description": "Model long head of biceps brachii", + "_Visam4": { + "description": "Model VISam4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "long head of biceps brachii", - "default": "long head of biceps brachii", - "enum": [ - "long head of biceps brachii" - ], + "const": "Anteromedial visual area, layer 4", + "default": "Anteromedial visual area, layer 4", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISam4", + "default": "VISam4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_25054", - "default": "EMAPA_25054", - "enum": [ - "EMAPA_25054" - ], - "title": "Registry Identifier", + "id": { + "const": "401", + "default": "401", + "title": "Id", "type": "string" } }, - "title": "_Long_Head_Of_Biceps_Brachii", + "title": "_Visam4", "type": "object" }, - "_Long_Head_Of_Triceps_Brachii": { - "description": "Model long head of triceps brachii", + "_Visam5": { + "description": "Model VISam5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "long head of triceps brachii", - "default": "long head of triceps brachii", - "enum": [ - "long head of triceps brachii" - ], + "const": "Anteromedial visual area, layer 5", + "default": "Anteromedial visual area, layer 5", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISam5", + "default": "VISam5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_36185", - "default": "EMAPA_36185", - "enum": [ - "EMAPA_36185" - ], - "title": "Registry Identifier", + "id": { + "const": "433", + "default": "433", + "title": "Id", "type": "string" } }, - "title": "_Long_Head_Of_Triceps_Brachii", + "title": "_Visam5", "type": "object" }, - "_Lumen_Dynamics": { - "description": "Model Lumen Dynamics", + "_Visam6A": { + "description": "Model VISam6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Lumen Dynamics", - "default": "Lumen Dynamics", - "enum": [ - "Lumen Dynamics" - ], + "const": "Anteromedial visual area, layer 6a", + "default": "Anteromedial visual area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISam6a", + "default": "VISam6a", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "1046", + "default": "1046", + "title": "Id", + "type": "string" } }, - "title": "_Lumen_Dynamics", + "title": "_Visam6A", "type": "object" }, - "_Macaca_Mulatta": { - "description": "Model Macaca mulatta", + "_Visam6B": { + "description": "Model VISam6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Macaca mulatta", - "default": "Macaca mulatta", - "enum": [ - "Macaca mulatta" - ], + "const": "Anteromedial visual area, layer 6b", + "default": "Anteromedial visual area, layer 6b", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "National Center for Biotechnology Information", - "abbreviation": "NCBI" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISam6b", + "default": "VISam6b", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "NCBI:txid9544", - "default": "NCBI:txid9544", - "enum": [ - "NCBI:txid9544" - ], - "title": "Registry Identifier", + "id": { + "const": "441", + "default": "441", + "title": "Id", "type": "string" } }, - "title": "_Macaca_Mulatta", + "title": "_Visam6B", "type": "object" }, - "_Mbf_Bioscience": { - "description": "Model MBF Bioscience", + "_Visc": { + "description": "Model VISC", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "MBF Bioscience", - "default": "MBF Bioscience", - "enum": [ - "MBF Bioscience" - ], + "const": "Visceral area", + "default": "Visceral area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "MBF", - "default": "MBF", - "enum": [ - "MBF" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISC", + "default": "VISC", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "02zynam48", - "default": "02zynam48", - "enum": [ - "02zynam48" - ], - "title": "Registry Identifier", + "id": { + "const": "677", + "default": "677", + "title": "Id", "type": "string" } }, - "title": "_Mbf_Bioscience", + "title": "_Visc", "type": "object" }, - "_Meadowlark_Optics": { - "description": "Model Meadowlark Optics", + "_Visc1": { + "description": "Model VISC1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Meadowlark Optics", - "default": "Meadowlark Optics", - "enum": [ - "Meadowlark Optics" - ], + "const": "Visceral area, layer 1", + "default": "Visceral area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISC1", + "default": "VISC1", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "00n8qbq54", - "default": "00n8qbq54", - "enum": [ - "00n8qbq54" - ], - "title": "Registry Identifier", + "id": { + "const": "897", + "default": "897", + "title": "Id", "type": "string" } }, - "title": "_Meadowlark_Optics", + "title": "_Visc1", "type": "object" }, - "_Medial_Head_Of_Triceps_Brachii": { - "description": "Model medial head of triceps brachii", + "_Visc2_3": { + "description": "Model VISC2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "medial head of triceps brachii", - "default": "medial head of triceps brachii", - "enum": [ - "medial head of triceps brachii" - ], + "const": "Visceral area, layer 2/3", + "default": "Visceral area, layer 2/3", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISC2/3", + "default": "VISC2/3", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_36186", - "default": "EMAPA_36186", - "enum": [ - "EMAPA_36186" - ], - "title": "Registry Identifier", + "id": { + "const": "1106", + "default": "1106", + "title": "Id", "type": "string" } }, - "title": "_Medial_Head_Of_Triceps_Brachii", + "title": "_Visc2_3", "type": "object" }, - "_Mesospim": { - "description": "Model mesoSPIM", + "_Visc4": { + "description": "Model VISC4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "MesoSPIM platform", - "default": "MesoSPIM platform", - "enum": [ - "MesoSPIM platform" - ], + "const": "Visceral area, layer 4", + "default": "Visceral area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "mesoSPIM", - "default": "mesoSPIM", - "enum": [ - "mesoSPIM" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISC4", + "default": "VISC4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1010", + "default": "1010", + "title": "Id", "type": "string" } }, - "title": "_Mesospim", + "title": "_Visc4", "type": "object" }, - "_Mgi": { - "additionalProperties": false, - "description": "Model MGI", + "_Visc5": { + "description": "Model VISC5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Mouse Genome Informatics", - "default": "Mouse Genome Informatics", - "enum": [ - "Mouse Genome Informatics" - ], + "const": "Visceral area, layer 5", + "default": "Visceral area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "MGI", - "default": "MGI", - "enum": [ - "MGI" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISC5", + "default": "VISC5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1058", + "default": "1058", + "title": "Id", "type": "string" } }, - "title": "_Mgi", + "title": "_Visc5", "type": "object" }, - "_Michael_J_Fox_Foundation_For_Parkinson_S_Research": { - "description": "Model Michael J. Fox Foundation for Parkinson's Research", + "_Visc6A": { + "description": "Model VISC6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Michael J. Fox Foundation for Parkinson's Research", - "default": "Michael J. Fox Foundation for Parkinson's Research", - "enum": [ - "Michael J. Fox Foundation for Parkinson's Research" - ], + "const": "Visceral area, layer 6a", + "default": "Visceral area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "MJFF", - "default": "MJFF", - "enum": [ - "MJFF" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISC6a", + "default": "VISC6a", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "03arq3225", - "default": "03arq3225", - "enum": [ - "03arq3225" - ], - "title": "Registry Identifier", + "id": { + "const": "857", + "default": "857", + "title": "Id", "type": "string" } }, - "title": "_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "title": "_Visc6A", "type": "object" }, - "_Midwest_Optical_Systems_Inc_": { - "description": "Model Midwest Optical Systems, Inc.", + "_Visc6B": { + "description": "Model VISC6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Midwest Optical Systems, Inc.", - "default": "Midwest Optical Systems, Inc.", - "enum": [ - "Midwest Optical Systems, Inc." - ], + "const": "Visceral area, layer 6b", + "default": "Visceral area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "MidOpt", - "default": "MidOpt", - "enum": [ - "MidOpt" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISC6b", + "default": "VISC6b", + "title": "Acronym", "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" - }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "849", + "default": "849", + "title": "Id", + "type": "string" } }, - "title": "_Midwest_Optical_Systems_Inc_", + "title": "_Visc6B", "type": "object" }, - "_Mitutuyo": { - "description": "Model Mitutuyo", + "_Visl": { + "description": "Model VISl", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Mitutuyo", - "default": "Mitutuyo", - "enum": [ - "Mitutuyo" - ], + "const": "Lateral visual area", + "default": "Lateral visual area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISl", + "default": "VISl", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "409", + "default": "409", + "title": "Id", + "type": "string" } }, - "title": "_Mitutuyo", + "title": "_Visl", "type": "object" }, - "_Mks_Newport": { - "description": "Model MKS Newport", + "_Visl1": { + "description": "Model VISl1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "MKS Newport", - "default": "MKS Newport", - "enum": [ - "MKS Newport" - ], + "const": "Lateral visual area, layer 1", + "default": "Lateral visual area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISl1", + "default": "VISl1", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "00k17f049", - "default": "00k17f049", - "enum": [ - "00k17f049" - ], - "title": "Registry Identifier", + "id": { + "const": "421", + "default": "421", + "title": "Id", "type": "string" } }, - "title": "_Mks_Newport", + "title": "_Visl1", "type": "object" }, - "_Motor_Observatory": { - "description": "Model motor-observatory", + "_Visl2_3": { + "description": "Model VISl2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Motor observatory platform", - "default": "Motor observatory platform", - "enum": [ - "Motor observatory platform" - ], + "const": "Lateral visual area, layer 2/3", + "default": "Lateral visual area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "motor-observatory", - "default": "motor-observatory", - "enum": [ - "motor-observatory" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISl2/3", + "default": "VISl2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "973", + "default": "973", + "title": "Id", "type": "string" } }, - "title": "_Motor_Observatory", + "title": "_Visl2_3", "type": "object" }, - "_Mpi": { - "description": "Model MPI", + "_Visl4": { + "description": "Model VISl4", "properties": { - "name": { - "const": "MPI", - "default": "MPI", - "enum": [ - "MPI" - ], - "title": "Name", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "abbreviation": { - "const": "MPI", - "default": "MPI", - "enum": [ - "MPI" - ], - "title": "Abbreviation", + "name": { + "const": "Lateral visual area, layer 4", + "default": "Lateral visual area, layer 4", + "title": "Name", "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISl4", + "default": "VISl4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "573", + "default": "573", + "title": "Id", + "type": "string" } }, - "title": "_Mpi", + "title": "_Visl4", "type": "object" }, - "_Multiplane_Ophys": { - "description": "Model multiplane-ophys", + "_Visl5": { + "description": "Model VISl5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Multiplane optical physiology platform", - "default": "Multiplane optical physiology platform", - "enum": [ - "Multiplane optical physiology platform" - ], + "const": "Lateral visual area, layer 5", + "default": "Lateral visual area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "multiplane-ophys", - "default": "multiplane-ophys", - "enum": [ - "multiplane-ophys" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISl5", + "default": "VISl5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "613", + "default": "613", + "title": "Id", "type": "string" } }, - "title": "_Multiplane_Ophys", + "title": "_Visl5", "type": "object" }, - "_Mus_Musculus": { - "description": "Model Mus musculus", + "_Visl6A": { + "description": "Model VISl6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Mus musculus", - "default": "Mus musculus", - "enum": [ - "Mus musculus" - ], + "const": "Lateral visual area, layer 6a", + "default": "Lateral visual area, layer 6a", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "National Center for Biotechnology Information", - "abbreviation": "NCBI" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISl6a", + "default": "VISl6a", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "NCBI:txid10090", - "default": "NCBI:txid10090", - "enum": [ - "NCBI:txid10090" - ], - "title": "Registry Identifier", + "id": { + "const": "74", + "default": "74", + "title": "Id", "type": "string" } }, - "title": "_Mus_Musculus", + "title": "_Visl6A", "type": "object" }, - "_National_Center_For_Complementary_And_Integrative_Health": { - "description": "Model National Center for Complementary and Integrative Health", + "_Visl6B": { + "description": "Model VISl6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "National Center for Complementary and Integrative Health", - "default": "National Center for Complementary and Integrative Health", - "enum": [ - "National Center for Complementary and Integrative Health" - ], + "const": "Lateral visual area, layer 6b", + "default": "Lateral visual area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "NCCIH", - "default": "NCCIH", - "enum": [ - "NCCIH" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISl6b", + "default": "VISl6b", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "00190t495", - "default": "00190t495", - "enum": [ - "00190t495" - ], - "title": "Registry Identifier", + "id": { + "const": "121", + "default": "121", + "title": "Id", "type": "string" } }, - "title": "_National_Center_For_Complementary_And_Integrative_Health", + "title": "_Visl6B", "type": "object" }, - "_National_Institute_Of_Mental_Health": { - "description": "Model National Institute of Mental Health", + "_Visli": { + "description": "Model VISli", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "National Institute of Mental Health", - "default": "National Institute of Mental Health", - "enum": [ - "National Institute of Mental Health" - ], + "const": "Laterointermediate area", + "default": "Laterointermediate area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "NIMH", - "default": "NIMH", - "enum": [ - "NIMH" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISli", + "default": "VISli", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "04xeg9z08", - "default": "04xeg9z08", - "enum": [ - "04xeg9z08" - ], - "title": "Registry Identifier", + "id": { + "const": "312782574", + "default": "312782574", + "title": "Id", "type": "string" } }, - "title": "_National_Institute_Of_Mental_Health", + "title": "_Visli", "type": "object" }, - "_National_Institute_Of_Neurological_Disorders_And_Stroke": { - "description": "Model National Institute of Neurological Disorders and Stroke", + "_Visli1": { + "description": "Model VISli1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "National Institute of Neurological Disorders and Stroke", - "default": "National Institute of Neurological Disorders and Stroke", - "enum": [ - "National Institute of Neurological Disorders and Stroke" - ], + "const": "Laterointermediate area, layer 1", + "default": "Laterointermediate area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "NINDS", - "default": "NINDS", - "enum": [ - "NINDS" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISli1", + "default": "VISli1", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "01s5ya894", - "default": "01s5ya894", - "enum": [ - "01s5ya894" - ], - "title": "Registry Identifier", + "id": { + "const": "312782578", + "default": "312782578", + "title": "Id", "type": "string" } }, - "title": "_National_Institute_Of_Neurological_Disorders_And_Stroke", + "title": "_Visli1", "type": "object" }, - "_National_Instruments": { - "description": "Model National Instruments", + "_Visli2_3": { + "description": "Model VISli2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "National Instruments", - "default": "National Instruments", - "enum": [ - "National Instruments" - ], + "const": "Laterointermediate area, layer 2/3", + "default": "Laterointermediate area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISli2/3", + "default": "VISli2/3", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "026exqw73", - "default": "026exqw73", - "enum": [ - "026exqw73" - ], - "title": "Registry Identifier", + "id": { + "const": "312782582", + "default": "312782582", + "title": "Id", "type": "string" } }, - "title": "_National_Instruments", + "title": "_Visli2_3", "type": "object" }, - "_Navitar": { - "description": "Model Navitar", + "_Visli4": { + "description": "Model VISli4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Navitar", - "default": "Navitar", - "enum": [ - "Navitar" - ], + "const": "Laterointermediate area, layer 4", + "default": "Laterointermediate area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISli4", + "default": "VISli4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782586", + "default": "312782586", + "title": "Id", + "type": "string" } }, - "title": "_Navitar", + "title": "_Visli4", "type": "object" }, - "_Ncbi": { - "additionalProperties": false, - "description": "Model NCBI", + "_Visli5": { + "description": "Model VISli5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "National Center for Biotechnology Information", - "default": "National Center for Biotechnology Information", - "enum": [ - "National Center for Biotechnology Information" - ], + "const": "Laterointermediate area, layer 5", + "default": "Laterointermediate area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "NCBI", - "default": "NCBI", - "enum": [ - "NCBI" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISli5", + "default": "VISli5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782590", + "default": "312782590", + "title": "Id", "type": "string" } }, - "title": "_Ncbi", + "title": "_Visli5", "type": "object" }, - "_Neck": { - "description": "Model neck", + "_Visli6A": { + "description": "Model VISli6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "neck", - "default": "neck", - "enum": [ - "neck" - ], + "const": "Laterointermediate area, layer 6a", + "default": "Laterointermediate area, layer 6a", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISli6a", + "default": "VISli6a", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_35587", - "default": "EMAPA_35587", - "enum": [ - "EMAPA_35587" - ], - "title": "Registry Identifier", + "id": { + "const": "312782594", + "default": "312782594", + "title": "Id", "type": "string" } }, - "title": "_Neck", + "title": "_Visli6A", "type": "object" }, - "_Neurophotometrics": { - "description": "Model Neurophotometrics", + "_Visli6B": { + "description": "Model VISli6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Neurophotometrics", - "default": "Neurophotometrics", - "enum": [ - "Neurophotometrics" - ], + "const": "Laterointermediate area, layer 6b", + "default": "Laterointermediate area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISli6b", + "default": "VISli6b", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782598", + "default": "312782598", + "title": "Id", + "type": "string" } }, - "title": "_Neurophotometrics", + "title": "_Visli6B", "type": "object" }, - "_New_Scale_Technologies": { - "description": "Model New Scale Technologies", + "_Visp": { + "description": "Model VISp", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "New Scale Technologies", - "default": "New Scale Technologies", - "enum": [ - "New Scale Technologies" - ], + "const": "Primary visual area", + "default": "Primary visual area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISp", + "default": "VISp", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "385", + "default": "385", + "title": "Id", + "type": "string" } }, - "title": "_New_Scale_Technologies", + "title": "_Visp", "type": "object" }, - "_New_York_University": { - "description": "Model New York University", + "_Visp1": { + "description": "Model VISp1", "properties": { - "name": { - "const": "New York University", - "default": "New York University", - "enum": [ - "New York University" - ], + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary visual area, layer 1", + "default": "Primary visual area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "NYU", - "default": "NYU", - "enum": [ - "NYU" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISp1", + "default": "VISp1", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "0190ak572", - "default": "0190ak572", - "enum": [ - "0190ak572" - ], - "title": "Registry Identifier", + "id": { + "const": "593", + "default": "593", + "title": "Id", "type": "string" } }, - "title": "_New_York_University", + "title": "_Visp1", "type": "object" }, - "_Nikon": { - "description": "Model Nikon", + "_Visp2_3": { + "description": "Model VISp2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Nikon", - "default": "Nikon", - "enum": [ - "Nikon" - ], + "const": "Primary visual area, layer 2/3", + "default": "Primary visual area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISp2/3", + "default": "VISp2/3", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "0280y9h11", - "default": "0280y9h11", - "enum": [ - "0280y9h11" - ], - "title": "Registry Identifier", + "id": { + "const": "821", + "default": "821", + "title": "Id", "type": "string" } }, - "title": "_Nikon", + "title": "_Visp2_3", "type": "object" }, - "_Nresearch_Inc": { - "description": "Model NResearch Inc", + "_Visp4": { + "description": "Model VISp4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "NResearch Inc", - "default": "NResearch Inc", - "enum": [ - "NResearch Inc" - ], + "const": "Primary visual area, layer 4", + "default": "Primary visual area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISp4", + "default": "VISp4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "721", + "default": "721", + "title": "Id", + "type": "string" } }, - "title": "_Nresearch_Inc", + "title": "_Visp4", "type": "object" }, - "_Olfactometer": { - "description": "Model Olfactometer", + "_Visp5": { + "description": "Model VISp5", "properties": { - "whoami": { - "const": 1140, - "default": 1140, - "enum": [ - 1140 - ], - "title": "Whoami", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, "name": { - "const": "Olfactometer", - "default": "Olfactometer", - "enum": [ - "Olfactometer" - ], + "const": "Primary visual area, layer 5", + "default": "Primary visual area, layer 5", "title": "Name", "type": "string" + }, + "acronym": { + "const": "VISp5", + "default": "VISp5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "778", + "default": "778", + "title": "Id", + "type": "string" } }, - "title": "_Olfactometer", + "title": "_Visp5", "type": "object" }, - "_Olympus": { - "description": "Model Olympus", + "_Visp6A": { + "description": "Model VISp6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Olympus", - "default": "Olympus", - "enum": [ - "Olympus" - ], + "const": "Primary visual area, layer 6a", + "default": "Primary visual area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISp6a", + "default": "VISp6a", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "02vcdte90", - "default": "02vcdte90", - "enum": [ - "02vcdte90" - ], - "title": "Registry Identifier", + "id": { + "const": "33", + "default": "33", + "title": "Id", "type": "string" } }, - "title": "_Olympus", + "title": "_Visp6A", "type": "object" }, - "_Open_Ephys_Production_Site": { - "description": "Model Open Ephys Production Site", + "_Visp6B": { + "description": "Model VISp6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Open Ephys Production Site", - "default": "Open Ephys Production Site", - "enum": [ - "Open Ephys Production Site" - ], + "const": "Primary visual area, layer 6b", + "default": "Primary visual area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "OEPS", - "default": "OEPS", - "enum": [ - "OEPS" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISp6b", + "default": "VISp6b", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "007rkz355", - "default": "007rkz355", - "enum": [ - "007rkz355" - ], - "title": "Registry Identifier", + "id": { + "const": "305", + "default": "305", + "title": "Id", "type": "string" } }, - "title": "_Open_Ephys_Production_Site", + "title": "_Visp6B", "type": "object" }, - "_Optotune": { - "description": "Model Optotune", + "_Vispl": { + "description": "Model VISpl", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Optotune", - "default": "Optotune", - "enum": [ - "Optotune" - ], + "const": "Posterolateral visual area", + "default": "Posterolateral visual area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISpl", + "default": "VISpl", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "425", + "default": "425", + "title": "Id", + "type": "string" } }, - "title": "_Optotune", + "title": "_Vispl", "type": "object" }, - "_Orcid": { - "additionalProperties": false, - "description": "Model ORCID", + "_Vispl1": { + "description": "Model VISpl1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Open Researcher and Contributor ID", - "default": "Open Researcher and Contributor ID", - "enum": [ - "Open Researcher and Contributor ID" - ], + "const": "Posterolateral visual area, layer 1", + "default": "Posterolateral visual area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "ORCID", - "default": "ORCID", - "enum": [ - "ORCID" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISpl1", + "default": "VISpl1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "750", + "default": "750", + "title": "Id", "type": "string" } }, - "title": "_Orcid", + "title": "_Vispl1", "type": "object" }, - "_Other": { - "description": "Model Other", + "_Vispl2_3": { + "description": "Model VISpl2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Other", - "default": "Other", - "enum": [ - "Other" - ], + "const": "Posterolateral visual area, layer 2/3", + "default": "Posterolateral visual area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISpl2/3", + "default": "VISpl2/3", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "269", + "default": "269", + "title": "Id", + "type": "string" } }, - "title": "_Other", + "title": "_Vispl2_3", "type": "object" }, - "_Oxxius": { - "description": "Model Oxxius", + "_Vispl4": { + "description": "Model VISpl4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Oxxius", - "default": "Oxxius", - "enum": [ - "Oxxius" - ], + "const": "Posterolateral visual area, layer 4", + "default": "Posterolateral visual area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISpl4", + "default": "VISpl4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "869", + "default": "869", + "title": "Id", + "type": "string" } }, - "title": "_Oxxius", + "title": "_Vispl4", "type": "object" }, - "_Pars_Scapularis_Of_Deltoid": { - "description": "Model pars scapularis of deltoid", + "_Vispl5": { + "description": "Model VISpl5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "pars scapularis of deltoid", - "default": "pars scapularis of deltoid", - "enum": [ - "pars scapularis of deltoid" - ], + "const": "Posterolateral visual area, layer 5", + "default": "Posterolateral visual area, layer 5", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISpl5", + "default": "VISpl5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_36163", - "default": "EMAPA_36163", - "enum": [ - "EMAPA_36163" - ], - "title": "Registry Identifier", + "id": { + "const": "902", + "default": "902", + "title": "Id", "type": "string" } }, - "title": "_Pars_Scapularis_Of_Deltoid", + "title": "_Vispl5", "type": "object" }, - "_Pectoralis_Major": { - "description": "Model pectoralis major", + "_Vispl6A": { + "description": "Model VISpl6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "pectoralis major", - "default": "pectoralis major", - "enum": [ - "pectoralis major" - ], + "const": "Posterolateral visual area, layer 6a", + "default": "Posterolateral visual area, layer 6a", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "EMAPA_18179", - "default": "EMAPA_18179", - "enum": [ - "EMAPA_18179" - ], - "title": "Registry Identifier", + "acronym": { + "const": "VISpl6a", + "default": "VISpl6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "377", + "default": "377", + "title": "Id", "type": "string" } }, - "title": "_Pectoralis_Major", + "title": "_Vispl6A", "type": "object" }, - "_Pophys": { - "additionalProperties": false, - "description": "Model pophys", + "_Vispl6B": { + "description": "Model VISpl6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Planar optical physiology", - "default": "Planar optical physiology", - "enum": [ - "Planar optical physiology" - ], + "const": "Posterolateral visual area, layer 6b", + "default": "Posterolateral visual area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "pophys", - "default": "pophys", - "enum": [ - "pophys" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISpl6b", + "default": "VISpl6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "393", + "default": "393", + "title": "Id", "type": "string" } }, - "title": "_Pophys", + "title": "_Vispl6B", "type": "object" }, - "_Prizmatix": { - "description": "Model Prizmatix", + "_Vispm": { + "description": "Model VISpm", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Prizmatix", - "default": "Prizmatix", - "enum": [ - "Prizmatix" - ], + "const": "posteromedial visual area", + "default": "posteromedial visual area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISpm", + "default": "VISpm", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "533", + "default": "533", + "title": "Id", + "type": "string" } }, - "title": "_Prizmatix", + "title": "_Vispm", "type": "object" }, - "_Quantifi": { - "description": "Model Quantifi", + "_Vispm1": { + "description": "Model VISpm1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Quantifi", - "default": "Quantifi", - "enum": [ - "Quantifi" - ], + "const": "posteromedial visual area, layer 1", + "default": "posteromedial visual area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISpm1", + "default": "VISpm1", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "805", + "default": "805", + "title": "Id", + "type": "string" } }, - "title": "_Quantifi", + "title": "_Vispm1", "type": "object" }, - "_Raspberry_Pi": { - "description": "Model Raspberry Pi", + "_Vispm2_3": { + "description": "Model VISpm2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Raspberry Pi", - "default": "Raspberry Pi", - "enum": [ - "Raspberry Pi" - ], + "const": "posteromedial visual area, layer 2/3", + "default": "posteromedial visual area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISpm2/3", + "default": "VISpm2/3", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "41", + "default": "41", + "title": "Id", + "type": "string" } }, - "title": "_Raspberry_Pi", + "title": "_Vispm2_3", "type": "object" }, - "_Rattus_Norvegicus": { - "description": "Model Rattus norvegicus", + "_Vispm4": { + "description": "Model VISpm4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Rattus norvegicus", - "default": "Rattus norvegicus", - "enum": [ - "Rattus norvegicus" - ], + "const": "posteromedial visual area, layer 4", + "default": "posteromedial visual area, layer 4", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "National Center for Biotechnology Information", - "abbreviation": "NCBI" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISpm4", + "default": "VISpm4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "NCBI:txid10116", - "default": "NCBI:txid10116", - "enum": [ - "NCBI:txid10116" - ], - "title": "Registry Identifier", + "id": { + "const": "501", + "default": "501", + "title": "Id", "type": "string" } }, - "title": "_Rattus_Norvegicus", + "title": "_Vispm4", "type": "object" }, - "_Ror": { - "additionalProperties": false, - "description": "Model ROR", + "_Vispm5": { + "description": "Model VISpm5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Research Organization Registry", - "default": "Research Organization Registry", - "enum": [ - "Research Organization Registry" - ], + "const": "posteromedial visual area, layer 5", + "default": "posteromedial visual area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "ROR", - "default": "ROR", - "enum": [ - "ROR" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISpm5", + "default": "VISpm5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "565", + "default": "565", + "title": "Id", "type": "string" } }, - "title": "_Ror", + "title": "_Vispm5", "type": "object" }, - "_Rrid": { - "additionalProperties": false, - "description": "Model RRID", + "_Vispm6A": { + "description": "Model VISpm6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Research Resource Identifiers", - "default": "Research Resource Identifiers", - "enum": [ - "Research Resource Identifiers" - ], + "const": "posteromedial visual area, layer 6a", + "default": "posteromedial visual area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "RRID", - "default": "RRID", - "enum": [ - "RRID" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISpm6a", + "default": "VISpm6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "257", + "default": "257", + "title": "Id", "type": "string" } }, - "title": "_Rrid", + "title": "_Vispm6A", "type": "object" }, - "_Schneider_Kreuznach": { - "description": "Model Schneider-Kreuznach", + "_Vispm6B": { + "description": "Model VISpm6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Schneider-Kreuznach", - "default": "Schneider-Kreuznach", - "enum": [ - "Schneider-Kreuznach" - ], + "const": "posteromedial visual area, layer 6b", + "default": "posteromedial visual area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISpm6b", + "default": "VISpm6b", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "469", + "default": "469", + "title": "Id", + "type": "string" } }, - "title": "_Schneider_Kreuznach", + "title": "_Vispm6B", "type": "object" }, - "_Second_Order_Effects": { - "description": "Model Second Order Effects", + "_Vispor": { + "description": "Model VISpor", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Second Order Effects", - "default": "Second Order Effects", - "enum": [ - "Second Order Effects" - ], + "const": "Postrhinal area", + "default": "Postrhinal area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISpor", + "default": "VISpor", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782628", + "default": "312782628", + "title": "Id", + "type": "string" } }, - "title": "_Second_Order_Effects", + "title": "_Vispor", "type": "object" }, - "_Semrock": { - "description": "Model Semrock", + "_Vispor1": { + "description": "Model VISpor1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Semrock", - "default": "Semrock", - "enum": [ - "Semrock" - ], + "const": "Postrhinal area, layer 1", + "default": "Postrhinal area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISpor1", + "default": "VISpor1", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "312782632", + "default": "312782632", + "title": "Id", + "type": "string" + } + }, + "title": "_Vispor1", + "type": "object" + }, + "_Vispor2_3": { + "description": "Model VISpor2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Postrhinal area, layer 2/3", + "default": "Postrhinal area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISpor2/3", + "default": "VISpor2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782636", + "default": "312782636", + "title": "Id", + "type": "string" } }, - "title": "_Semrock", + "title": "_Vispor2_3", "type": "object" }, - "_Short_Head_Of_Biceps_Brachii": { - "description": "Model short head of biceps brachii", + "_Vispor4": { + "description": "Model VISpor4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "short head of biceps brachii", - "default": "short head of biceps brachii", - "enum": [ - "short head of biceps brachii" - ], + "const": "Postrhinal area, layer 4", + "default": "Postrhinal area, layer 4", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISpor4", + "default": "VISpor4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_25055", - "default": "EMAPA_25055", - "enum": [ - "EMAPA_25055" - ], - "title": "Registry Identifier", + "id": { + "const": "312782640", + "default": "312782640", + "title": "Id", "type": "string" } }, - "title": "_Short_Head_Of_Biceps_Brachii", + "title": "_Vispor4", "type": "object" }, - "_Sicgen": { - "description": "Model SICGEN", + "_Vispor5": { + "description": "Model VISpor5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "SICGEN", - "default": "SICGEN", - "enum": [ - "SICGEN" - ], + "const": "Postrhinal area, layer 5", + "default": "Postrhinal area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISpor5", + "default": "VISpor5", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "312782644", + "default": "312782644", + "title": "Id", + "type": "string" + } + }, + "title": "_Vispor5", + "type": "object" + }, + "_Vispor6A": { + "description": "Model VISpor6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Postrhinal area, layer 6a", + "default": "Postrhinal area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISpor6a", + "default": "VISpor6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782648", + "default": "312782648", + "title": "Id", + "type": "string" } }, - "title": "_Sicgen", + "title": "_Vispor6A", "type": "object" }, - "_Sigma_Aldrich": { - "description": "Model Sigma-Aldrich", + "_Vispor6B": { + "description": "Model VISpor6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Sigma-Aldrich", - "default": "Sigma-Aldrich", - "enum": [ - "Sigma-Aldrich" - ], + "const": "Postrhinal area, layer 6b", + "default": "Postrhinal area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISpor6b", + "default": "VISpor6b", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "312782652", + "default": "312782652", + "title": "Id", + "type": "string" + } + }, + "title": "_Vispor6B", + "type": "object" + }, + "_Visrl": { + "description": "Model VISrl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Rostrolateral visual area", + "default": "Rostrolateral visual area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISrl", + "default": "VISrl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "417", + "default": "417", + "title": "Id", + "type": "string" } }, - "title": "_Sigma_Aldrich", + "title": "_Visrl", "type": "object" }, - "_Simons_Foundation": { - "description": "Model Simons Foundation", + "_Visrl1": { + "description": "Model VISrl1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Simons Foundation", - "default": "Simons Foundation", - "enum": [ - "Simons Foundation" - ], + "const": "Rostrolateral area, layer 1", + "default": "Rostrolateral area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISrl1", + "default": "VISrl1", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "312782604", + "default": "312782604", + "title": "Id", + "type": "string" + } + }, + "title": "_Visrl1", + "type": "object" + }, + "_Visrl2_3": { + "description": "Model VISrl2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Rostrolateral area, layer 2/3", + "default": "Rostrolateral area, layer 2/3", + "title": "Name", + "type": "string" }, - "registry_identifier": { - "const": "01cmst727", - "default": "01cmst727", - "enum": [ - "01cmst727" - ], - "title": "Registry Identifier", + "acronym": { + "const": "VISrl2/3", + "default": "VISrl2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782608", + "default": "312782608", + "title": "Id", "type": "string" } }, - "title": "_Simons_Foundation", + "title": "_Visrl2_3", "type": "object" }, - "_Single_Plane_Ophys": { - "description": "Model single-plane-ophys", + "_Visrl4": { + "description": "Model VISrl4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Single-plane optical physiology platform", - "default": "Single-plane optical physiology platform", - "enum": [ - "Single-plane optical physiology platform" - ], + "const": "Rostrolateral area, layer 4", + "default": "Rostrolateral area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "single-plane-ophys", - "default": "single-plane-ophys", - "enum": [ - "single-plane-ophys" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISrl4", + "default": "VISrl4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782612", + "default": "312782612", + "title": "Id", "type": "string" } }, - "title": "_Single_Plane_Ophys", + "title": "_Visrl4", "type": "object" }, - "_Slap": { - "additionalProperties": false, - "description": "Model slap", + "_Visrl5": { + "description": "Model VISrl5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Scanned line projection imaging", - "default": "Scanned line projection imaging", - "enum": [ - "Scanned line projection imaging" - ], + "const": "Rostrolateral area, layer 5", + "default": "Rostrolateral area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "slap", - "default": "slap", - "enum": [ - "slap" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISrl5", + "default": "VISrl5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782616", + "default": "312782616", + "title": "Id", "type": "string" } }, - "title": "_Slap", + "title": "_Visrl5", "type": "object" }, - "_Slap2": { - "description": "Model SLAP2", + "_Visrl6A": { + "description": "Model VISrl6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "SLAP2 platform", - "default": "SLAP2 platform", - "enum": [ - "SLAP2 platform" - ], + "const": "Rostrolateral area, layer 6a", + "default": "Rostrolateral area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "SLAP2", - "default": "SLAP2", - "enum": [ - "SLAP2" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISrl6a", + "default": "VISrl6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782620", + "default": "312782620", + "title": "Id", "type": "string" } }, - "title": "_Slap2", + "title": "_Visrl6A", "type": "object" }, - "_Smartspim": { - "description": "Model SmartSPIM", + "_Visrl6B": { + "description": "Model VISrl6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "SmartSPIM platform", - "default": "SmartSPIM platform", - "enum": [ - "SmartSPIM platform" - ], + "const": "Rostrolateral area, layer 6b", + "default": "Rostrolateral area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "SmartSPIM", - "default": "SmartSPIM", - "enum": [ - "SmartSPIM" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISrl6b", + "default": "VISrl6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782624", + "default": "312782624", + "title": "Id", "type": "string" } }, - "title": "_Smartspim", + "title": "_Visrl6B", "type": "object" }, - "_Sniff_Detector": { - "description": "Model Sniff Detector", + "_Vl": { + "description": "Model VL", "properties": { - "whoami": { - "const": 1401, - "default": 1401, - "enum": [ - 1401 - ], - "title": "Whoami", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, "name": { - "const": "Sniff Detector", - "default": "Sniff Detector", - "enum": [ - "Sniff Detector" - ], + "const": "lateral ventricle", + "default": "lateral ventricle", "title": "Name", "type": "string" + }, + "acronym": { + "const": "VL", + "default": "VL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "81", + "default": "81", + "title": "Id", + "type": "string" } }, - "title": "_Sniff_Detector", + "title": "_Vl", "type": "object" }, - "_Sound_Card": { - "description": "Model Sound Card", + "_Vlpo": { + "description": "Model VLPO", "properties": { - "whoami": { - "const": 1280, - "default": 1280, - "enum": [ - 1280 - ], - "title": "Whoami", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, "name": { - "const": "Sound Card", - "default": "Sound Card", - "enum": [ - "Sound Card" - ], + "const": "Ventrolateral preoptic nucleus", + "default": "Ventrolateral preoptic nucleus", "title": "Name", "type": "string" + }, + "acronym": { + "const": "VLPO", + "default": "VLPO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "689", + "default": "689", + "title": "Id", + "type": "string" } }, - "title": "_Sound_Card", + "title": "_Vlpo", "type": "object" }, - "_Spim": { - "additionalProperties": false, - "description": "Model SPIM", + "_Vm": { + "description": "Model VM", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Selective plane illumination microscopy", - "default": "Selective plane illumination microscopy", - "enum": [ - "Selective plane illumination microscopy" - ], + "const": "Ventral medial nucleus of the thalamus", + "default": "Ventral medial nucleus of the thalamus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "SPIM", - "default": "SPIM", - "enum": [ - "SPIM" - ], - "title": "Abbreviation", + "acronym": { + "const": "VM", + "default": "VM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "685", + "default": "685", + "title": "Id", "type": "string" } }, - "title": "_Spim", + "title": "_Vm", "type": "object" }, - "_Spinnaker": { - "description": "Model Spinnaker", + "_Vmh": { + "description": "Model VMH", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Spinnaker", - "default": "Spinnaker", - "enum": [ - "Spinnaker" - ], + "const": "Ventromedial hypothalamic nucleus", + "default": "Ventromedial hypothalamic nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VMH", + "default": "VMH", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "693", + "default": "693", + "title": "Id", + "type": "string" + } + }, + "title": "_Vmh", + "type": "object" + }, + "_Vmpo": { + "description": "Model VMPO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Ventromedial preoptic nucleus", + "default": "Ventromedial preoptic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VMPO", + "default": "VMPO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "576073699", + "default": "576073699", + "title": "Id", + "type": "string" } }, - "title": "_Spinnaker", + "title": "_Vmpo", "type": "object" }, - "_Stepper_Driver": { - "description": "Model Stepper Driver", + "_Vn": { + "description": "Model Vn", "properties": { - "whoami": { - "const": 1130, - "default": 1130, - "enum": [ - 1130 - ], - "title": "Whoami", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, "name": { - "const": "Stepper Driver", - "default": "Stepper Driver", - "enum": [ - "Stepper Driver" - ], + "const": "trigeminal nerve", + "default": "trigeminal nerve", "title": "Name", "type": "string" + }, + "acronym": { + "const": "Vn", + "default": "Vn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "901", + "default": "901", + "title": "Id", + "type": "string" } }, - "title": "_Stepper_Driver", + "title": "_Vn", "type": "object" }, - "_Synchronizer": { - "description": "Model Synchronizer", + "_Vnc": { + "description": "Model VNC", "properties": { - "whoami": { - "const": 1104, - "default": 1104, - "enum": [ - 1104 - ], - "title": "Whoami", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, "name": { - "const": "Synchronizer", - "default": "Synchronizer", - "enum": [ - "Synchronizer" - ], + "const": "Vestibular nuclei", + "default": "Vestibular nuclei", "title": "Name", "type": "string" + }, + "acronym": { + "const": "VNC", + "default": "VNC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "701", + "default": "701", + "title": "Id", + "type": "string" } }, - "title": "_Synchronizer", + "title": "_Vnc", "type": "object" }, - "_Tail": { - "description": "Model tail", + "_Von": { + "description": "Model von", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "tail", - "default": "tail", - "enum": [ - "tail" - ], + "const": "vomeronasal nerve", + "default": "vomeronasal nerve", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "von", + "default": "von", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_16748", - "default": "EMAPA_16748", - "enum": [ - "EMAPA_16748" - ], - "title": "Registry Identifier", + "id": { + "const": "949", + "default": "949", + "title": "Id", "type": "string" } }, - "title": "_Tail", + "title": "_Von", "type": "object" }, - "_Tamron": { - "description": "Model Tamron", + "_Vortran": { + "description": "Model Vortran", "properties": { "name": { - "const": "Tamron", - "default": "Tamron", - "enum": [ - "Tamron" - ], + "const": "Vortran", + "default": "Vortran", "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -35899,797 +105925,503 @@ "type": "null" } }, - "title": "_Tamron", + "title": "_Vortran", "type": "object" }, - "_Technical_Manufacturing_Corporation": { - "description": "Model Technical Manufacturing Corporation", + "_Vp": { + "description": "Model VP", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Technical Manufacturing Corporation", - "default": "Technical Manufacturing Corporation", - "enum": [ - "Technical Manufacturing Corporation" - ], + "const": "Ventral posterior complex of the thalamus", + "default": "Ventral posterior complex of the thalamus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "TMC", - "default": "TMC", - "enum": [ - "TMC" - ], - "title": "Abbreviation", + "acronym": { + "const": "VP", + "default": "VP", + "title": "Acronym", "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" - }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "709", + "default": "709", + "title": "Id", + "type": "string" } }, - "title": "_Technical_Manufacturing_Corporation", + "title": "_Vp", "type": "object" }, - "_Teledyne_Flir": { - "description": "Model Teledyne FLIR", + "_Vpl": { + "description": "Model VPL", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Teledyne FLIR", - "default": "Teledyne FLIR", - "enum": [ - "Teledyne FLIR" - ], + "const": "Ventral posterolateral nucleus of the thalamus", + "default": "Ventral posterolateral nucleus of the thalamus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "FLIR", - "default": "FLIR", - "enum": [ - "FLIR" - ], - "title": "Abbreviation", + "acronym": { + "const": "VPL", + "default": "VPL", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "01j1gwp17", - "default": "01j1gwp17", - "enum": [ - "01j1gwp17" - ], - "title": "Registry Identifier", + "id": { + "const": "718", + "default": "718", + "title": "Id", "type": "string" } }, - "title": "_Teledyne_Flir", + "title": "_Vpl", "type": "object" }, - "_Templeton_World_Charity_Foundation": { - "description": "Model Templeton World Charity Foundation", + "_Vplpc": { + "description": "Model VPLpc", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Templeton World Charity Foundation", - "default": "Templeton World Charity Foundation", - "enum": [ - "Templeton World Charity Foundation" - ], + "const": "Ventral posterolateral nucleus of the thalamus, parvicellular part", + "default": "Ventral posterolateral nucleus of the thalamus, parvicellular part", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "TWCF", - "default": "TWCF", - "enum": [ - "TWCF" - ], - "title": "Abbreviation", + "acronym": { + "const": "VPLpc", + "default": "VPLpc", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "00x0z1472", - "default": "00x0z1472", - "enum": [ - "00x0z1472" - ], - "title": "Registry Identifier", + "id": { + "const": "725", + "default": "725", + "title": "Id", "type": "string" } }, - "title": "_Templeton_World_Charity_Foundation", + "title": "_Vplpc", "type": "object" }, - "_Tendon_Of_Biceps_Brachii": { - "description": "Model tendon of biceps brachii", + "_Vpm": { + "description": "Model VPM", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "tendon of biceps brachii", - "default": "tendon of biceps brachii", - "enum": [ - "tendon of biceps brachii" - ], + "const": "Ventral posteromedial nucleus of the thalamus", + "default": "Ventral posteromedial nucleus of the thalamus", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VPM", + "default": "VPM", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_25053", - "default": "EMAPA_25053", - "enum": [ - "EMAPA_25053" - ], - "title": "Registry Identifier", + "id": { + "const": "733", + "default": "733", + "title": "Id", "type": "string" } }, - "title": "_Tendon_Of_Biceps_Brachii", + "title": "_Vpm", "type": "object" - }, - "_The_Imaging_Source": { - "description": "Model The Imaging Source", + }, + "_Vpmpc": { + "description": "Model VPMpc", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "The Imaging Source", - "default": "The Imaging Source", - "enum": [ - "The Imaging Source" - ], + "const": "Ventral posteromedial nucleus of the thalamus, parvicellular part", + "default": "Ventral posteromedial nucleus of the thalamus, parvicellular part", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VPMpc", + "default": "VPMpc", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "741", + "default": "741", + "title": "Id", + "type": "string" } }, - "title": "_The_Imaging_Source", + "title": "_Vpmpc", "type": "object" }, - "_The_Lee_Company": { - "description": "Model The Lee Company", + "_Vs": { + "description": "Model VS", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "The Lee Company", - "default": "The Lee Company", - "enum": [ - "The Lee Company" - ], + "const": "ventricular systems", + "default": "ventricular systems", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VS", + "default": "VS", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "73", + "default": "73", + "title": "Id", + "type": "string" } }, - "title": "_The_Lee_Company", + "title": "_Vs", "type": "object" }, - "_Thermo_Fisher_Scientific": { - "description": "Model Thermo Fisher Scientific", + "_Vta": { + "description": "Model VTA", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Thermo Fisher Scientific", - "default": "Thermo Fisher Scientific", - "enum": [ - "Thermo Fisher Scientific" - ], + "const": "Ventral tegmental area", + "default": "Ventral tegmental area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VTA", + "default": "VTA", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "03x1ewr52", - "default": "03x1ewr52", - "enum": [ - "03x1ewr52" - ], - "title": "Registry Identifier", + "id": { + "const": "749", + "default": "749", + "title": "Id", "type": "string" } }, - "title": "_Thermo_Fisher_Scientific", + "title": "_Vta", "type": "object" }, - "_Thorlabs": { - "description": "Model Thorlabs", + "_Vtd": { + "description": "Model vtd", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Thorlabs", - "default": "Thorlabs", - "enum": [ - "Thorlabs" - ], + "const": "ventral tegmental decussation", + "default": "ventral tegmental decussation", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "vtd", + "default": "vtd", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "04gsnvb07", - "default": "04gsnvb07", - "enum": [ - "04gsnvb07" - ], - "title": "Registry Identifier", + "id": { + "const": "397", + "default": "397", + "title": "Id", "type": "string" } }, - "title": "_Thorlabs", + "title": "_Vtd", "type": "object" }, - "_Timestamp_Generator_Gen_1": { - "description": "Model Timestamp Generator Gen 1", + "_Vtn": { + "description": "Model VTN", "properties": { - "whoami": { - "const": 1154, - "default": 1154, - "enum": [ - 1154 - ], - "title": "Whoami", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, "name": { - "const": "Timestamp Generator Gen 1", - "default": "Timestamp Generator Gen 1", - "enum": [ - "Timestamp Generator Gen 1" - ], + "const": "Ventral tegmental nucleus", + "default": "Ventral tegmental nucleus", "title": "Name", "type": "string" + }, + "acronym": { + "const": "VTN", + "default": "VTN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "757", + "default": "757", + "title": "Id", + "type": "string" } }, - "title": "_Timestamp_Generator_Gen_1", + "title": "_Vtn", "type": "object" }, - "_Timestamp_Generator_Gen_3": { - "description": "Model Timestamp Generator Gen 3", + "_Vviiin": { + "description": "Model vVIIIn", "properties": { - "whoami": { - "const": 1158, - "default": 1158, - "enum": [ - 1158 - ], - "title": "Whoami", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, "name": { - "const": "Timestamp Generator Gen 3", - "default": "Timestamp Generator Gen 3", - "enum": [ - "Timestamp Generator Gen 3" - ], + "const": "vestibular nerve", + "default": "vestibular nerve", "title": "Name", "type": "string" + }, + "acronym": { + "const": "vVIIIn", + "default": "vVIIIn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "413", + "default": "413", + "title": "Id", + "type": "string" } }, - "title": "_Timestamp_Generator_Gen_3", + "title": "_Vviiin", "type": "object" }, - "_Treadmill": { - "description": "Model Treadmill", + "_X": { + "description": "Model x", "properties": { - "whoami": { - "const": 1402, - "default": 1402, - "enum": [ - 1402 - ], - "title": "Whoami", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, "name": { - "const": "Treadmill", - "default": "Treadmill", - "enum": [ - "Treadmill" - ], + "const": "Nucleus x", + "default": "Nucleus x", "title": "Name", "type": "string" + }, + "acronym": { + "const": "x", + "default": "x", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "765", + "default": "765", + "title": "Id", + "type": "string" } }, - "title": "_Treadmill", + "title": "_X", "type": "object" }, - "_Triceps_Brachii": { - "description": "Model triceps brachii", + "_Xi": { + "description": "Model Xi", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "triceps brachii", - "default": "triceps brachii", - "enum": [ - "triceps brachii" - ], + "const": "Xiphoid thalamic nucleus", + "default": "Xiphoid thalamic nucleus", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "Xi", + "default": "Xi", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_19111", - "default": "EMAPA_19111", - "enum": [ - "EMAPA_19111" - ], - "title": "Registry Identifier", + "id": { + "const": "560581559", + "default": "560581559", + "title": "Id", "type": "string" } }, - "title": "_Triceps_Brachii", + "title": "_Xi", "type": "object" }, - "_Trunk": { - "description": "Model trunk", + "_Xii": { + "description": "Model XII", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "trunk", - "default": "trunk", - "enum": [ - "trunk" - ], + "const": "Hypoglossal nucleus", + "default": "Hypoglossal nucleus", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "XII", + "default": "XII", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_31857", - "default": "EMAPA_31857", - "enum": [ - "EMAPA_31857" - ], - "title": "Registry Identifier", + "id": { + "const": "773", + "default": "773", + "title": "Id", "type": "string" } }, - "title": "_Trunk", + "title": "_Xii", "type": "object" }, - "_Tymphany": { - "description": "Model Tymphany", + "_Xn": { + "description": "Model Xn", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Tymphany", - "default": "Tymphany", - "enum": [ - "Tymphany" - ], + "const": "vagus nerve", + "default": "vagus nerve", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "Xn", + "default": "Xn", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "917", + "default": "917", + "title": "Id", + "type": "string" } }, - "title": "_Tymphany", + "title": "_Xn", "type": "object" }, - "_Vieworks": { - "description": "Model Vieworks", + "_Y": { + "description": "Model y", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Vieworks", - "default": "Vieworks", - "enum": [ - "Vieworks" - ], + "const": "Nucleus y", + "default": "Nucleus y", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "y", + "default": "y", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "781", + "default": "781", + "title": "Id", + "type": "string" } }, - "title": "_Vieworks", + "title": "_Y", "type": "object" }, - "_Vortran": { - "description": "Model Vortran", + "_Zi": { + "description": "Model ZI", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Vortran", - "default": "Vortran", - "enum": [ - "Vortran" - ], + "const": "Zona incerta", + "default": "Zona incerta", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "ZI", + "default": "ZI", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "797", + "default": "797", + "title": "Id", + "type": "string" } }, - "title": "_Vortran", + "title": "_Zi", "type": "object" }, "aind_data_schema__components__devices__FilterType": { @@ -36721,18 +106453,12 @@ "whoami": { "const": 1216, "default": 1216, - "enum": [ - 1216 - ], "title": "Whoami", "type": "integer" }, "name": { "const": "Behavior", "default": "Behavior", - "enum": [ - "Behavior" - ], "title": "Name", "type": "string" } @@ -36747,18 +106473,12 @@ "name": { "const": "Behavior", "default": "Behavior", - "enum": [ - "Behavior" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "behavior", "default": "behavior", - "enum": [ - "behavior" - ], "title": "Abbreviation", "type": "string" } @@ -36773,18 +106493,12 @@ "name": { "const": "Confocal microscopy", "default": "Confocal microscopy", - "enum": [ - "Confocal microscopy" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "confocal", "default": "confocal", - "enum": [ - "confocal" - ], "title": "Abbreviation", "type": "string" } @@ -36799,18 +106513,12 @@ "name": { "const": "Extracellular electrophysiology", "default": "Extracellular electrophysiology", - "enum": [ - "Extracellular electrophysiology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ecephys", "default": "ecephys", - "enum": [ - "ecephys" - ], "title": "Abbreviation", "type": "string" } @@ -36825,18 +106533,12 @@ "name": { "const": "Intrinsic signal imaging", "default": "Intrinsic signal imaging", - "enum": [ - "Intrinsic signal imaging" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ISI", "default": "ISI", - "enum": [ - "ISI" - ], "title": "Abbreviation", "type": "string" } @@ -36851,18 +106553,12 @@ "name": { "const": "Multiplexed error-robust fluorescence in situ hybridization", "default": "Multiplexed error-robust fluorescence in situ hybridization", - "enum": [ - "Multiplexed error-robust fluorescence in situ hybridization" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "merfish", "default": "merfish", - "enum": [ - "merfish" - ], "title": "Abbreviation", "type": "string" } @@ -36877,18 +106573,12 @@ "name": { "const": "Magnetic resonance imaging", "default": "Magnetic resonance imaging", - "enum": [ - "Magnetic resonance imaging" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MRI", "default": "MRI", - "enum": [ - "MRI" - ], "title": "Abbreviation", "type": "string" } @@ -36902,18 +106592,12 @@ "name": { "const": "Addgene", "default": "Addgene", - "enum": [ - "Addgene" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -36962,9 +106646,6 @@ "registry_identifier": { "const": "01nn1pw54", "default": "01nn1pw54", - "enum": [ - "01nn1pw54" - ], "title": "Registry Identifier", "type": "string" } @@ -36978,18 +106659,12 @@ "name": { "const": "Behavior platform", "default": "Behavior platform", - "enum": [ - "Behavior platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "behavior", "default": "behavior", - "enum": [ - "behavior" - ], "title": "Abbreviation", "type": "string" } @@ -37003,18 +106678,12 @@ "name": { "const": "Confocal microscopy platform", "default": "Confocal microscopy platform", - "enum": [ - "Confocal microscopy platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "confocal", "default": "confocal", - "enum": [ - "confocal" - ], "title": "Abbreviation", "type": "string" } @@ -37028,18 +106697,12 @@ "name": { "const": "Electrophysiology platform", "default": "Electrophysiology platform", - "enum": [ - "Electrophysiology platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ecephys", "default": "ecephys", - "enum": [ - "ecephys" - ], "title": "Abbreviation", "type": "string" } @@ -37053,18 +106716,12 @@ "name": { "const": "Intrinsic signal imaging platform", "default": "Intrinsic signal imaging platform", - "enum": [ - "Intrinsic signal imaging platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ISI", "default": "ISI", - "enum": [ - "ISI" - ], "title": "Abbreviation", "type": "string" } @@ -37078,18 +106735,12 @@ "name": { "const": "MERFISH platform", "default": "MERFISH platform", - "enum": [ - "MERFISH platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MERFISH", "default": "MERFISH", - "enum": [ - "MERFISH" - ], "title": "Abbreviation", "type": "string" } @@ -37103,18 +106754,12 @@ "name": { "const": "Magnetic resonance imaging platform", "default": "Magnetic resonance imaging platform", - "enum": [ - "Magnetic resonance imaging platform" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MRI", "default": "MRI", - "enum": [ - "MRI" - ], "title": "Abbreviation", "type": "string" } @@ -37129,18 +106774,12 @@ "name": { "const": "Addgene", "default": "Addgene", - "enum": [ - "Addgene" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ADDGENE", "default": "ADDGENE", - "enum": [ - "ADDGENE" - ], "title": "Abbreviation", "type": "string" } @@ -37183,11 +106822,8 @@ "type": "string" }, "schema_version": { - "const": "1.1.1", - "default": "1.1.1", - "enum": [ - "1.1.1" - ], + "const": "1.1.2", + "default": "1.1.2", "title": "Schema Version", "type": "string" }, @@ -37234,6 +106870,9 @@ }, "default": {}, "description": "Links to the data asset on different platforms.", + "propertyNames": { + "$ref": "#/$defs/ExternalPlatforms" + }, "title": "External Links", "type": "object" }, diff --git a/schemas/model_schema.json b/schemas/model_schema.json new file mode 100644 index 000000000..3ca769b43 --- /dev/null +++ b/schemas/model_schema.json @@ -0,0 +1,6041 @@ +{ + "$defs": { + "AindGeneric": { + "additionalProperties": true, + "description": "Base class for generic types that can be used in AIND schema", + "properties": {}, + "title": "AindGeneric", + "type": "object" + }, + "MemoryUnit": { + "description": "Computer memory units", + "enum": [ + "Byte", + "Kilobyte", + "Megabyte", + "Gigabyte", + "Terabyte", + "Petabyte", + "Exabyte" + ], + "title": "MemoryUnit", + "type": "string" + }, + "ModelArchitecture": { + "additionalProperties": false, + "description": "Description of model architecture", + "properties": { + "backbone": { + "$ref": "#/$defs/ModelBackbone", + "description": "Core network architecture", + "title": "Backbone" + }, + "software": { + "default": [], + "items": { + "$ref": "#/$defs/Software" + }, + "title": "Software frameworks", + "type": "array" + }, + "layers": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Layers" + }, + "parameters": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "backbone" + ], + "title": "ModelArchitecture", + "type": "object" + }, + "ModelBackbone": { + "description": "Model backbones", + "enum": [ + "AlexNet", + "Custom", + "ResNet", + "VGGNet", + "UNet" + ], + "title": "ModelBackbone", + "type": "string" + }, + "ModelEvaluation": { + "additionalProperties": false, + "description": "Description of model evaluation", + "properties": { + "name": { + "$ref": "#/$defs/ProcessName", + "default": "Model evaluation", + "title": "Process name" + }, + "software_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Version of the software used", + "title": "Version" + }, + "start_date_time": { + "format": "date-time", + "title": "Start date time", + "type": "string" + }, + "end_date_time": { + "format": "date-time", + "title": "End date time", + "type": "string" + }, + "input_location": { + "anyOf": [ + { + "type": "string" + }, + { + "items": { + "type": "string" + }, + "type": "array" + } + ], + "description": "Path(s) to data inputs", + "title": "Input location" + }, + "output_location": { + "description": "Path to data outputs", + "title": "Output location", + "type": "string" + }, + "code_url": { + "description": "Path to code repository", + "title": "Code URL", + "type": "string" + }, + "code_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Version of the code", + "title": "Code version" + }, + "parameters": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Parameters" + }, + "outputs": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "description": "Output parameters", + "title": "Outputs" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "resources": { + "anyOf": [ + { + "$ref": "#/$defs/ResourceUsage" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Process resource usage" + }, + "performance": { + "items": { + "$ref": "#/$defs/PerformanceMetric" + }, + "title": "Evaluation performance", + "type": "array" + } + }, + "required": [ + "start_date_time", + "end_date_time", + "input_location", + "output_location", + "code_url", + "performance" + ], + "title": "ModelEvaluation", + "type": "object" + }, + "ModelTraining": { + "additionalProperties": false, + "description": "Description of model training", + "properties": { + "name": { + "$ref": "#/$defs/ProcessName", + "default": "Model training", + "title": "Process name" + }, + "software_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Version of the software used", + "title": "Version" + }, + "start_date_time": { + "format": "date-time", + "title": "Start date time", + "type": "string" + }, + "end_date_time": { + "format": "date-time", + "title": "End date time", + "type": "string" + }, + "input_location": { + "anyOf": [ + { + "type": "string" + }, + { + "items": { + "type": "string" + }, + "type": "array" + } + ], + "description": "Path(s) to data inputs", + "title": "Input location" + }, + "output_location": { + "description": "Path to data outputs", + "title": "Output location", + "type": "string" + }, + "code_url": { + "description": "Path to code repository", + "title": "Code URL", + "type": "string" + }, + "code_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Version of the code", + "title": "Code version" + }, + "parameters": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Parameters" + }, + "outputs": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "description": "Output parameters", + "title": "Outputs" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "resources": { + "anyOf": [ + { + "$ref": "#/$defs/ResourceUsage" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Process resource usage" + }, + "train_performance": { + "description": "Performance on training set", + "items": { + "$ref": "#/$defs/PerformanceMetric" + }, + "title": "Training performance", + "type": "array" + }, + "test_performance": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/PerformanceMetric" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Performance on test data, evaluated during training", + "title": "Test performance" + }, + "test_data": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Path or cross-validation/split approach", + "title": "Test data" + } + }, + "required": [ + "start_date_time", + "end_date_time", + "input_location", + "output_location", + "code_url", + "train_performance" + ], + "title": "ModelTraining", + "type": "object" + }, + "PerformanceMetric": { + "additionalProperties": false, + "description": "Description of a performance metric", + "properties": { + "name": { + "title": "Metric name", + "type": "string" + }, + "value": { + "title": "Metric value" + } + }, + "required": [ + "name", + "value" + ], + "title": "PerformanceMetric", + "type": "object" + }, + "ProcessName": { + "description": "Process names", + "enum": [ + "Analysis", + "Compression", + "Denoising", + "dF/F estimation", + "Ephys curation", + "Ephys postprocessing", + "Ephys preprocessing", + "Ephys visualization", + "Fiducial segmentation", + "File format conversion", + "Fluorescence event detection", + "Image atlas alignment", + "Image background subtraction", + "Image cell classification", + "Image cell quantification", + "Image cell segmentation", + "Image cross-image alignment", + "Image destriping", + "Image flat-field correction", + "Image importing", + "Image mip visualization", + "Image thresholding", + "Image tile alignment", + "Image tile fusing", + "Image tile projection", + "Image spot detection", + "Image spot spectral unmixing", + "Model evaluation", + "Model training", + "Neuropil subtraction", + "Other", + "Simulation", + "Skull stripping", + "Spatial timeseries demixing", + "Spike sorting", + "Video motion correction", + "Video plane decrosstalk", + "Video ROI classification", + "Video ROI cross session matching", + "Video ROI segmentation", + "Video ROI timeseries extraction" + ], + "title": "ProcessName", + "type": "string" + }, + "ResourceTimestamped": { + "additionalProperties": false, + "description": "Description of resource usage at a moment in time", + "properties": { + "timestamp": { + "format": "date-time", + "title": "Timestamp", + "type": "string" + }, + "usage": { + "title": "Usage", + "type": "number" + } + }, + "required": [ + "timestamp", + "usage" + ], + "title": "ResourceTimestamped", + "type": "object" + }, + "ResourceUsage": { + "additionalProperties": false, + "description": "Description of resources used by a process", + "properties": { + "os": { + "title": "Operating system", + "type": "string" + }, + "architecture": { + "title": "Architecture", + "type": "string" + }, + "cpu": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "CPU name" + }, + "cpu_cores": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "CPU cores" + }, + "gpu": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "GPU name" + }, + "system_memory": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "System memory" + }, + "system_memory_unit": { + "anyOf": [ + { + "$ref": "#/$defs/MemoryUnit" + }, + { + "type": "null" + } + ], + "default": null, + "title": "System memory unit" + }, + "ram": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "System RAM" + }, + "ram_unit": { + "anyOf": [ + { + "$ref": "#/$defs/MemoryUnit" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Ram unit" + }, + "cpu_usage": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/ResourceTimestamped" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "CPU usage" + }, + "gpu_usage": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/ResourceTimestamped" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "GPU usage" + }, + "ram_usage": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/ResourceTimestamped" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "RAM usage" + }, + "usage_unit": { + "default": "percent", + "title": "Usage unit", + "type": "string" + } + }, + "required": [ + "os", + "architecture" + ], + "title": "ResourceUsage", + "type": "object" + }, + "Software": { + "additionalProperties": false, + "description": "Description of generic software", + "properties": { + "name": { + "title": "Software name", + "type": "string" + }, + "version": { + "title": "Software version", + "type": "string" + }, + "url": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "URL to commit being used" + }, + "parameters": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Software parameters" + } + }, + "required": [ + "name", + "version" + ], + "title": "Software", + "type": "object" + }, + "_Aa_Opto_Electronic": { + "description": "Model AA Opto Electronic", + "properties": { + "name": { + "const": "AA Opto Electronic", + "default": "AA Opto Electronic", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Aa_Opto_Electronic", + "type": "object" + }, + "_Abcam": { + "description": "Model Abcam", + "properties": { + "name": { + "const": "Abcam", + "default": "Abcam", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02e1wjw63", + "default": "02e1wjw63", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Abcam", + "type": "object" + }, + "_Ailipu_Technology_Co": { + "description": "Model Ailipu Technology Co", + "properties": { + "name": { + "const": "Ailipu Technology Co", + "default": "Ailipu Technology Co", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Ailipu", + "default": "Ailipu", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Ailipu_Technology_Co", + "type": "object" + }, + "_Allen_Institute": { + "description": "Model Allen Institute", + "properties": { + "name": { + "const": "Allen Institute", + "default": "Allen Institute", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "AI", + "default": "AI", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03cpe7c52", + "default": "03cpe7c52", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Allen_Institute", + "type": "object" + }, + "_Allen_Institute_For_Brain_Science": { + "description": "Model Allen Institute for Brain Science", + "properties": { + "name": { + "const": "Allen Institute for Brain Science", + "default": "Allen Institute for Brain Science", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "AIBS", + "default": "AIBS", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00dcv1019", + "default": "00dcv1019", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Allen_Institute_For_Brain_Science", + "type": "object" + }, + "_Allen_Institute_For_Neural_Dynamics": { + "description": "Model Allen Institute for Neural Dynamics", + "properties": { + "name": { + "const": "Allen Institute for Neural Dynamics", + "default": "Allen Institute for Neural Dynamics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "AIND", + "default": "AIND", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "04szwah67", + "default": "04szwah67", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Allen_Institute_For_Neural_Dynamics", + "type": "object" + }, + "_Allied": { + "description": "Model Allied", + "properties": { + "name": { + "const": "Allied", + "default": "Allied", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Allied", + "type": "object" + }, + "_Ams_Osram": { + "description": "Model ams OSRAM", + "properties": { + "name": { + "const": "ams OSRAM", + "default": "ams OSRAM", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "045d0h266", + "default": "045d0h266", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Ams_Osram", + "type": "object" + }, + "_Applied_Scientific_Instrumentation": { + "description": "Model Applied Scientific Instrumentation", + "properties": { + "name": { + "const": "Applied Scientific Instrumentation", + "default": "Applied Scientific Instrumentation", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "ASI", + "default": "ASI", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Applied_Scientific_Instrumentation", + "type": "object" + }, + "_Arecont_Vision_Costar": { + "description": "Model Arecont Vision Costar", + "properties": { + "name": { + "const": "Arecont Vision Costar", + "default": "Arecont Vision Costar", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Arecont_Vision_Costar", + "type": "object" + }, + "_Asus": { + "description": "Model ASUS", + "properties": { + "name": { + "const": "ASUS", + "default": "ASUS", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00bxkz165", + "default": "00bxkz165", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Asus", + "type": "object" + }, + "_Basler": { + "description": "Model Basler", + "properties": { + "name": { + "const": "Basler", + "default": "Basler", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Basler", + "type": "object" + }, + "_Behavior": { + "additionalProperties": false, + "description": "Model behavior", + "properties": { + "name": { + "const": "Behavior", + "default": "Behavior", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "behavior", + "default": "behavior", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Behavior", + "type": "object" + }, + "_Behavior_Videos": { + "additionalProperties": false, + "description": "Model behavior-videos", + "properties": { + "name": { + "const": "Behavior videos", + "default": "Behavior videos", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "behavior-videos", + "default": "behavior-videos", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Behavior_Videos", + "type": "object" + }, + "_Cambridge_Technology": { + "description": "Model Cambridge Technology", + "properties": { + "name": { + "const": "Cambridge Technology", + "default": "Cambridge Technology", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Cambridge_Technology", + "type": "object" + }, + "_Carl_Zeiss": { + "description": "Model Carl Zeiss", + "properties": { + "name": { + "const": "Carl Zeiss", + "default": "Carl Zeiss", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "01xk5xs43", + "default": "01xk5xs43", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Carl_Zeiss", + "type": "object" + }, + "_Champalimaud_Foundation": { + "description": "Model Champalimaud Foundation", + "properties": { + "name": { + "const": "Champalimaud Foundation", + "default": "Champalimaud Foundation", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Champalimaud", + "default": "Champalimaud", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03g001n57", + "default": "03g001n57", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Champalimaud_Foundation", + "type": "object" + }, + "_Chan_Zuckerberg_Initiative": { + "description": "Model Chan Zuckerberg Initiative", + "properties": { + "name": { + "const": "Chan Zuckerberg Initiative", + "default": "Chan Zuckerberg Initiative", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "CZI", + "default": "CZI", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02qenvm24", + "default": "02qenvm24", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Chan_Zuckerberg_Initiative", + "type": "object" + }, + "_Charles_River_Laboratories": { + "description": "Model Charles River Laboratories", + "properties": { + "name": { + "const": "Charles River Laboratories", + "default": "Charles River Laboratories", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "CRL", + "default": "CRL", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03ndmsg87", + "default": "03ndmsg87", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Charles_River_Laboratories", + "type": "object" + }, + "_Chroma": { + "description": "Model Chroma", + "properties": { + "name": { + "const": "Chroma", + "default": "Chroma", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Chroma", + "type": "object" + }, + "_Coherent_Scientific": { + "description": "Model Coherent Scientific", + "properties": { + "name": { + "const": "Coherent Scientific", + "default": "Coherent Scientific", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "031tysd23", + "default": "031tysd23", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Coherent_Scientific", + "type": "object" + }, + "_Columbia_University": { + "description": "Model Columbia University", + "properties": { + "name": { + "const": "Columbia University", + "default": "Columbia University", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Columbia", + "default": "Columbia", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00hj8s172", + "default": "00hj8s172", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Columbia_University", + "type": "object" + }, + "_Computar": { + "description": "Model Computar", + "properties": { + "name": { + "const": "Computar", + "default": "Computar", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Computar", + "type": "object" + }, + "_Confocal": { + "additionalProperties": false, + "description": "Model confocal", + "properties": { + "name": { + "const": "Confocal microscopy", + "default": "Confocal microscopy", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "confocal", + "default": "confocal", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Confocal", + "type": "object" + }, + "_Conoptics": { + "description": "Model Conoptics", + "properties": { + "name": { + "const": "Conoptics", + "default": "Conoptics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Conoptics", + "type": "object" + }, + "_Custom": { + "description": "Model Custom", + "properties": { + "name": { + "const": "Custom", + "default": "Custom", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Custom", + "type": "object" + }, + "_Digikey": { + "description": "Model DigiKey", + "properties": { + "name": { + "const": "DigiKey", + "default": "DigiKey", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Digikey", + "type": "object" + }, + "_Dodotronic": { + "description": "Model Dodotronic", + "properties": { + "name": { + "const": "Dodotronic", + "default": "Dodotronic", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Dodotronic", + "type": "object" + }, + "_Doric": { + "description": "Model Doric", + "properties": { + "name": { + "const": "Doric", + "default": "Doric", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "059n53q30", + "default": "059n53q30", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Doric", + "type": "object" + }, + "_Ealing": { + "description": "Model Ealing", + "properties": { + "name": { + "const": "Ealing", + "default": "Ealing", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Ealing", + "type": "object" + }, + "_Ecephys": { + "additionalProperties": false, + "description": "Model ecephys", + "properties": { + "name": { + "const": "Extracellular electrophysiology", + "default": "Extracellular electrophysiology", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "ecephys", + "default": "ecephys", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Ecephys", + "type": "object" + }, + "_Edmund_Optics": { + "description": "Model Edmund Optics", + "properties": { + "name": { + "const": "Edmund Optics", + "default": "Edmund Optics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "01j1gwp17", + "default": "01j1gwp17", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Edmund_Optics", + "type": "object" + }, + "_Emapa": { + "additionalProperties": false, + "description": "Model EMAPA", + "properties": { + "name": { + "const": "Edinburgh Mouse Atlas Project", + "default": "Edinburgh Mouse Atlas Project", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "EMAPA", + "default": "EMAPA", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Emapa", + "type": "object" + }, + "_Emg": { + "additionalProperties": false, + "description": "Model EMG", + "properties": { + "name": { + "const": "Electromyography", + "default": "Electromyography", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "EMG", + "default": "EMG", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Emg", + "type": "object" + }, + "_Emory_University": { + "description": "Model Emory University", + "properties": { + "name": { + "const": "Emory University", + "default": "Emory University", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Emory", + "default": "Emory", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03czfpz43", + "default": "03czfpz43", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Emory_University", + "type": "object" + }, + "_Euresys": { + "description": "Model Euresys", + "properties": { + "name": { + "const": "Euresys", + "default": "Euresys", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Euresys", + "type": "object" + }, + "_Fib": { + "additionalProperties": false, + "description": "Model fib", + "properties": { + "name": { + "const": "Fiber photometry", + "default": "Fiber photometry", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "fib", + "default": "fib", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Fib", + "type": "object" + }, + "_Fmost": { + "additionalProperties": false, + "description": "Model fMOST", + "properties": { + "name": { + "const": "Fluorescence micro-optical sectioning tomography", + "default": "Fluorescence micro-optical sectioning tomography", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "fMOST", + "default": "fMOST", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Fmost", + "type": "object" + }, + "_Fujinon": { + "description": "Model Fujinon", + "properties": { + "name": { + "const": "Fujinon", + "default": "Fujinon", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Fujinon", + "type": "object" + }, + "_Hamamatsu": { + "description": "Model Hamamatsu", + "properties": { + "name": { + "const": "Hamamatsu", + "default": "Hamamatsu", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03natb733", + "default": "03natb733", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Hamamatsu", + "type": "object" + }, + "_Hamilton": { + "description": "Model Hamilton", + "properties": { + "name": { + "const": "Hamilton", + "default": "Hamilton", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Hamilton", + "type": "object" + }, + "_Huazhong_University_Of_Science_And_Technology": { + "description": "Model Huazhong University of Science and Technology", + "properties": { + "name": { + "const": "Huazhong University of Science and Technology", + "default": "Huazhong University of Science and Technology", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "HUST", + "default": "HUST", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00p991c53", + "default": "00p991c53", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Huazhong_University_Of_Science_And_Technology", + "type": "object" + }, + "_Icephys": { + "additionalProperties": false, + "description": "Model icephys", + "properties": { + "name": { + "const": "Intracellular electrophysiology", + "default": "Intracellular electrophysiology", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "icephys", + "default": "icephys", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Icephys", + "type": "object" + }, + "_Infinity_Photo_Optical": { + "description": "Model Infinity Photo-Optical", + "properties": { + "name": { + "const": "Infinity Photo-Optical", + "default": "Infinity Photo-Optical", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Infinity_Photo_Optical", + "type": "object" + }, + "_Integrated_Dna_Technologies": { + "description": "Model Integrated DNA Technologies", + "properties": { + "name": { + "const": "Integrated DNA Technologies", + "default": "Integrated DNA Technologies", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "IDT", + "default": "IDT", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "009jvpf03", + "default": "009jvpf03", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Integrated_Dna_Technologies", + "type": "object" + }, + "_Interuniversity_Microelectronics_Center": { + "description": "Model Interuniversity Microelectronics Center", + "properties": { + "name": { + "const": "Interuniversity Microelectronics Center", + "default": "Interuniversity Microelectronics Center", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "IMEC", + "default": "IMEC", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02kcbn207", + "default": "02kcbn207", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Interuniversity_Microelectronics_Center", + "type": "object" + }, + "_Invitrogen": { + "description": "Model Invitrogen", + "properties": { + "name": { + "const": "Invitrogen", + "default": "Invitrogen", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03x1ewr52", + "default": "03x1ewr52", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Invitrogen", + "type": "object" + }, + "_Ir_Robot_Co": { + "description": "Model IR Robot Co", + "properties": { + "name": { + "const": "IR Robot Co", + "default": "IR Robot Co", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Ir_Robot_Co", + "type": "object" + }, + "_Isi": { + "additionalProperties": false, + "description": "Model ISI", + "properties": { + "name": { + "const": "Intrinsic signal imaging", + "default": "Intrinsic signal imaging", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "ISI", + "default": "ISI", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Isi", + "type": "object" + }, + "_Isl_Products_International": { + "description": "Model ISL Products International", + "properties": { + "name": { + "const": "ISL Products International", + "default": "ISL Products International", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "ISL", + "default": "ISL", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Isl_Products_International", + "type": "object" + }, + "_Item": { + "description": "Model Item", + "properties": { + "name": { + "const": "Item", + "default": "Item", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Item", + "type": "object" + }, + "_Jackson_Laboratory": { + "description": "Model Jackson Laboratory", + "properties": { + "name": { + "const": "Jackson Laboratory", + "default": "Jackson Laboratory", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "JAX", + "default": "JAX", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "021sy4w91", + "default": "021sy4w91", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Jackson_Laboratory", + "type": "object" + }, + "_Janelia_Research_Campus": { + "description": "Model Janelia Research Campus", + "properties": { + "name": { + "const": "Janelia Research Campus", + "default": "Janelia Research Campus", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Janelia", + "default": "Janelia", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "013sk6x84", + "default": "013sk6x84", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Janelia_Research_Campus", + "type": "object" + }, + "_Julabo": { + "description": "Model Julabo", + "properties": { + "name": { + "const": "Julabo", + "default": "Julabo", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Julabo", + "type": "object" + }, + "_Kowa": { + "description": "Model Kowa", + "properties": { + "name": { + "const": "Kowa", + "default": "Kowa", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03zbwg482", + "default": "03zbwg482", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Kowa", + "type": "object" + }, + "_Leica": { + "description": "Model Leica", + "properties": { + "name": { + "const": "Leica", + "default": "Leica", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Leica", + "type": "object" + }, + "_Lg": { + "description": "Model LG", + "properties": { + "name": { + "const": "LG", + "default": "LG", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02b948n83", + "default": "02b948n83", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Lg", + "type": "object" + }, + "_Lifecanvas": { + "description": "Model LifeCanvas", + "properties": { + "name": { + "const": "LifeCanvas", + "default": "LifeCanvas", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Lifecanvas", + "type": "object" + }, + "_Lumen_Dynamics": { + "description": "Model Lumen Dynamics", + "properties": { + "name": { + "const": "Lumen Dynamics", + "default": "Lumen Dynamics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Lumen_Dynamics", + "type": "object" + }, + "_Mbf_Bioscience": { + "description": "Model MBF Bioscience", + "properties": { + "name": { + "const": "MBF Bioscience", + "default": "MBF Bioscience", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MBF", + "default": "MBF", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02zynam48", + "default": "02zynam48", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Mbf_Bioscience", + "type": "object" + }, + "_Meadowlark_Optics": { + "description": "Model Meadowlark Optics", + "properties": { + "name": { + "const": "Meadowlark Optics", + "default": "Meadowlark Optics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00n8qbq54", + "default": "00n8qbq54", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Meadowlark_Optics", + "type": "object" + }, + "_Merfish": { + "additionalProperties": false, + "description": "Model merfish", + "properties": { + "name": { + "const": "Multiplexed error-robust fluorescence in situ hybridization", + "default": "Multiplexed error-robust fluorescence in situ hybridization", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "merfish", + "default": "merfish", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Merfish", + "type": "object" + }, + "_Mgi": { + "additionalProperties": false, + "description": "Model MGI", + "properties": { + "name": { + "const": "Mouse Genome Informatics", + "default": "Mouse Genome Informatics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MGI", + "default": "MGI", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Mgi", + "type": "object" + }, + "_Michael_J_Fox_Foundation_For_Parkinson_S_Research": { + "description": "Model Michael J. Fox Foundation for Parkinson's Research", + "properties": { + "name": { + "const": "Michael J. Fox Foundation for Parkinson's Research", + "default": "Michael J. Fox Foundation for Parkinson's Research", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MJFF", + "default": "MJFF", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03arq3225", + "default": "03arq3225", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "type": "object" + }, + "_Midwest_Optical_Systems_Inc_": { + "description": "Model Midwest Optical Systems, Inc.", + "properties": { + "name": { + "const": "Midwest Optical Systems, Inc.", + "default": "Midwest Optical Systems, Inc.", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MidOpt", + "default": "MidOpt", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Midwest_Optical_Systems_Inc_", + "type": "object" + }, + "_Mitutuyo": { + "description": "Model Mitutuyo", + "properties": { + "name": { + "const": "Mitutuyo", + "default": "Mitutuyo", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Mitutuyo", + "type": "object" + }, + "_Mks_Newport": { + "description": "Model MKS Newport", + "properties": { + "name": { + "const": "MKS Newport", + "default": "MKS Newport", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00k17f049", + "default": "00k17f049", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Mks_Newport", + "type": "object" + }, + "_Mpi": { + "description": "Model MPI", + "properties": { + "name": { + "const": "MPI", + "default": "MPI", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MPI", + "default": "MPI", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Mpi", + "type": "object" + }, + "_Mri": { + "additionalProperties": false, + "description": "Model MRI", + "properties": { + "name": { + "const": "Magnetic resonance imaging", + "default": "Magnetic resonance imaging", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MRI", + "default": "MRI", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Mri", + "type": "object" + }, + "_National_Center_For_Complementary_And_Integrative_Health": { + "description": "Model National Center for Complementary and Integrative Health", + "properties": { + "name": { + "const": "National Center for Complementary and Integrative Health", + "default": "National Center for Complementary and Integrative Health", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NCCIH", + "default": "NCCIH", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00190t495", + "default": "00190t495", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_National_Center_For_Complementary_And_Integrative_Health", + "type": "object" + }, + "_National_Institute_Of_Mental_Health": { + "description": "Model National Institute of Mental Health", + "properties": { + "name": { + "const": "National Institute of Mental Health", + "default": "National Institute of Mental Health", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NIMH", + "default": "NIMH", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "04xeg9z08", + "default": "04xeg9z08", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_National_Institute_Of_Mental_Health", + "type": "object" + }, + "_National_Institute_Of_Neurological_Disorders_And_Stroke": { + "description": "Model National Institute of Neurological Disorders and Stroke", + "properties": { + "name": { + "const": "National Institute of Neurological Disorders and Stroke", + "default": "National Institute of Neurological Disorders and Stroke", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NINDS", + "default": "NINDS", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "01s5ya894", + "default": "01s5ya894", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_National_Institute_Of_Neurological_Disorders_And_Stroke", + "type": "object" + }, + "_National_Instruments": { + "description": "Model National Instruments", + "properties": { + "name": { + "const": "National Instruments", + "default": "National Instruments", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "026exqw73", + "default": "026exqw73", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_National_Instruments", + "type": "object" + }, + "_Navitar": { + "description": "Model Navitar", + "properties": { + "name": { + "const": "Navitar", + "default": "Navitar", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Navitar", + "type": "object" + }, + "_Ncbi": { + "additionalProperties": false, + "description": "Model NCBI", + "properties": { + "name": { + "const": "National Center for Biotechnology Information", + "default": "National Center for Biotechnology Information", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NCBI", + "default": "NCBI", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Ncbi", + "type": "object" + }, + "_Neurophotometrics": { + "description": "Model Neurophotometrics", + "properties": { + "name": { + "const": "Neurophotometrics", + "default": "Neurophotometrics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Neurophotometrics", + "type": "object" + }, + "_New_Scale_Technologies": { + "description": "Model New Scale Technologies", + "properties": { + "name": { + "const": "New Scale Technologies", + "default": "New Scale Technologies", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_New_Scale_Technologies", + "type": "object" + }, + "_New_York_University": { + "description": "Model New York University", + "properties": { + "name": { + "const": "New York University", + "default": "New York University", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NYU", + "default": "NYU", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "0190ak572", + "default": "0190ak572", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_New_York_University", + "type": "object" + }, + "_Nikon": { + "description": "Model Nikon", + "properties": { + "name": { + "const": "Nikon", + "default": "Nikon", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "0280y9h11", + "default": "0280y9h11", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Nikon", + "type": "object" + }, + "_Nresearch_Inc": { + "description": "Model NResearch Inc", + "properties": { + "name": { + "const": "NResearch Inc", + "default": "NResearch Inc", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Nresearch_Inc", + "type": "object" + }, + "_Olympus": { + "description": "Model Olympus", + "properties": { + "name": { + "const": "Olympus", + "default": "Olympus", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02vcdte90", + "default": "02vcdte90", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Olympus", + "type": "object" + }, + "_Open_Ephys_Production_Site": { + "description": "Model Open Ephys Production Site", + "properties": { + "name": { + "const": "Open Ephys Production Site", + "default": "Open Ephys Production Site", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "OEPS", + "default": "OEPS", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "007rkz355", + "default": "007rkz355", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Open_Ephys_Production_Site", + "type": "object" + }, + "_Optotune": { + "description": "Model Optotune", + "properties": { + "name": { + "const": "Optotune", + "default": "Optotune", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Optotune", + "type": "object" + }, + "_Orcid": { + "additionalProperties": false, + "description": "Model ORCID", + "properties": { + "name": { + "const": "Open Researcher and Contributor ID", + "default": "Open Researcher and Contributor ID", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "ORCID", + "default": "ORCID", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Orcid", + "type": "object" + }, + "_Other": { + "description": "Model Other", + "properties": { + "name": { + "const": "Other", + "default": "Other", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Other", + "type": "object" + }, + "_Oxxius": { + "description": "Model Oxxius", + "properties": { + "name": { + "const": "Oxxius", + "default": "Oxxius", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Oxxius", + "type": "object" + }, + "_Placid_Industries": { + "description": "Model Placid Industries", + "properties": { + "name": { + "const": "Placid Industries", + "default": "Placid Industries", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Placid_Industries", + "type": "object" + }, + "_Pophys": { + "additionalProperties": false, + "description": "Model pophys", + "properties": { + "name": { + "const": "Planar optical physiology", + "default": "Planar optical physiology", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "pophys", + "default": "pophys", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Pophys", + "type": "object" + }, + "_Prizmatix": { + "description": "Model Prizmatix", + "properties": { + "name": { + "const": "Prizmatix", + "default": "Prizmatix", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Prizmatix", + "type": "object" + }, + "_Quantifi": { + "description": "Model Quantifi", + "properties": { + "name": { + "const": "Quantifi", + "default": "Quantifi", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Quantifi", + "type": "object" + }, + "_Raspberry_Pi": { + "description": "Model Raspberry Pi", + "properties": { + "name": { + "const": "Raspberry Pi", + "default": "Raspberry Pi", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Raspberry_Pi", + "type": "object" + }, + "_Ror": { + "additionalProperties": false, + "description": "Model ROR", + "properties": { + "name": { + "const": "Research Organization Registry", + "default": "Research Organization Registry", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "ROR", + "default": "ROR", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Ror", + "type": "object" + }, + "_Rrid": { + "additionalProperties": false, + "description": "Model RRID", + "properties": { + "name": { + "const": "Research Resource Identifiers", + "default": "Research Resource Identifiers", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "RRID", + "default": "RRID", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Rrid", + "type": "object" + }, + "_Same_Sky": { + "description": "Model Same Sky", + "properties": { + "name": { + "const": "Same Sky", + "default": "Same Sky", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Same_Sky", + "type": "object" + }, + "_Schneider_Kreuznach": { + "description": "Model Schneider-Kreuznach", + "properties": { + "name": { + "const": "Schneider-Kreuznach", + "default": "Schneider-Kreuznach", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Schneider_Kreuznach", + "type": "object" + }, + "_Second_Order_Effects": { + "description": "Model Second Order Effects", + "properties": { + "name": { + "const": "Second Order Effects", + "default": "Second Order Effects", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Second_Order_Effects", + "type": "object" + }, + "_Semrock": { + "description": "Model Semrock", + "properties": { + "name": { + "const": "Semrock", + "default": "Semrock", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Semrock", + "type": "object" + }, + "_Sicgen": { + "description": "Model SICGEN", + "properties": { + "name": { + "const": "SICGEN", + "default": "SICGEN", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Sicgen", + "type": "object" + }, + "_Sigma_Aldrich": { + "description": "Model Sigma-Aldrich", + "properties": { + "name": { + "const": "Sigma-Aldrich", + "default": "Sigma-Aldrich", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Sigma_Aldrich", + "type": "object" + }, + "_Simons_Foundation": { + "description": "Model Simons Foundation", + "properties": { + "name": { + "const": "Simons Foundation", + "default": "Simons Foundation", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "01cmst727", + "default": "01cmst727", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Simons_Foundation", + "type": "object" + }, + "_Slap": { + "additionalProperties": false, + "description": "Model slap", + "properties": { + "name": { + "const": "Scanned line projection imaging", + "default": "Scanned line projection imaging", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "slap", + "default": "slap", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Slap", + "type": "object" + }, + "_Spim": { + "additionalProperties": false, + "description": "Model SPIM", + "properties": { + "name": { + "const": "Selective plane illumination microscopy", + "default": "Selective plane illumination microscopy", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "SPIM", + "default": "SPIM", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Spim", + "type": "object" + }, + "_Spinnaker": { + "description": "Model Spinnaker", + "properties": { + "name": { + "const": "Spinnaker", + "default": "Spinnaker", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Spinnaker", + "type": "object" + }, + "_Tamron": { + "description": "Model Tamron", + "properties": { + "name": { + "const": "Tamron", + "default": "Tamron", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Tamron", + "type": "object" + }, + "_Technical_Manufacturing_Corporation": { + "description": "Model Technical Manufacturing Corporation", + "properties": { + "name": { + "const": "Technical Manufacturing Corporation", + "default": "Technical Manufacturing Corporation", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "TMC", + "default": "TMC", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Technical_Manufacturing_Corporation", + "type": "object" + }, + "_Teledyne_Flir": { + "description": "Model Teledyne FLIR", + "properties": { + "name": { + "const": "Teledyne FLIR", + "default": "Teledyne FLIR", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "FLIR", + "default": "FLIR", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "01j1gwp17", + "default": "01j1gwp17", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Teledyne_Flir", + "type": "object" + }, + "_Templeton_World_Charity_Foundation": { + "description": "Model Templeton World Charity Foundation", + "properties": { + "name": { + "const": "Templeton World Charity Foundation", + "default": "Templeton World Charity Foundation", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "TWCF", + "default": "TWCF", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00x0z1472", + "default": "00x0z1472", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Templeton_World_Charity_Foundation", + "type": "object" + }, + "_The_Imaging_Source": { + "description": "Model The Imaging Source", + "properties": { + "name": { + "const": "The Imaging Source", + "default": "The Imaging Source", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_The_Imaging_Source", + "type": "object" + }, + "_The_Lee_Company": { + "description": "Model The Lee Company", + "properties": { + "name": { + "const": "The Lee Company", + "default": "The Lee Company", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_The_Lee_Company", + "type": "object" + }, + "_Thermo_Fisher_Scientific": { + "description": "Model Thermo Fisher Scientific", + "properties": { + "name": { + "const": "Thermo Fisher Scientific", + "default": "Thermo Fisher Scientific", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03x1ewr52", + "default": "03x1ewr52", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Thermo_Fisher_Scientific", + "type": "object" + }, + "_Thorlabs": { + "description": "Model Thorlabs", + "properties": { + "name": { + "const": "Thorlabs", + "default": "Thorlabs", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "04gsnvb07", + "default": "04gsnvb07", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Thorlabs", + "type": "object" + }, + "_Transducer_Techniques": { + "description": "Model Transducer Techniques", + "properties": { + "name": { + "const": "Transducer Techniques", + "default": "Transducer Techniques", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Transducer_Techniques", + "type": "object" + }, + "_Tymphany": { + "description": "Model Tymphany", + "properties": { + "name": { + "const": "Tymphany", + "default": "Tymphany", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Tymphany", + "type": "object" + }, + "_Vieworks": { + "description": "Model Vieworks", + "properties": { + "name": { + "const": "Vieworks", + "default": "Vieworks", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Vieworks", + "type": "object" + }, + "_Vortran": { + "description": "Model Vortran", + "properties": { + "name": { + "const": "Vortran", + "default": "Vortran", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Vortran", + "type": "object" + }, + "aind_data_schema_models__organizations___Addgene": { + "description": "Model Addgene", + "properties": { + "name": { + "const": "Addgene", + "default": "Addgene", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "01nn1pw54", + "default": "01nn1pw54", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Addgene", + "type": "object" + }, + "aind_data_schema_models__registries___Addgene": { + "additionalProperties": false, + "description": "Model ADDGENE", + "properties": { + "name": { + "const": "Addgene", + "default": "Addgene", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "ADDGENE", + "default": "ADDGENE", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Addgene", + "type": "object" + } + }, + "additionalProperties": false, + "description": "Description of an analysis model", + "properties": { + "describedBy": { + "const": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/model.py", + "default": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/model.py", + "title": "Describedby", + "type": "string" + }, + "schema_version": { + "const": "0.0.1", + "default": "0.0.1", + "title": "Schema Version", + "type": "string" + }, + "name": { + "title": "Name", + "type": "string" + }, + "license": { + "title": "License", + "type": "string" + }, + "developer_full_name": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Name of developer" + }, + "developer_institution": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Institute where developed" + }, + "modality": { + "items": { + "discriminator": { + "mapping": { + "EMG": "#/$defs/_Emg", + "ISI": "#/$defs/_Isi", + "MRI": "#/$defs/_Mri", + "SPIM": "#/$defs/_Spim", + "behavior": "#/$defs/_Behavior", + "behavior-videos": "#/$defs/_Behavior_Videos", + "confocal": "#/$defs/_Confocal", + "ecephys": "#/$defs/_Ecephys", + "fMOST": "#/$defs/_Fmost", + "fib": "#/$defs/_Fib", + "icephys": "#/$defs/_Icephys", + "merfish": "#/$defs/_Merfish", + "pophys": "#/$defs/_Pophys", + "slap": "#/$defs/_Slap" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Behavior" + }, + { + "$ref": "#/$defs/_Behavior_Videos" + }, + { + "$ref": "#/$defs/_Confocal" + }, + { + "$ref": "#/$defs/_Emg" + }, + { + "$ref": "#/$defs/_Ecephys" + }, + { + "$ref": "#/$defs/_Fib" + }, + { + "$ref": "#/$defs/_Fmost" + }, + { + "$ref": "#/$defs/_Icephys" + }, + { + "$ref": "#/$defs/_Isi" + }, + { + "$ref": "#/$defs/_Mri" + }, + { + "$ref": "#/$defs/_Merfish" + }, + { + "$ref": "#/$defs/_Pophys" + }, + { + "$ref": "#/$defs/_Slap" + }, + { + "$ref": "#/$defs/_Spim" + } + ] + }, + "title": "Modality", + "type": "array" + }, + "architecture": { + "$ref": "#/$defs/ModelArchitecture", + "title": "Model architecture" + }, + "intended_use": { + "description": "Semantic description of intended use", + "title": "Intended model use", + "type": "string" + }, + "limitations": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model limitations" + }, + "pretrained_source_url": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Pretrained source URL" + }, + "training": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/ModelTraining" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": [], + "title": "Training" + }, + "evaluations": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/ModelEvaluation" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": [], + "title": "Evaluations" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "name", + "license", + "modality", + "architecture", + "intended_use" + ], + "title": "Model", + "type": "object" +} \ No newline at end of file diff --git a/schemas/procedures_schema.json b/schemas/procedures_schema.json index fa7f81b44..77272a02d 100644 --- a/schemas/procedures_schema.json +++ b/schemas/procedures_schema.json @@ -92,12 +92,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -114,9 +116,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -143,10 +147,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -161,6 +167,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -217,6 +224,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -235,6 +245,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -283,6 +296,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -292,6 +308,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -370,6 +389,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -379,6 +401,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -424,6 +449,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -579,9 +607,6 @@ "procedure_type": { "const": "Craniotomy", "default": "Craniotomy", - "enum": [ - "Craniotomy" - ], "title": "Procedure Type", "type": "string" }, @@ -705,7 +730,6 @@ "type": "string" }, "CurrentUnit": { - "const": "microamps", "description": "Current units", "enum": [ "microamps" @@ -729,9 +753,6 @@ "procedure_type": { "const": "Fiber implant", "default": "Fiber implant", - "enum": [ - "Fiber implant" - ], "title": "Procedure Type", "type": "string" }, @@ -762,9 +783,6 @@ "device_type": { "const": "Fiber optic probe", "default": "Fiber optic probe", - "enum": [ - "Fiber optic probe" - ], "title": "Device Type", "type": "string" }, @@ -805,12 +823,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -827,9 +847,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -856,10 +878,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -874,6 +898,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -930,6 +955,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -948,6 +976,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -996,6 +1027,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -1005,6 +1039,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -1083,6 +1120,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -1092,6 +1132,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -1137,6 +1180,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -1347,12 +1393,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -1369,9 +1417,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -1398,10 +1448,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -1416,6 +1468,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -1472,6 +1525,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -1490,6 +1546,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -1538,6 +1597,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -1547,6 +1609,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -1625,6 +1690,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -1634,6 +1702,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -1679,6 +1750,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -1813,12 +1887,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -1835,9 +1911,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -1864,10 +1942,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -1882,6 +1962,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -1938,6 +2019,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -1956,6 +2040,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -2004,6 +2091,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -2013,6 +2103,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -2091,6 +2184,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -2100,6 +2196,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -2145,6 +2244,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -2262,9 +2364,6 @@ "procedure_type": { "const": "Headframe", "default": "Headframe", - "enum": [ - "Headframe" - ], "title": "Procedure Type", "type": "string" }, @@ -2595,428 +2694,11507 @@ "targeted_structure": { "anyOf": [ { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Injection targeted brain structure" - }, - "injection_hemisphere": { - "anyOf": [ - { - "$ref": "#/$defs/Side" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Injection hemisphere" - }, - "procedure_type": { - "const": "ICV injection", - "default": "ICV injection", - "enum": [ - "ICV injection" - ], - "title": "Procedure Type", - "type": "string" - }, - "injection_volume": { - "description": "Injection volume, one value per location", - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "title": "Injection volume (nL)", - "type": "array" - }, - "injection_volume_unit": { - "$ref": "#/$defs/VolumeUnit", - "default": "nanoliter", - "title": "Injection volume unit" - } - }, - "required": [ - "injection_materials", - "protocol_id", - "injection_coordinate_ml", - "injection_coordinate_ap", - "injection_coordinate_depth", - "injection_angle", - "injection_volume" - ], - "title": "IntraCerebellarVentricleInjection", - "type": "object" - }, - "IntraCisternalMagnaInjection": { - "additionalProperties": false, - "description": "Description of an interacisternal magna injection", - "properties": { - "injection_materials": { - "items": { - "discriminator": { - "mapping": { - "Reagent": "#/$defs/NonViralMaterial", - "Virus": "#/$defs/ViralMaterial" - }, - "propertyName": "material_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/ViralMaterial" - }, - { - "$ref": "#/$defs/NonViralMaterial" - } - ] - }, - "minItems": 1, - "title": "Injection material", - "type": "array" - }, - "recovery_time": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Recovery time" - }, - "recovery_time_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Recovery time unit" - }, - "injection_duration": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Injection duration" - }, - "injection_duration_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Injection duration unit" - }, - "instrument_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Instrument ID" - }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", - "type": "string" - }, - "injection_coordinate_ml": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Injection coordinate ML (mm)" - }, - "injection_coordinate_ap": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Injection coordinate AP (mm)" - }, - "injection_coordinate_depth": { - "items": { - "anyOf": [ - { - "type": "number" + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" }, - { - "type": "string" - } - ] - }, - "title": "Injection coordinate depth (mm)", - "type": "array" - }, - "injection_coordinate_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Injection coordinate unit" - }, - "injection_coordinate_reference": { - "anyOf": [ - { - "$ref": "#/$defs/CoordinateReferenceLocation" - }, - { - "type": "null" - } + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection targeted brain structure" + }, + "injection_hemisphere": { + "anyOf": [ + { + "$ref": "#/$defs/Side" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection hemisphere" + }, + "procedure_type": { + "const": "ICV injection", + "default": "ICV injection", + "title": "Procedure Type", + "type": "string" + }, + "injection_volume": { + "description": "Injection volume, one value per location", + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "title": "Injection volume (nL)", + "type": "array" + }, + "injection_volume_unit": { + "$ref": "#/$defs/VolumeUnit", + "default": "nanoliter", + "title": "Injection volume unit" + } + }, + "required": [ + "injection_materials", + "protocol_id", + "injection_coordinate_ml", + "injection_coordinate_ap", + "injection_coordinate_depth", + "injection_angle", + "injection_volume" + ], + "title": "IntraCerebellarVentricleInjection", + "type": "object" + }, + "IntraCisternalMagnaInjection": { + "additionalProperties": false, + "description": "Description of an interacisternal magna injection", + "properties": { + "injection_materials": { + "items": { + "discriminator": { + "mapping": { + "Reagent": "#/$defs/NonViralMaterial", + "Virus": "#/$defs/ViralMaterial" + }, + "propertyName": "material_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/ViralMaterial" + }, + { + "$ref": "#/$defs/NonViralMaterial" + } + ] + }, + "minItems": 1, + "title": "Injection material", + "type": "array" + }, + "recovery_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Recovery time" + }, + "recovery_time_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Recovery time unit" + }, + "injection_duration": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection duration" + }, + "injection_duration_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Injection duration unit" + }, + "instrument_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instrument ID" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "injection_coordinate_ml": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection coordinate ML (mm)" + }, + "injection_coordinate_ap": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection coordinate AP (mm)" + }, + "injection_coordinate_depth": { + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "title": "Injection coordinate depth (mm)", + "type": "array" + }, + "injection_coordinate_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Injection coordinate unit" + }, + "injection_coordinate_reference": { + "anyOf": [ + { + "$ref": "#/$defs/CoordinateReferenceLocation" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection coordinate reference" + }, + "bregma_to_lambda_distance": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Distance between bregman and lambda", + "title": "Bregma to lambda (mm)" + }, + "bregma_to_lambda_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Bregma to lambda unit" + }, + "injection_angle": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection angle (deg)" + }, + "injection_angle_unit": { + "$ref": "#/$defs/AngleUnit", + "default": "degrees", + "title": "Injection angle unit" + }, + "targeted_structure": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection targeted brain structure" + }, + "injection_hemisphere": { + "anyOf": [ + { + "$ref": "#/$defs/Side" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection hemisphere" + }, + "procedure_type": { + "const": "ICM injection", + "default": "ICM injection", + "title": "Procedure Type", + "type": "string" + }, + "injection_volume": { + "description": "Injection volume, one value per location", + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "title": "Injection volume (nL)", + "type": "array" + }, + "injection_volume_unit": { + "$ref": "#/$defs/VolumeUnit", + "default": "nanoliter", + "title": "Injection volume unit" + } + }, + "required": [ + "injection_materials", + "protocol_id", + "injection_coordinate_ml", + "injection_coordinate_ap", + "injection_coordinate_depth", + "injection_angle", + "injection_volume" + ], + "title": "IntraCisternalMagnaInjection", + "type": "object" + }, + "IntraperitonealInjection": { + "additionalProperties": false, + "description": "Description of an intraperitoneal injection procedure", + "properties": { + "injection_materials": { + "items": { + "discriminator": { + "mapping": { + "Reagent": "#/$defs/NonViralMaterial", + "Virus": "#/$defs/ViralMaterial" + }, + "propertyName": "material_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/ViralMaterial" + }, + { + "$ref": "#/$defs/NonViralMaterial" + } + ] + }, + "minItems": 1, + "title": "Injection material", + "type": "array" + }, + "recovery_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Recovery time" + }, + "recovery_time_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Recovery time unit" + }, + "injection_duration": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection duration" + }, + "injection_duration_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Injection duration unit" + }, + "instrument_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instrument ID" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "procedure_type": { + "const": "Intraperitoneal injection", + "default": "Intraperitoneal injection", + "title": "Procedure Type", + "type": "string" + }, + "injection_volume": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection volume (uL)" + }, + "injection_volume_unit": { + "$ref": "#/$defs/VolumeUnit", + "default": "microliter", + "title": "Injection volume unit" + } + }, + "required": [ + "injection_materials", + "protocol_id", + "injection_volume" + ], + "title": "IntraperitonealInjection", + "type": "object" + }, + "IontophoresisInjection": { + "additionalProperties": false, + "description": "Description of an iotophoresis injection procedure", + "properties": { + "injection_materials": { + "items": { + "discriminator": { + "mapping": { + "Reagent": "#/$defs/NonViralMaterial", + "Virus": "#/$defs/ViralMaterial" + }, + "propertyName": "material_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/ViralMaterial" + }, + { + "$ref": "#/$defs/NonViralMaterial" + } + ] + }, + "minItems": 1, + "title": "Injection material", + "type": "array" + }, + "recovery_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Recovery time" + }, + "recovery_time_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Recovery time unit" + }, + "injection_duration": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection duration" + }, + "injection_duration_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Injection duration unit" + }, + "instrument_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instrument ID" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "injection_coordinate_ml": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection coordinate ML (mm)" + }, + "injection_coordinate_ap": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection coordinate AP (mm)" + }, + "injection_coordinate_depth": { + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "title": "Injection coordinate depth (mm)", + "type": "array" + }, + "injection_coordinate_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Injection coordinate unit" + }, + "injection_coordinate_reference": { + "anyOf": [ + { + "$ref": "#/$defs/CoordinateReferenceLocation" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection coordinate reference" + }, + "bregma_to_lambda_distance": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Distance between bregman and lambda", + "title": "Bregma to lambda (mm)" + }, + "bregma_to_lambda_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Bregma to lambda unit" + }, + "injection_angle": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection angle (deg)" + }, + "injection_angle_unit": { + "$ref": "#/$defs/AngleUnit", + "default": "degrees", + "title": "Injection angle unit" + }, + "targeted_structure": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection targeted brain structure" + }, + "injection_hemisphere": { + "anyOf": [ + { + "$ref": "#/$defs/Side" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection hemisphere" + }, + "procedure_type": { + "const": "Iontophoresis injection", + "default": "Iontophoresis injection", + "title": "Procedure Type", + "type": "string" + }, + "injection_current": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection current (uA)" + }, + "injection_current_unit": { + "$ref": "#/$defs/CurrentUnit", + "default": "microamps", + "title": "Injection current unit" + }, + "alternating_current": { + "title": "Alternating current", + "type": "string" + } + }, + "required": [ + "injection_materials", + "protocol_id", + "injection_coordinate_ml", + "injection_coordinate_ap", + "injection_coordinate_depth", + "injection_angle", + "injection_current", + "alternating_current" + ], + "title": "IontophoresisInjection", + "type": "object" + }, + "MassUnit": { + "description": "Enumeration of Mass Measurements", + "enum": [ + "kilogram", + "gram", + "milligram", + "microgram", + "nanogram" + ], + "title": "MassUnit", + "type": "string" + }, + "MyomatrixArray": { + "additionalProperties": false, + "description": "Description of a Myomatrix array", + "properties": { + "device_type": { + "const": "Myomatrix Array", + "default": "Myomatrix Array", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } ], "default": null, - "title": "Injection coordinate reference" + "title": "Manufacturer" }, - "bregma_to_lambda_distance": { + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { "anyOf": [ { - "type": "number" + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "array_type": { + "$ref": "#/$defs/MyomatrixArrayType", + "title": "Array type" + } + }, + "required": [ + "name", + "array_type" + ], + "title": "MyomatrixArray", + "type": "object" + }, + "MyomatrixArrayType": { + "description": "Type of Myomatrix array", + "enum": [ + "Injected", + "Sutured" + ], + "title": "MyomatrixArrayType", + "type": "string" + }, + "MyomatrixContact": { + "additionalProperties": false, + "description": "\"Description of a contact on a myomatrix thread", + "properties": { + "body_part": { + "discriminator": { + "mapping": { + "EMAPA_16748": "#/$defs/_Tail", + "EMAPA_17412": "#/$defs/_Forelimb", + "EMAPA_17458": "#/$defs/_Hindlimb", + "EMAPA_31857": "#/$defs/_Trunk", + "EMAPA_31858": "#/$defs/_Head", + "EMAPA_35587": "#/$defs/_Neck" + }, + "propertyName": "registry_identifier" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Forelimb" + }, + { + "$ref": "#/$defs/_Head" + }, + { + "$ref": "#/$defs/_Hindlimb" + }, + { + "$ref": "#/$defs/_Neck" + }, + { + "$ref": "#/$defs/_Tail" + }, + { + "$ref": "#/$defs/_Trunk" + } + ], + "title": "Body part of contact insertion" + }, + "side": { + "$ref": "#/$defs/Side", + "title": "Body side" + }, + "muscle": { + "discriminator": { + "mapping": { + "EMAPA_18177": "#/$defs/_Deltoid", + "EMAPA_18179": "#/$defs/_Pectoralis_Major", + "EMAPA_19108": "#/$defs/_Biceps_Brachii", + "EMAPA_19111": "#/$defs/_Triceps_Brachii", + "EMAPA_19319": "#/$defs/_Flexor_Digitorum_Profundus", + "EMAPA_25053": "#/$defs/_Tendon_Of_Biceps_Brachii", + "EMAPA_25054": "#/$defs/_Long_Head_Of_Biceps_Brachii", + "EMAPA_25055": "#/$defs/_Short_Head_Of_Biceps_Brachii", + "EMAPA_36163": "#/$defs/_Pars_Scapularis_Of_Deltoid", + "EMAPA_36184": "#/$defs/_Lateral_Head_Of_Triceps_Brachii", + "EMAPA_36185": "#/$defs/_Long_Head_Of_Triceps_Brachii", + "EMAPA_36186": "#/$defs/_Medial_Head_Of_Triceps_Brachii", + "EMAPA_36189": "#/$defs/_Extensor_Carpi_Radialis_Longus", + "EMAPA_36190": "#/$defs/_Extensor_Carpi_Ulnaris", + "EMAPA_36191": "#/$defs/_Extensor_Digitorum_Communis", + "EMAPA_36192": "#/$defs/_Extensor_Digitorum_Lateralis", + "EMAPA_36197": "#/$defs/_Flexor_Carpi_Radialis", + "EMAPA_36198": "#/$defs/_Flexor_Carpi_Ulnaris" + }, + "propertyName": "registry_identifier" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Deltoid" }, { - "type": "string" + "$ref": "#/$defs/_Pectoralis_Major" }, { - "type": "null" - } - ], - "default": null, - "description": "Distance between bregman and lambda", - "title": "Bregma to lambda (mm)" - }, - "bregma_to_lambda_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Bregma to lambda unit" - }, - "injection_angle": { - "anyOf": [ + "$ref": "#/$defs/_Triceps_Brachii" + }, { - "type": "number" + "$ref": "#/$defs/_Lateral_Head_Of_Triceps_Brachii" }, { - "type": "string" - } - ], - "title": "Injection angle (deg)" - }, - "injection_angle_unit": { - "$ref": "#/$defs/AngleUnit", - "default": "degrees", - "title": "Injection angle unit" - }, - "targeted_structure": { - "anyOf": [ + "$ref": "#/$defs/_Long_Head_Of_Triceps_Brachii" + }, { - "type": "string" + "$ref": "#/$defs/_Medial_Head_Of_Triceps_Brachii" }, { - "type": "null" + "$ref": "#/$defs/_Biceps_Brachii" + }, + { + "$ref": "#/$defs/_Long_Head_Of_Biceps_Brachii" + }, + { + "$ref": "#/$defs/_Short_Head_Of_Biceps_Brachii" + }, + { + "$ref": "#/$defs/_Tendon_Of_Biceps_Brachii" + }, + { + "$ref": "#/$defs/_Pars_Scapularis_Of_Deltoid" + }, + { + "$ref": "#/$defs/_Extensor_Carpi_Radialis_Longus" + }, + { + "$ref": "#/$defs/_Extensor_Digitorum_Communis" + }, + { + "$ref": "#/$defs/_Extensor_Digitorum_Lateralis" + }, + { + "$ref": "#/$defs/_Extensor_Carpi_Ulnaris" + }, + { + "$ref": "#/$defs/_Flexor_Carpi_Radialis" + }, + { + "$ref": "#/$defs/_Flexor_Carpi_Ulnaris" + }, + { + "$ref": "#/$defs/_Flexor_Digitorum_Profundus" } ], - "default": null, - "title": "Injection targeted brain structure" + "title": "Muscle of contact insertion" }, - "injection_hemisphere": { + "in_muscle": { + "title": "In muscle", + "type": "boolean" + }, + "notes": { "anyOf": [ { - "$ref": "#/$defs/Side" + "type": "string" }, { "type": "null" } ], "default": null, - "title": "Injection hemisphere" - }, + "title": "Notes" + } + }, + "required": [ + "body_part", + "side", + "muscle", + "in_muscle" + ], + "title": "MyomatrixContact", + "type": "object" + }, + "MyomatrixInsertion": { + "additionalProperties": false, + "description": "Description of a Myomatrix array insertion for EMG", + "properties": { "procedure_type": { - "const": "ICM injection", - "default": "ICM injection", - "enum": [ - "ICM injection" - ], + "const": "Myomatrix_Insertion", + "default": "Myomatrix_Insertion", "title": "Procedure Type", "type": "string" }, - "injection_volume": { - "description": "Injection volume, one value per location", + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "myomatrix_array": { + "$ref": "#/$defs/MyomatrixArray", + "title": "Myomatrix array" + }, + "threads": { "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] + "$ref": "#/$defs/MyomatrixThread" }, - "title": "Injection volume (nL)", + "title": "Array threads", "type": "array" - }, - "injection_volume_unit": { - "$ref": "#/$defs/VolumeUnit", - "default": "nanoliter", - "title": "Injection volume unit" } }, "required": [ - "injection_materials", "protocol_id", - "injection_coordinate_ml", - "injection_coordinate_ap", - "injection_coordinate_depth", - "injection_angle", - "injection_volume" + "myomatrix_array", + "threads" ], - "title": "IntraCisternalMagnaInjection", + "title": "MyomatrixInsertion", "type": "object" }, - "IntraperitonealInjection": { + "MyomatrixThread": { "additionalProperties": false, - "description": "Description of an intraperitoneal injection procedure", + "description": "Description of a thread of a myomatrix array", "properties": { - "injection_materials": { - "items": { - "discriminator": { - "mapping": { - "Reagent": "#/$defs/NonViralMaterial", - "Virus": "#/$defs/ViralMaterial" - }, - "propertyName": "material_type" + "ground_electrode_location": { + "discriminator": { + "mapping": { + "EMAPA_16748": "#/$defs/_Tail", + "EMAPA_17412": "#/$defs/_Forelimb", + "EMAPA_17458": "#/$defs/_Hindlimb", + "EMAPA_31857": "#/$defs/_Trunk", + "EMAPA_31858": "#/$defs/_Head", + "EMAPA_35587": "#/$defs/_Neck" }, - "oneOf": [ - { - "$ref": "#/$defs/ViralMaterial" - }, - { - "$ref": "#/$defs/NonViralMaterial" - } - ] + "propertyName": "registry_identifier" }, - "minItems": 1, - "title": "Injection material", - "type": "array" - }, - "recovery_time": { - "anyOf": [ - { - "type": "number" - }, + "oneOf": [ { - "type": "string" + "$ref": "#/$defs/_Forelimb" }, { - "type": "null" - } - ], - "default": null, - "title": "Recovery time" - }, - "recovery_time_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Recovery time unit" - }, - "injection_duration": { - "anyOf": [ - { - "type": "number" + "$ref": "#/$defs/_Head" }, { - "type": "string" + "$ref": "#/$defs/_Hindlimb" }, { - "type": "null" - } - ], - "default": null, - "title": "Injection duration" - }, - "injection_duration_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Injection duration unit" - }, - "instrument_id": { - "anyOf": [ - { - "type": "string" + "$ref": "#/$defs/_Neck" }, { - "type": "null" - } - ], - "default": null, - "title": "Instrument ID" - }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", - "type": "string" - }, - "procedure_type": { - "const": "Intraperitoneal injection", - "default": "Intraperitoneal injection", - "enum": [ - "Intraperitoneal injection" - ], - "title": "Procedure Type", - "type": "string" - }, - "injection_volume": { - "anyOf": [ - { - "type": "number" + "$ref": "#/$defs/_Tail" }, { - "type": "string" + "$ref": "#/$defs/_Trunk" } ], - "title": "Injection volume (uL)" + "title": "Location of ground electrode" }, - "injection_volume_unit": { - "$ref": "#/$defs/VolumeUnit", - "default": "microliter", - "title": "Injection volume unit" + "contacts": { + "items": { + "$ref": "#/$defs/MyomatrixContact" + }, + "title": "Contacts", + "type": "array" } }, "required": [ - "injection_materials", - "protocol_id", - "injection_volume" + "ground_electrode_location", + "contacts" ], - "title": "IntraperitonealInjection", + "title": "MyomatrixThread", "type": "object" }, - "IontophoresisInjection": { + "NanojectInjection": { "additionalProperties": false, - "description": "Description of an iotophoresis injection procedure", + "description": "Description of a nanoject injection procedure", "properties": { "injection_materials": { "items": { @@ -3188,4834 +14366,40884 @@ "title": "Injection angle unit" }, "targeted_structure": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Injection targeted brain structure" - }, - "injection_hemisphere": { - "anyOf": [ - { - "$ref": "#/$defs/Side" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Injection hemisphere" - }, - "procedure_type": { - "const": "Iontophoresis injection", - "default": "Iontophoresis injection", - "enum": [ - "Iontophoresis injection" - ], - "title": "Procedure Type", - "type": "string" - }, - "injection_current": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Injection current (uA)" - }, - "injection_current_unit": { - "$ref": "#/$defs/CurrentUnit", - "default": "microamps", - "title": "Injection current unit" - }, - "alternating_current": { - "title": "Alternating current", - "type": "string" - } - }, - "required": [ - "injection_materials", - "protocol_id", - "injection_coordinate_ml", - "injection_coordinate_ap", - "injection_coordinate_depth", - "injection_angle", - "injection_current", - "alternating_current" - ], - "title": "IontophoresisInjection", - "type": "object" - }, - "MassUnit": { - "description": "Enumeration of Mass Measurements", - "enum": [ - "kilogram", - "gram", - "milligram", - "microgram", - "nanogram" - ], - "title": "MassUnit", - "type": "string" - }, - "MyomatrixArray": { - "additionalProperties": false, - "description": "Description of a Myomatrix array", - "properties": { - "device_type": { - "const": "Myomatrix Array", - "default": "Myomatrix Array", - "enum": [ - "Myomatrix Array" - ], - "title": "Device Type", - "type": "string" - }, - "name": { - "title": "Device name", - "type": "string" - }, - "serial_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Serial number" - }, - "manufacturer": { "anyOf": [ { "discriminator": { "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" }, - "propertyName": "name" - }, - "oneOf": [ { - "$ref": "#/$defs/_Aa_Opto_Electronic" + "$ref": "#/$defs/_Tea1" }, { - "$ref": "#/$defs/_Asus" + "$ref": "#/$defs/_Tea2_3" }, { - "$ref": "#/$defs/_Abcam" + "$ref": "#/$defs/_Tea4" }, { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + "$ref": "#/$defs/_Tea5" }, { - "$ref": "#/$defs/_Ailipu_Technology_Co" + "$ref": "#/$defs/_Tea6A" }, { - "$ref": "#/$defs/_Allen_Institute" + "$ref": "#/$defs/_Tea6B" }, { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + "$ref": "#/$defs/_Th" }, { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + "$ref": "#/$defs/_Dorpm" }, { - "$ref": "#/$defs/_Allied" + "$ref": "#/$defs/_Dorsm" }, { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + "$ref": "#/$defs/_Trs" }, { - "$ref": "#/$defs/_Arecont_Vision_Costar" + "$ref": "#/$defs/_Iv" }, { - "$ref": "#/$defs/_Basler" + "$ref": "#/$defs/_Tu" }, { - "$ref": "#/$defs/_Cambridge_Technology" + "$ref": "#/$defs/_Tm" }, { - "$ref": "#/$defs/_Carl_Zeiss" + "$ref": "#/$defs/_Tmd" }, { - "$ref": "#/$defs/_Champalimaud_Foundation" + "$ref": "#/$defs/_Tmv" }, { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + "$ref": "#/$defs/_Uvu" }, { - "$ref": "#/$defs/_Chroma" + "$ref": "#/$defs/_Ov" }, { - "$ref": "#/$defs/_Coherent_Scientific" + "$ref": "#/$defs/_Val" }, { - "$ref": "#/$defs/_Columbia_University" + "$ref": "#/$defs/_Audv" }, { - "$ref": "#/$defs/_Computar" + "$ref": "#/$defs/_Audv1" }, { - "$ref": "#/$defs/_Conoptics" + "$ref": "#/$defs/_Audv2_3" }, { - "$ref": "#/$defs/_Custom" + "$ref": "#/$defs/_Audv4" }, { - "$ref": "#/$defs/_Dodotronic" + "$ref": "#/$defs/_Audv5" }, { - "$ref": "#/$defs/_Doric" + "$ref": "#/$defs/_Audv6A" }, { - "$ref": "#/$defs/_Ealing" + "$ref": "#/$defs/_Audv6B" }, { - "$ref": "#/$defs/_Edmund_Optics" + "$ref": "#/$defs/_Vco" }, { - "$ref": "#/$defs/_Emory_University" + "$ref": "#/$defs/_Vent" }, { - "$ref": "#/$defs/_Euresys" + "$ref": "#/$defs/_Vm" }, { - "$ref": "#/$defs/_Fujinon" + "$ref": "#/$defs/_Lgv" }, { - "$ref": "#/$defs/_Hamamatsu" + "$ref": "#/$defs/_Vp" }, { - "$ref": "#/$defs/_Hamilton" + "$ref": "#/$defs/_Vpl" }, { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + "$ref": "#/$defs/_Vplpc" }, { - "$ref": "#/$defs/_Ir_Robot_Co" + "$ref": "#/$defs/_Vpm" }, { - "$ref": "#/$defs/_Isl_Products_International" + "$ref": "#/$defs/_Vpmpc" }, { - "$ref": "#/$defs/_Infinity_Photo_Optical" + "$ref": "#/$defs/_Pmv" }, { - "$ref": "#/$defs/_Integrated_Dna_Technologies" + "$ref": "#/$defs/_Vta" }, { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + "$ref": "#/$defs/_Vtn" }, { - "$ref": "#/$defs/_Invitrogen" + "$ref": "#/$defs/_Vlpo" }, { - "$ref": "#/$defs/_Jackson_Laboratory" + "$ref": "#/$defs/_Vmh" }, { - "$ref": "#/$defs/_Janelia_Research_Campus" + "$ref": "#/$defs/_Vmpo" }, { - "$ref": "#/$defs/_Julabo" + "$ref": "#/$defs/_Verm" }, { - "$ref": "#/$defs/_Lg" + "$ref": "#/$defs/_Vnc" }, { - "$ref": "#/$defs/_Leica" + "$ref": "#/$defs/_Vecb" }, { - "$ref": "#/$defs/_Lumen_Dynamics" + "$ref": "#/$defs/_Visc" }, { - "$ref": "#/$defs/_Lifecanvas" + "$ref": "#/$defs/_Visc1" }, { - "$ref": "#/$defs/_Mbf_Bioscience" + "$ref": "#/$defs/_Visc2_3" }, { - "$ref": "#/$defs/_Mks_Newport" + "$ref": "#/$defs/_Visc4" }, { - "$ref": "#/$defs/_Mpi" + "$ref": "#/$defs/_Visc5" }, { - "$ref": "#/$defs/_Meadowlark_Optics" + "$ref": "#/$defs/_Visc6A" }, { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + "$ref": "#/$defs/_Visc6B" }, { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + "$ref": "#/$defs/_Vis" }, { - "$ref": "#/$defs/_Mitutuyo" + "$ref": "#/$defs/_Xi" }, { - "$ref": "#/$defs/_Nresearch_Inc" + "$ref": "#/$defs/_Zi" }, { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + "$ref": "#/$defs/_Alv" }, { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + "$ref": "#/$defs/_Amc" }, { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + "$ref": "#/$defs/_Aco" }, { - "$ref": "#/$defs/_National_Instruments" + "$ref": "#/$defs/_Act" }, { - "$ref": "#/$defs/_Navitar" + "$ref": "#/$defs/_Arb" }, { - "$ref": "#/$defs/_Neurophotometrics" + "$ref": "#/$defs/_Ar" }, { - "$ref": "#/$defs/_New_Scale_Technologies" + "$ref": "#/$defs/_Bic" }, { - "$ref": "#/$defs/_New_York_University" + "$ref": "#/$defs/_Bsc" }, { - "$ref": "#/$defs/_Nikon" + "$ref": "#/$defs/_C" }, { - "$ref": "#/$defs/_Olympus" + "$ref": "#/$defs/_Cpd" }, { - "$ref": "#/$defs/_Open_Ephys_Production_Site" + "$ref": "#/$defs/_Cbc" }, { - "$ref": "#/$defs/_Optotune" + "$ref": "#/$defs/_Cbp" }, { - "$ref": "#/$defs/_Other" + "$ref": "#/$defs/_Cbf" }, { - "$ref": "#/$defs/_Oxxius" + "$ref": "#/$defs/_Aq" }, { - "$ref": "#/$defs/_Prizmatix" + "$ref": "#/$defs/_Epsc" }, { - "$ref": "#/$defs/_Quantifi" + "$ref": "#/$defs/_Mfbc" }, { - "$ref": "#/$defs/_Raspberry_Pi" + "$ref": "#/$defs/_Cett" }, { - "$ref": "#/$defs/_Sicgen" + "$ref": "#/$defs/_Chpl" }, { - "$ref": "#/$defs/_Schneider_Kreuznach" + "$ref": "#/$defs/_Cing" }, { - "$ref": "#/$defs/_Second_Order_Effects" + "$ref": "#/$defs/_Cviiin" }, { - "$ref": "#/$defs/_Semrock" + "$ref": "#/$defs/_Fx" }, { - "$ref": "#/$defs/_Sigma_Aldrich" + "$ref": "#/$defs/_Stc" }, { - "$ref": "#/$defs/_Simons_Foundation" + "$ref": "#/$defs/_Cc" }, { - "$ref": "#/$defs/_Spinnaker" + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" }, { - "$ref": "#/$defs/_Tamron" + "$ref": "#/$defs/_Tb" }, { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + "$ref": "#/$defs/_Vn" }, { - "$ref": "#/$defs/_Teledyne_Flir" + "$ref": "#/$defs/_Ivn" }, { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + "$ref": "#/$defs/_Uf" }, { - "$ref": "#/$defs/_The_Imaging_Source" + "$ref": "#/$defs/_Xn" }, { - "$ref": "#/$defs/_The_Lee_Company" + "$ref": "#/$defs/_Vhc" }, { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" + "$ref": "#/$defs/_Sctv" }, { - "$ref": "#/$defs/_Thorlabs" + "$ref": "#/$defs/_Vtd" }, { - "$ref": "#/$defs/_Tymphany" + "$ref": "#/$defs/_Vs" }, { - "$ref": "#/$defs/_Vieworks" + "$ref": "#/$defs/_Vviiin" }, { - "$ref": "#/$defs/_Vortran" + "$ref": "#/$defs/_Viiin" }, { - "$ref": "#/$defs/_Ams_Osram" + "$ref": "#/$defs/_Von" } ] }, { - "type": "null" + "type": "null" + } + ], + "default": null, + "title": "Injection targeted brain structure" + }, + "injection_hemisphere": { + "anyOf": [ + { + "$ref": "#/$defs/Side" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection hemisphere" + }, + "procedure_type": { + "const": "Nanoject injection", + "default": "Nanoject injection", + "title": "Procedure Type", + "type": "string" + }, + "injection_volume": { + "description": "Injection volume, one value per location", + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "title": "Injection volume (nL)", + "type": "array" + }, + "injection_volume_unit": { + "$ref": "#/$defs/VolumeUnit", + "default": "nanoliter", + "title": "Injection volume unit" + } + }, + "required": [ + "injection_materials", + "protocol_id", + "injection_coordinate_ml", + "injection_coordinate_ap", + "injection_coordinate_depth", + "injection_angle", + "injection_volume" + ], + "title": "NanojectInjection", + "type": "object" + }, + "NonViralMaterial": { + "additionalProperties": false, + "description": "Description of a non-viral injection material", + "properties": { + "name": { + "title": "Name", + "type": "string" + }, + "source": { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ], + "title": "Source" + }, + "rrid": { + "anyOf": [ + { + "$ref": "#/$defs/PIDName" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Research Resource ID" + }, + "lot_number": { + "title": "Lot number", + "type": "string" + }, + "expiration_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lot expiration date" + }, + "material_type": { + "const": "Reagent", + "default": "Reagent", + "title": "Injection material type", + "type": "string" + }, + "concentration": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Must provide concentration unit", + "title": "Concentration" + }, + "concentration_unit": { + "default": "mg/mL", + "title": "Concentration unit", + "type": "string" + } + }, + "required": [ + "name", + "source", + "lot_number" + ], + "title": "NonViralMaterial", + "type": "object" + }, + "OligoProbe": { + "additionalProperties": false, + "description": "Description of an oligonucleotide probe", + "properties": { + "name": { + "title": "Name", + "type": "string" + }, + "source": { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ], + "title": "Source" + }, + "rrid": { + "anyOf": [ + { + "$ref": "#/$defs/PIDName" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Research Resource ID" + }, + "lot_number": { + "title": "Lot number", + "type": "string" + }, + "expiration_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lot expiration date" + }, + "species": { + "discriminator": { + "mapping": { + "Callithrix jacchus": "#/$defs/_Callithrix_Jacchus", + "Homo sapiens": "#/$defs/_Homo_Sapiens", + "Macaca mulatta": "#/$defs/_Macaca_Mulatta", + "Mus musculus": "#/$defs/_Mus_Musculus", + "Rattus norvegicus": "#/$defs/_Rattus_Norvegicus" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Callithrix_Jacchus" + }, + { + "$ref": "#/$defs/_Homo_Sapiens" + }, + { + "$ref": "#/$defs/_Macaca_Mulatta" + }, + { + "$ref": "#/$defs/_Mus_Musculus" + }, + { + "$ref": "#/$defs/_Rattus_Norvegicus" + } + ], + "title": "Species" + }, + "gene": { + "$ref": "#/$defs/PIDName", + "title": "Gene name, accession number, and registry" + }, + "probe_sequences": { + "items": { + "type": "string" + }, + "title": "Probe sequences", + "type": "array" + }, + "readout": { + "$ref": "#/$defs/Readout" + } + }, + "required": [ + "name", + "source", + "lot_number", + "species", + "gene", + "probe_sequences", + "readout" + ], + "title": "OligoProbe", + "type": "object" + }, + "OphysProbe": { + "additionalProperties": false, + "description": "Description of an implanted ophys probe", + "properties": { + "ophys_probe": { + "$ref": "#/$defs/FiberProbe", + "title": "Fiber probe" + }, + "targeted_structure": { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ], + "title": "Targeted structure" + }, + "stereotactic_coordinate_ap": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Stereotactic coordinate A/P (mm)" + }, + "stereotactic_coordinate_ml": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Stereotactic coordinate M/L (mm)" + }, + "stereotactic_coordinate_dv": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Stereotactic coordinate D/V (mm)" + }, + "stereotactic_coordinate_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Sterotactic coordinate unit" + }, + "stereotactic_coordinate_reference": { + "anyOf": [ + { + "$ref": "#/$defs/CoordinateReferenceLocation" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Stereotactic coordinate reference" + }, + "bregma_to_lambda_distance": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Distance between bregman and lambda", + "title": "Bregma to lambda (mm)" + }, + "bregma_to_lambda_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Bregma to lambda unit" + }, + "angle": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Angle (deg)" + }, + "angle_unit": { + "$ref": "#/$defs/AngleUnit", + "default": "degrees", + "title": "Angle unit" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "ophys_probe", + "targeted_structure", + "stereotactic_coordinate_ap", + "stereotactic_coordinate_ml", + "stereotactic_coordinate_dv", + "angle" + ], + "title": "OphysProbe", + "type": "object" + }, + "OtherSubjectProcedure": { + "additionalProperties": false, + "description": "Description of non-surgical procedure performed on a subject", + "properties": { + "procedure_type": { + "const": "Other Subject Procedure", + "default": "Other Subject Procedure", + "title": "Procedure Type", + "type": "string" + }, + "protocol_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "DOI for protocols.io", + "title": "Protocol ID" + }, + "description": { + "title": "Description", + "type": "string" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "description" + ], + "title": "OtherSubjectProcedure", + "type": "object" + }, + "PIDName": { + "additionalProperties": false, + "description": "Model for associate a name with a persistent identifier (PID),\nthe registry for that PID, and abbreviation for that registry", + "properties": { + "name": { + "title": "Name", + "type": "string" + }, + "abbreviation": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Abbreviation" + }, + "registry": { + "anyOf": [ + { + "$ref": "#/$defs/BaseName" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Registry" + }, + "registry_identifier": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Registry identifier" + } + }, + "required": [ + "name" + ], + "title": "PIDName", + "type": "object" + }, + "Perfusion": { + "additionalProperties": false, + "description": "Description of a perfusion procedure that creates a specimen", + "properties": { + "procedure_type": { + "const": "Perfusion", + "default": "Perfusion", + "title": "Procedure Type", + "type": "string" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "output_specimen_ids": { + "description": "IDs of specimens resulting from this procedure.", + "items": { + "type": "string" + }, + "title": "Specimen ID", + "type": "array", + "uniqueItems": true + } + }, + "required": [ + "protocol_id", + "output_specimen_ids" + ], + "title": "Perfusion", + "type": "object" + }, + "ProtectiveMaterial": { + "description": "Name of material applied to craniotomy", + "enum": [ + "Agarose", + "Duragel", + "Kwik-Cast", + "SORTA-clear", + "Other - see notes" + ], + "title": "ProtectiveMaterial", + "type": "string" + }, + "ProtectiveMaterialReplacement": { + "additionalProperties": false, + "description": "Description of a protective material replacement procedure in preparation for ephys recording", + "properties": { + "procedure_type": { + "const": "Ground wire", + "default": "Ground wire", + "title": "Procedure Type", + "type": "string" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "protective_material": { + "$ref": "#/$defs/ProtectiveMaterial", + "description": "New material being applied", + "title": "Protective material" + }, + "ground_wire_hole": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Ground wire hole" + }, + "ground_wire_material": { + "anyOf": [ + { + "$ref": "#/$defs/GroundWireMaterial" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Ground wire material" + }, + "ground_wire_diameter": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Ground wire diameter" + }, + "ground_wire_diameter_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "inch", + "title": "Ground wire diameter unit" + }, + "well_part_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Well part number" + }, + "well_type": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Well type" + } + }, + "required": [ + "protocol_id", + "protective_material" + ], + "title": "ProtectiveMaterialReplacement", + "type": "object" + }, + "Readout": { + "additionalProperties": false, + "description": "Description of a readout", + "properties": { + "name": { + "title": "Name", + "type": "string" + }, + "source": { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ], + "title": "Source" + }, + "rrid": { + "anyOf": [ + { + "$ref": "#/$defs/PIDName" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Research Resource ID" + }, + "lot_number": { + "title": "Lot number", + "type": "string" + }, + "expiration_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lot expiration date" + }, + "fluorophore": { + "$ref": "#/$defs/Fluorophore" + }, + "excitation_wavelength": { + "title": "Excitation wavelength (nm)", + "type": "integer" + }, + "excitation_wavelength_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "nanometer", + "title": "Excitation wavelength unit" + }, + "stain_type": { + "$ref": "#/$defs/StainType", + "title": "Stain type" + } + }, + "required": [ + "name", + "source", + "lot_number", + "fluorophore", + "excitation_wavelength", + "stain_type" + ], + "title": "Readout", + "type": "object" + }, + "Reagent": { + "additionalProperties": false, + "description": "Description of reagent used in procedure", + "properties": { + "name": { + "title": "Name", + "type": "string" + }, + "source": { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ], + "title": "Source" + }, + "rrid": { + "anyOf": [ + { + "$ref": "#/$defs/PIDName" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Research Resource ID" + }, + "lot_number": { + "title": "Lot number", + "type": "string" + }, + "expiration_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lot expiration date" + } + }, + "required": [ + "name", + "source", + "lot_number" + ], + "title": "Reagent", + "type": "object" + }, + "RetroOrbitalInjection": { + "additionalProperties": false, + "description": "Description of a retro-orbital injection procedure", + "properties": { + "injection_materials": { + "items": { + "discriminator": { + "mapping": { + "Reagent": "#/$defs/NonViralMaterial", + "Virus": "#/$defs/ViralMaterial" + }, + "propertyName": "material_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/ViralMaterial" + }, + { + "$ref": "#/$defs/NonViralMaterial" + } + ] + }, + "minItems": 1, + "title": "Injection material", + "type": "array" + }, + "recovery_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Recovery time" + }, + "recovery_time_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Recovery time unit" + }, + "injection_duration": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Injection duration" + }, + "injection_duration_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "minute", + "title": "Injection duration unit" + }, + "instrument_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Instrument ID" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "procedure_type": { + "const": "Retro-orbital injection", + "default": "Retro-orbital injection", + "title": "Procedure Type", + "type": "string" + }, + "injection_volume": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Injection volume (uL)" + }, + "injection_volume_unit": { + "$ref": "#/$defs/VolumeUnit", + "default": "microliter", + "title": "Injection volume unit" + }, + "injection_eye": { + "$ref": "#/$defs/Side", + "title": "Injection eye" + } + }, + "required": [ + "injection_materials", + "protocol_id", + "injection_volume", + "injection_eye" + ], + "title": "RetroOrbitalInjection", + "type": "object" + }, + "SectionOrientation": { + "description": "Orientation of sectioning", + "enum": [ + "Coronal", + "Sagittal", + "Transverse" + ], + "title": "SectionOrientation", + "type": "string" + }, + "SectionStrategy": { + "description": "Section strategy", + "enum": [ + "Whole Brain", + "Hemi Brain" + ], + "title": "SectionStrategy", + "type": "string" + }, + "Sectioning": { + "additionalProperties": false, + "description": "Description of a sectioning procedure", + "properties": { + "procedure_type": { + "const": "Sectioning", + "default": "Sectioning", + "title": "Procedure Type", + "type": "string" + }, + "number_of_slices": { + "title": "Number of slices", + "type": "integer" + }, + "output_specimen_ids": { + "items": { + "type": "string" + }, + "minItems": 1, + "title": "Output specimen ids", + "type": "array" + }, + "section_orientation": { + "$ref": "#/$defs/SectionOrientation", + "title": "Sectioning orientation" + }, + "section_thickness": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Section thickness" + }, + "section_thickness_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Section thickness unit" + }, + "section_distance_from_reference": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Section distance from reference" + }, + "section_distance_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "millimeter", + "title": "Distance unit" + }, + "reference_location": { + "$ref": "#/$defs/CoordinateReferenceLocation", + "title": "Reference location for distance measurement" + }, + "section_strategy": { + "$ref": "#/$defs/SectionStrategy", + "title": "Slice strategy" + }, + "targeted_structure": { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ], + "title": "Targeted structure" + } + }, + "required": [ + "number_of_slices", + "output_specimen_ids", + "section_orientation", + "section_thickness", + "section_distance_from_reference", + "reference_location", + "section_strategy", + "targeted_structure" + ], + "title": "Sectioning", + "type": "object" + }, + "Side": { + "description": "Side of animal", + "enum": [ + "Left", + "Right", + "Midline" + ], + "title": "Side", + "type": "string" + }, + "SizeUnit": { + "description": "Enumeration of Length Measurements", + "enum": [ + "meter", + "centimeter", + "millimeter", + "micrometer", + "nanometer", + "inch", + "pixel" + ], + "title": "SizeUnit", + "type": "string" + }, + "SpecimenProcedure": { + "additionalProperties": false, + "description": "Description of surgical or other procedure performed on a specimen", + "properties": { + "procedure_type": { + "$ref": "#/$defs/SpecimenProcedureType", + "title": "Procedure type" + }, + "procedure_name": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Name to clarify specific procedure used as needed", + "title": "Procedure name" + }, + "specimen_id": { + "title": "Specimen ID", + "type": "string" + }, + "start_date": { + "format": "date", + "title": "Start date", + "type": "string" + }, + "end_date": { + "format": "date", + "title": "End date", + "type": "string" + }, + "experimenter_full_name": { + "description": "First and last name of the experimenter.", + "title": "Experimenter full name", + "type": "string" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "items": { + "type": "string" + }, + "title": "Protocol ID", + "type": "array" + }, + "reagents": { + "default": [], + "items": { + "$ref": "#/$defs/Reagent" + }, + "title": "Reagents", + "type": "array" + }, + "hcr_series": { + "anyOf": [ + { + "$ref": "#/$defs/HCRSeries" + }, + { + "type": "null" + } + ], + "default": null, + "title": "HCR Series" + }, + "antibodies": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/Antibody" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Immunolabeling" + }, + "sectioning": { + "anyOf": [ + { + "$ref": "#/$defs/Sectioning" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Sectioning" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "procedure_type", + "specimen_id", + "start_date", + "end_date", + "experimenter_full_name", + "protocol_id" + ], + "title": "SpecimenProcedure", + "type": "object" + }, + "SpecimenProcedureType": { + "description": "Specimen procedures", + "enum": [ + "Clearing", + "Delipidation", + "Embedding", + "Expansion", + "Fixation", + "Fixation and permeabilization", + "Gelation", + "Hybridication and amplification", + "Hybridization Chain Reaction", + "Immunolabeling", + "Mounting", + "Other", + "Refractive index matching", + "Sectioning", + "Soak", + "Storage", + "Stripping", + "Tamoxifen induction" + ], + "title": "SpecimenProcedureType", + "type": "string" + }, + "Stain": { + "additionalProperties": false, + "description": "Description of a non-oligo probe stain", + "properties": { + "name": { + "title": "Name", + "type": "string" + }, + "source": { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ], + "title": "Source" + }, + "rrid": { + "anyOf": [ + { + "$ref": "#/$defs/PIDName" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Research Resource ID" + }, + "lot_number": { + "title": "Lot number", + "type": "string" + }, + "expiration_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lot expiration date" + }, + "stain_type": { + "$ref": "#/$defs/StainType", + "title": "Stain type" + }, + "concentration": { + "$ref": "#/$defs/concentration", + "title": "Concentration (uM)" + } + }, + "required": [ + "name", + "source", + "lot_number", + "stain_type", + "concentration" + ], + "title": "Stain", + "type": "object" + }, + "StainType": { + "description": "Stain types for probes describing what is being labeled", + "enum": [ + "RNA", + "Nuclear", + "Fill" + ], + "title": "StainType", + "type": "string" + }, + "Surgery": { + "additionalProperties": false, + "description": "Description of subject procedures performed at one time", + "properties": { + "procedure_type": { + "const": "Surgery", + "default": "Surgery", + "title": "Procedure Type", + "type": "string" + }, + "protocol_id": { + "description": "DOI for protocols.io", + "title": "Protocol ID", + "type": "string" + }, + "start_date": { + "format": "date", + "title": "Start date", + "type": "string" + }, + "experimenter_full_name": { + "description": "First and last name of the experimenter.", + "title": "Experimenter full name", + "type": "string" + }, + "iacuc_protocol": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "IACUC protocol" + }, + "animal_weight_prior": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Animal weight before procedure", + "title": "Animal weight (g)" + }, + "animal_weight_post": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Animal weight after procedure", + "title": "Animal weight (g)" + }, + "weight_unit": { + "$ref": "#/$defs/MassUnit", + "default": "gram", + "title": "Weight unit" + }, + "anaesthesia": { + "anyOf": [ + { + "$ref": "#/$defs/Anaesthetic" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Anaesthesia" + }, + "workstation_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Workstation ID" + }, + "procedures": { + "items": { + "discriminator": { + "mapping": { + "Craniotomy": "#/$defs/Craniotomy", + "Fiber implant": "#/$defs/FiberImplant", + "Ground wire": "#/$defs/ProtectiveMaterialReplacement", + "Headframe": "#/$defs/Headframe", + "ICM injection": "#/$defs/IntraCisternalMagnaInjection", + "ICV injection": "#/$defs/IntraCerebellarVentricleInjection", + "Intraperitoneal injection": "#/$defs/IntraperitonealInjection", + "Iontophoresis injection": "#/$defs/IontophoresisInjection", + "Myomatrix_Insertion": "#/$defs/MyomatrixInsertion", + "Nanoject injection": "#/$defs/NanojectInjection", + "Other Subject Procedure": "#/$defs/OtherSubjectProcedure", + "Perfusion": "#/$defs/Perfusion", + "Retro-orbital injection": "#/$defs/RetroOrbitalInjection" + }, + "propertyName": "procedure_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/Craniotomy" + }, + { + "$ref": "#/$defs/FiberImplant" + }, + { + "$ref": "#/$defs/Headframe" + }, + { + "$ref": "#/$defs/IntraCerebellarVentricleInjection" + }, + { + "$ref": "#/$defs/IntraCisternalMagnaInjection" + }, + { + "$ref": "#/$defs/IntraperitonealInjection" + }, + { + "$ref": "#/$defs/IontophoresisInjection" + }, + { + "$ref": "#/$defs/MyomatrixInsertion" + }, + { + "$ref": "#/$defs/NanojectInjection" + }, + { + "$ref": "#/$defs/OtherSubjectProcedure" + }, + { + "$ref": "#/$defs/Perfusion" + }, + { + "$ref": "#/$defs/ProtectiveMaterialReplacement" + }, + { + "$ref": "#/$defs/RetroOrbitalInjection" + } + ] + }, + "minItems": 1, + "title": "Procedures", + "type": "array" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "protocol_id", + "start_date", + "experimenter_full_name", + "procedures" + ], + "title": "Surgery", + "type": "object" + }, + "TarsVirusIdentifiers": { + "additionalProperties": false, + "description": "TARS data for a viral prep", + "properties": { + "virus_tars_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Virus ID, usually begins 'AiV'" + }, + "plasmid_tars_alias": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Alias used to reference the plasmid, usually begins 'AiP'", + "title": "Plasmid alias" + }, + "prep_lot_number": { + "title": "Preparation lot number", + "type": "string" + }, + "prep_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Date this prep lot was titered", + "title": "Preparation lot date" + }, + "prep_type": { + "anyOf": [ + { + "$ref": "#/$defs/VirusPrepType" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Viral prep type" + }, + "prep_protocol": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Prep protocol" + } + }, + "required": [ + "prep_lot_number" + ], + "title": "TarsVirusIdentifiers", + "type": "object" + }, + "TimeUnit": { + "description": "Enumeration of Time Measurements", + "enum": [ + "hour", + "minute", + "second", + "millisecond", + "microsecond", + "nanosecond" + ], + "title": "TimeUnit", + "type": "string" + }, + "TrainingProtocol": { + "additionalProperties": false, + "description": "Description of an animal training protocol", + "properties": { + "procedure_type": { + "const": "Training", + "default": "Training", + "title": "Procedure Type", + "type": "string" + }, + "training_name": { + "title": "Training protocol name", + "type": "string" + }, + "protocol_id": { + "title": "Training protocol ID", + "type": "string" + }, + "start_date": { + "format": "date", + "title": "Training protocol start date", + "type": "string" + }, + "end_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Training protocol end date" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "training_name", + "protocol_id", + "start_date" + ], + "title": "TrainingProtocol", + "type": "object" + }, + "UnitlessUnit": { + "description": "Unitless options", + "enum": [ + "percent", + "fraction of cycle" + ], + "title": "UnitlessUnit", + "type": "string" + }, + "ViralMaterial": { + "additionalProperties": false, + "description": "Description of viral material for injections", + "properties": { + "material_type": { + "const": "Virus", + "default": "Virus", + "title": "Injection material type", + "type": "string" + }, + "name": { + "description": "Full genome for virus construct", + "title": "Full genome name", + "type": "string" + }, + "tars_identifiers": { + "anyOf": [ + { + "$ref": "#/$defs/TarsVirusIdentifiers" + }, + { + "type": "null" + } + ], + "default": null, + "description": "TARS database identifiers", + "title": "TARS IDs" + }, + "addgene_id": { + "anyOf": [ + { + "$ref": "#/$defs/PIDName" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Registry must be Addgene", + "title": "Addgene id" + }, + "titer": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Final titer of viral material, accounting for mixture/diliution", + "title": "Effective titer (gc/mL)" + }, + "titer_unit": { + "default": "gc/mL", + "title": "Titer unit", + "type": "string" + } + }, + "required": [ + "name" + ], + "title": "ViralMaterial", + "type": "object" + }, + "VirusPrepType": { + "description": "Type of virus preparation", + "enum": [ + "Crude", + "Purified" + ], + "title": "VirusPrepType", + "type": "string" + }, + "VolumeUnit": { + "description": "Enumeration of Volume Measurements", + "enum": [ + "liter", + "milliliter", + "microliter", + "nanoliter" + ], + "title": "VolumeUnit", + "type": "string" + }, + "WaterRestriction": { + "additionalProperties": false, + "description": "Description of a water restriction procedure", + "properties": { + "procedure_type": { + "const": "Water restriction", + "default": "Water restriction", + "title": "Procedure Type", + "type": "string" + }, + "iacuc_protocol": { + "title": "IACUC protocol", + "type": "string" + }, + "target_fraction_weight": { + "title": "Target fraction weight (%)", + "type": "integer" + }, + "target_fraction_weight_unit": { + "$ref": "#/$defs/UnitlessUnit", + "default": "percent", + "title": "Target fraction weight unit" + }, + "minimum_water_per_day": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Minimum water per day (mL)" + }, + "minimum_water_per_day_unit": { + "$ref": "#/$defs/VolumeUnit", + "default": "milliliter", + "title": "Minimum water per day unit" + }, + "baseline_weight": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "description": "Weight at start of water restriction", + "title": "Baseline weight (g)" + }, + "weight_unit": { + "$ref": "#/$defs/MassUnit", + "default": "gram", + "title": "Weight unit" + }, + "start_date": { + "format": "date", + "title": "Water restriction start date", + "type": "string" + }, + "end_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Water restriction end date" + } + }, + "required": [ + "iacuc_protocol", + "target_fraction_weight", + "minimum_water_per_day", + "baseline_weight", + "start_date" + ], + "title": "WaterRestriction", + "type": "object" + }, + "_Aa_Opto_Electronic": { + "description": "Model AA Opto Electronic", + "properties": { + "name": { + "const": "AA Opto Electronic", + "default": "AA Opto Electronic", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Aa_Opto_Electronic", + "type": "object" + }, + "_Aaa": { + "description": "Model AAA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior amygdalar area", + "default": "Anterior amygdalar area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AAA", + "default": "AAA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "23", + "default": "23", + "title": "Id", + "type": "string" + } + }, + "title": "_Aaa", + "type": "object" + }, + "_Abcam": { + "description": "Model Abcam", + "properties": { + "name": { + "const": "Abcam", + "default": "Abcam", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02e1wjw63", + "default": "02e1wjw63", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Abcam", + "type": "object" + }, + "_Aca": { + "description": "Model ACA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area", + "default": "Anterior cingulate area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACA", + "default": "ACA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "31", + "default": "31", + "title": "Id", + "type": "string" + } + }, + "title": "_Aca", + "type": "object" + }, + "_Acad": { + "description": "Model ACAd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part", + "default": "Anterior cingulate area, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd", + "default": "ACAd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "39", + "default": "39", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad", + "type": "object" + }, + "_Acad1": { + "description": "Model ACAd1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part, layer 1", + "default": "Anterior cingulate area, dorsal part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd1", + "default": "ACAd1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "935", + "default": "935", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad1", + "type": "object" + }, + "_Acad2_3": { + "description": "Model ACAd2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part, layer 2/3", + "default": "Anterior cingulate area, dorsal part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd2/3", + "default": "ACAd2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "211", + "default": "211", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad2_3", + "type": "object" + }, + "_Acad5": { + "description": "Model ACAd5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part, layer 5", + "default": "Anterior cingulate area, dorsal part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd5", + "default": "ACAd5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1015", + "default": "1015", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad5", + "type": "object" + }, + "_Acad6A": { + "description": "Model ACAd6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part, layer 6a", + "default": "Anterior cingulate area, dorsal part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd6a", + "default": "ACAd6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "919", + "default": "919", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad6A", + "type": "object" + }, + "_Acad6B": { + "description": "Model ACAd6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part, layer 6b", + "default": "Anterior cingulate area, dorsal part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd6b", + "default": "ACAd6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "927", + "default": "927", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad6B", + "type": "object" + }, + "_Acav": { + "description": "Model ACAv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part", + "default": "Anterior cingulate area, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv", + "default": "ACAv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "48", + "default": "48", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav", + "type": "object" + }, + "_Acav1": { + "description": "Model ACAv1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part, layer 1", + "default": "Anterior cingulate area, ventral part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv1", + "default": "ACAv1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "588", + "default": "588", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav1", + "type": "object" + }, + "_Acav2_3": { + "description": "Model ACAv2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part, layer 2/3", + "default": "Anterior cingulate area, ventral part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv2/3", + "default": "ACAv2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "296", + "default": "296", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav2_3", + "type": "object" + }, + "_Acav5": { + "description": "Model ACAv5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part, layer 5", + "default": "Anterior cingulate area, ventral part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv5", + "default": "ACAv5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "772", + "default": "772", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav5", + "type": "object" + }, + "_Acav6A": { + "description": "Model ACAv6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part, 6a", + "default": "Anterior cingulate area, ventral part, 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv6a", + "default": "ACAv6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "810", + "default": "810", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav6A", + "type": "object" + }, + "_Acav6B": { + "description": "Model ACAv6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part, 6b", + "default": "Anterior cingulate area, ventral part, 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv6b", + "default": "ACAv6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "819", + "default": "819", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav6B", + "type": "object" + }, + "_Acb": { + "description": "Model ACB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus accumbens", + "default": "Nucleus accumbens", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACB", + "default": "ACB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "56", + "default": "56", + "title": "Id", + "type": "string" + } + }, + "title": "_Acb", + "type": "object" + }, + "_Aco": { + "description": "Model aco", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "anterior commissure, olfactory limb", + "default": "anterior commissure, olfactory limb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "aco", + "default": "aco", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "900", + "default": "900", + "title": "Id", + "type": "string" + } + }, + "title": "_Aco", + "type": "object" + }, + "_Acs5": { + "description": "Model Acs5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory trigeminal nucleus", + "default": "Accessory trigeminal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "Acs5", + "default": "Acs5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "549009219", + "default": "549009219", + "title": "Id", + "type": "string" + } + }, + "title": "_Acs5", + "type": "object" + }, + "_Act": { + "description": "Model act", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "anterior commissure, temporal limb", + "default": "anterior commissure, temporal limb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "act", + "default": "act", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "908", + "default": "908", + "title": "Id", + "type": "string" + } + }, + "title": "_Act", + "type": "object" + }, + "_Acvii": { + "description": "Model ACVII", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory facial motor nucleus", + "default": "Accessory facial motor nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACVII", + "default": "ACVII", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "576", + "default": "576", + "title": "Id", + "type": "string" + } + }, + "title": "_Acvii", + "type": "object" + }, + "_Ad": { + "description": "Model AD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterodorsal nucleus", + "default": "Anterodorsal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AD", + "default": "AD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "64", + "default": "64", + "title": "Id", + "type": "string" + } + }, + "title": "_Ad", + "type": "object" + }, + "_Adp": { + "description": "Model ADP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterodorsal preoptic nucleus", + "default": "Anterodorsal preoptic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ADP", + "default": "ADP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "72", + "default": "72", + "title": "Id", + "type": "string" + } + }, + "title": "_Adp", + "type": "object" + }, + "_Ahn": { + "description": "Model AHN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior hypothalamic nucleus", + "default": "Anterior hypothalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AHN", + "default": "AHN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "88", + "default": "88", + "title": "Id", + "type": "string" + } + }, + "title": "_Ahn", + "type": "object" + }, + "_Ai": { + "description": "Model AI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area", + "default": "Agranular insular area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AI", + "default": "AI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "95", + "default": "95", + "title": "Id", + "type": "string" + } + }, + "title": "_Ai", + "type": "object" + }, + "_Aid": { + "description": "Model AId", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part", + "default": "Agranular insular area, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId", + "default": "AId", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "104", + "default": "104", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid", + "type": "object" + }, + "_Aid1": { + "description": "Model AId1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part, layer 1", + "default": "Agranular insular area, dorsal part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId1", + "default": "AId1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "996", + "default": "996", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid1", + "type": "object" + }, + "_Aid2_3": { + "description": "Model AId2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part, layer 2/3", + "default": "Agranular insular area, dorsal part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId2/3", + "default": "AId2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "328", + "default": "328", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid2_3", + "type": "object" + }, + "_Aid5": { + "description": "Model AId5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part, layer 5", + "default": "Agranular insular area, dorsal part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId5", + "default": "AId5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1101", + "default": "1101", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid5", + "type": "object" + }, + "_Aid6A": { + "description": "Model AId6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part, layer 6a", + "default": "Agranular insular area, dorsal part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId6a", + "default": "AId6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "783", + "default": "783", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid6A", + "type": "object" + }, + "_Aid6B": { + "description": "Model AId6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part, layer 6b", + "default": "Agranular insular area, dorsal part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId6b", + "default": "AId6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "831", + "default": "831", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid6B", + "type": "object" + }, + "_Ailipu_Technology_Co": { + "description": "Model Ailipu Technology Co", + "properties": { + "name": { + "const": "Ailipu Technology Co", + "default": "Ailipu Technology Co", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Ailipu", + "default": "Ailipu", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Ailipu_Technology_Co", + "type": "object" + }, + "_Aip": { + "description": "Model AIp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part", + "default": "Agranular insular area, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp", + "default": "AIp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "111", + "default": "111", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip", + "type": "object" + }, + "_Aip1": { + "description": "Model AIp1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part, layer 1", + "default": "Agranular insular area, posterior part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp1", + "default": "AIp1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "120", + "default": "120", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip1", + "type": "object" + }, + "_Aip2_3": { + "description": "Model AIp2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part, layer 2/3", + "default": "Agranular insular area, posterior part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp2/3", + "default": "AIp2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "163", + "default": "163", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip2_3", + "type": "object" + }, + "_Aip5": { + "description": "Model AIp5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part, layer 5", + "default": "Agranular insular area, posterior part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp5", + "default": "AIp5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "344", + "default": "344", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip5", + "type": "object" + }, + "_Aip6A": { + "description": "Model AIp6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part, layer 6a", + "default": "Agranular insular area, posterior part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp6a", + "default": "AIp6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "314", + "default": "314", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip6A", + "type": "object" + }, + "_Aip6B": { + "description": "Model AIp6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part, layer 6b", + "default": "Agranular insular area, posterior part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp6b", + "default": "AIp6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "355", + "default": "355", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip6B", + "type": "object" + }, + "_Aiv": { + "description": "Model AIv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part", + "default": "Agranular insular area, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv", + "default": "AIv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "119", + "default": "119", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv", + "type": "object" + }, + "_Aiv1": { + "description": "Model AIv1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part, layer 1", + "default": "Agranular insular area, ventral part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv1", + "default": "AIv1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "704", + "default": "704", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv1", + "type": "object" + }, + "_Aiv2_3": { + "description": "Model AIv2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part, layer 2/3", + "default": "Agranular insular area, ventral part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv2/3", + "default": "AIv2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "694", + "default": "694", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv2_3", + "type": "object" + }, + "_Aiv5": { + "description": "Model AIv5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part, layer 5", + "default": "Agranular insular area, ventral part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv5", + "default": "AIv5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "800", + "default": "800", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv5", + "type": "object" + }, + "_Aiv6A": { + "description": "Model AIv6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part, layer 6a", + "default": "Agranular insular area, ventral part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv6a", + "default": "AIv6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "675", + "default": "675", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv6A", + "type": "object" + }, + "_Aiv6B": { + "description": "Model AIv6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part, layer 6b", + "default": "Agranular insular area, ventral part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv6b", + "default": "AIv6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "699", + "default": "699", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv6B", + "type": "object" + }, + "_Allen_Institute": { + "description": "Model Allen Institute", + "properties": { + "name": { + "const": "Allen Institute", + "default": "Allen Institute", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "AI", + "default": "AI", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03cpe7c52", + "default": "03cpe7c52", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Allen_Institute", + "type": "object" + }, + "_Allen_Institute_For_Brain_Science": { + "description": "Model Allen Institute for Brain Science", + "properties": { + "name": { + "const": "Allen Institute for Brain Science", + "default": "Allen Institute for Brain Science", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "AIBS", + "default": "AIBS", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00dcv1019", + "default": "00dcv1019", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Allen_Institute_For_Brain_Science", + "type": "object" + }, + "_Allen_Institute_For_Neural_Dynamics": { + "description": "Model Allen Institute for Neural Dynamics", + "properties": { + "name": { + "const": "Allen Institute for Neural Dynamics", + "default": "Allen Institute for Neural Dynamics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "AIND", + "default": "AIND", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "04szwah67", + "default": "04szwah67", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Allen_Institute_For_Neural_Dynamics", + "type": "object" + }, + "_Allied": { + "description": "Model Allied", + "properties": { + "name": { + "const": "Allied", + "default": "Allied", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Allied", + "type": "object" + }, + "_Alv": { + "description": "Model alv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "alveus", + "default": "alveus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "alv", + "default": "alv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "466", + "default": "466", + "title": "Id", + "type": "string" + } + }, + "title": "_Alv", + "type": "object" + }, + "_Am": { + "description": "Model AM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteromedial nucleus", + "default": "Anteromedial nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AM", + "default": "AM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "127", + "default": "127", + "title": "Id", + "type": "string" + } + }, + "title": "_Am", + "type": "object" + }, + "_Amb": { + "description": "Model AMB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus ambiguus", + "default": "Nucleus ambiguus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AMB", + "default": "AMB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "135", + "default": "135", + "title": "Id", + "type": "string" + } + }, + "title": "_Amb", + "type": "object" + }, + "_Ambd": { + "description": "Model AMBd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus ambiguus, dorsal division", + "default": "Nucleus ambiguus, dorsal division", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AMBd", + "default": "AMBd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "939", + "default": "939", + "title": "Id", + "type": "string" + } + }, + "title": "_Ambd", + "type": "object" + }, + "_Ambv": { + "description": "Model AMBv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus ambiguus, ventral division", + "default": "Nucleus ambiguus, ventral division", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AMBv", + "default": "AMBv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "143", + "default": "143", + "title": "Id", + "type": "string" + } + }, + "title": "_Ambv", + "type": "object" + }, + "_Amc": { + "description": "Model amc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "amygdalar capsule", + "default": "amygdalar capsule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "amc", + "default": "amc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "884", + "default": "884", + "title": "Id", + "type": "string" + } + }, + "title": "_Amc", + "type": "object" + }, + "_Amd": { + "description": "Model AMd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteromedial nucleus, dorsal part", + "default": "Anteromedial nucleus, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AMd", + "default": "AMd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1096", + "default": "1096", + "title": "Id", + "type": "string" + } + }, + "title": "_Amd", + "type": "object" + }, + "_Ams_Osram": { + "description": "Model ams OSRAM", + "properties": { + "name": { + "const": "ams OSRAM", + "default": "ams OSRAM", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "045d0h266", + "default": "045d0h266", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Ams_Osram", + "type": "object" + }, + "_Amv": { + "description": "Model AMv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteromedial nucleus, ventral part", + "default": "Anteromedial nucleus, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AMv", + "default": "AMv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1104", + "default": "1104", + "title": "Id", + "type": "string" + } + }, + "title": "_Amv", + "type": "object" + }, + "_An": { + "description": "Model AN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ansiform lobule", + "default": "Ansiform lobule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AN", + "default": "AN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1017", + "default": "1017", + "title": "Id", + "type": "string" + } + }, + "title": "_An", + "type": "object" + }, + "_Ancr1": { + "description": "Model ANcr1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Crus 1", + "default": "Crus 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ANcr1", + "default": "ANcr1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1056", + "default": "1056", + "title": "Id", + "type": "string" + } + }, + "title": "_Ancr1", + "type": "object" + }, + "_Ancr2": { + "description": "Model ANcr2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Crus 2", + "default": "Crus 2", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ANcr2", + "default": "ANcr2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1064", + "default": "1064", + "title": "Id", + "type": "string" + } + }, + "title": "_Ancr2", + "type": "object" + }, + "_Aob": { + "description": "Model AOB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory olfactory bulb", + "default": "Accessory olfactory bulb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AOB", + "default": "AOB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "151", + "default": "151", + "title": "Id", + "type": "string" + } + }, + "title": "_Aob", + "type": "object" + }, + "_Aobgl": { + "description": "Model AOBgl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory olfactory bulb, glomerular layer", + "default": "Accessory olfactory bulb, glomerular layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AOBgl", + "default": "AOBgl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "188", + "default": "188", + "title": "Id", + "type": "string" + } + }, + "title": "_Aobgl", + "type": "object" + }, + "_Aobgr": { + "description": "Model AOBgr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory olfactory bulb, granular layer", + "default": "Accessory olfactory bulb, granular layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AOBgr", + "default": "AOBgr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "196", + "default": "196", + "title": "Id", + "type": "string" + } + }, + "title": "_Aobgr", + "type": "object" + }, + "_Aobmi": { + "description": "Model AOBmi", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory olfactory bulb, mitral layer", + "default": "Accessory olfactory bulb, mitral layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AOBmi", + "default": "AOBmi", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "204", + "default": "204", + "title": "Id", + "type": "string" + } + }, + "title": "_Aobmi", + "type": "object" + }, + "_Aon": { + "description": "Model AON", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior olfactory nucleus", + "default": "Anterior olfactory nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AON", + "default": "AON", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "159", + "default": "159", + "title": "Id", + "type": "string" + } + }, + "title": "_Aon", + "type": "object" + }, + "_Ap": { + "description": "Model AP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Area postrema", + "default": "Area postrema", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AP", + "default": "AP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "207", + "default": "207", + "title": "Id", + "type": "string" + } + }, + "title": "_Ap", + "type": "object" + }, + "_Apn": { + "description": "Model APN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior pretectal nucleus", + "default": "Anterior pretectal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "APN", + "default": "APN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "215", + "default": "215", + "title": "Id", + "type": "string" + } + }, + "title": "_Apn", + "type": "object" + }, + "_Applied_Scientific_Instrumentation": { + "description": "Model Applied Scientific Instrumentation", + "properties": { + "name": { + "const": "Applied Scientific Instrumentation", + "default": "Applied Scientific Instrumentation", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "ASI", + "default": "ASI", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Applied_Scientific_Instrumentation", + "type": "object" + }, + "_Apr": { + "description": "Model APr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Area prostriata", + "default": "Area prostriata", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "APr", + "default": "APr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682508", + "default": "484682508", + "title": "Id", + "type": "string" + } + }, + "title": "_Apr", + "type": "object" + }, + "_Aq": { + "description": "Model AQ", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebral aqueduct", + "default": "cerebral aqueduct", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AQ", + "default": "AQ", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "140", + "default": "140", + "title": "Id", + "type": "string" + } + }, + "title": "_Aq", + "type": "object" + }, + "_Ar": { + "description": "Model ar", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "auditory radiation", + "default": "auditory radiation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ar", + "default": "ar", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682524", + "default": "484682524", + "title": "Id", + "type": "string" + } + }, + "title": "_Ar", + "type": "object" + }, + "_Arb": { + "description": "Model arb", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "arbor vitae", + "default": "arbor vitae", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "arb", + "default": "arb", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "728", + "default": "728", + "title": "Id", + "type": "string" + } + }, + "title": "_Arb", + "type": "object" + }, + "_Arecont_Vision_Costar": { + "description": "Model Arecont Vision Costar", + "properties": { + "name": { + "const": "Arecont Vision Costar", + "default": "Arecont Vision Costar", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Arecont_Vision_Costar", + "type": "object" + }, + "_Arh": { + "description": "Model ARH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Arcuate hypothalamic nucleus", + "default": "Arcuate hypothalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ARH", + "default": "ARH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "223", + "default": "223", + "title": "Id", + "type": "string" + } + }, + "title": "_Arh", + "type": "object" + }, + "_Aso": { + "description": "Model ASO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory supraoptic group", + "default": "Accessory supraoptic group", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ASO", + "default": "ASO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "332", + "default": "332", + "title": "Id", + "type": "string" + } + }, + "title": "_Aso", + "type": "object" + }, + "_Asus": { + "description": "Model ASUS", + "properties": { + "name": { + "const": "ASUS", + "default": "ASUS", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00bxkz165", + "default": "00bxkz165", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Asus", + "type": "object" + }, + "_At": { + "description": "Model AT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior tegmental nucleus", + "default": "Anterior tegmental nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AT", + "default": "AT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "231", + "default": "231", + "title": "Id", + "type": "string" + } + }, + "title": "_At", + "type": "object" + }, + "_Atn": { + "description": "Model ATN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior group of the dorsal thalamus", + "default": "Anterior group of the dorsal thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ATN", + "default": "ATN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "239", + "default": "239", + "title": "Id", + "type": "string" + } + }, + "title": "_Atn", + "type": "object" + }, + "_Aud": { + "description": "Model AUD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Auditory areas", + "default": "Auditory areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUD", + "default": "AUD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "247", + "default": "247", + "title": "Id", + "type": "string" + } + }, + "title": "_Aud", + "type": "object" + }, + "_Audd": { + "description": "Model AUDd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area", + "default": "Dorsal auditory area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd", + "default": "AUDd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1011", + "default": "1011", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd", + "type": "object" + }, + "_Audd1": { + "description": "Model AUDd1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 1", + "default": "Dorsal auditory area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd1", + "default": "AUDd1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "527", + "default": "527", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd1", + "type": "object" + }, + "_Audd2_3": { + "description": "Model AUDd2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 2/3", + "default": "Dorsal auditory area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd2/3", + "default": "AUDd2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "600", + "default": "600", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd2_3", + "type": "object" + }, + "_Audd4": { + "description": "Model AUDd4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 4", + "default": "Dorsal auditory area, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd4", + "default": "AUDd4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "678", + "default": "678", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd4", + "type": "object" + }, + "_Audd5": { + "description": "Model AUDd5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 5", + "default": "Dorsal auditory area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd5", + "default": "AUDd5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "252", + "default": "252", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd5", + "type": "object" + }, + "_Audd6A": { + "description": "Model AUDd6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 6a", + "default": "Dorsal auditory area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd6a", + "default": "AUDd6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "156", + "default": "156", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd6A", + "type": "object" + }, + "_Audd6B": { + "description": "Model AUDd6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 6b", + "default": "Dorsal auditory area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd6b", + "default": "AUDd6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "243", + "default": "243", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd6B", + "type": "object" + }, + "_Audp": { + "description": "Model AUDp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area", + "default": "Primary auditory area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp", + "default": "AUDp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1002", + "default": "1002", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp", + "type": "object" + }, + "_Audp1": { + "description": "Model AUDp1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 1", + "default": "Primary auditory area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp1", + "default": "AUDp1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "735", + "default": "735", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp1", + "type": "object" + }, + "_Audp2_3": { + "description": "Model AUDp2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 2/3", + "default": "Primary auditory area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp2/3", + "default": "AUDp2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "251", + "default": "251", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp2_3", + "type": "object" + }, + "_Audp4": { + "description": "Model AUDp4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 4", + "default": "Primary auditory area, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp4", + "default": "AUDp4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "816", + "default": "816", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp4", + "type": "object" + }, + "_Audp5": { + "description": "Model AUDp5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 5", + "default": "Primary auditory area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp5", + "default": "AUDp5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "847", + "default": "847", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp5", + "type": "object" + }, + "_Audp6A": { + "description": "Model AUDp6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 6a", + "default": "Primary auditory area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp6a", + "default": "AUDp6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "954", + "default": "954", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp6A", + "type": "object" + }, + "_Audp6B": { + "description": "Model AUDp6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 6b", + "default": "Primary auditory area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp6b", + "default": "AUDp6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1005", + "default": "1005", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp6B", + "type": "object" + }, + "_Audpo": { + "description": "Model AUDpo", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area", + "default": "Posterior auditory area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo", + "default": "AUDpo", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1027", + "default": "1027", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo", + "type": "object" + }, + "_Audpo1": { + "description": "Model AUDpo1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 1", + "default": "Posterior auditory area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo1", + "default": "AUDpo1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "696", + "default": "696", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo1", + "type": "object" + }, + "_Audpo2_3": { + "description": "Model AUDpo2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 2/3", + "default": "Posterior auditory area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo2/3", + "default": "AUDpo2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "643", + "default": "643", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo2_3", + "type": "object" + }, + "_Audpo4": { + "description": "Model AUDpo4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 4", + "default": "Posterior auditory area, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo4", + "default": "AUDpo4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "759", + "default": "759", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo4", + "type": "object" + }, + "_Audpo5": { + "description": "Model AUDpo5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 5", + "default": "Posterior auditory area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo5", + "default": "AUDpo5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "791", + "default": "791", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo5", + "type": "object" + }, + "_Audpo6A": { + "description": "Model AUDpo6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 6a", + "default": "Posterior auditory area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo6a", + "default": "AUDpo6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "249", + "default": "249", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo6A", + "type": "object" + }, + "_Audpo6B": { + "description": "Model AUDpo6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 6b", + "default": "Posterior auditory area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo6b", + "default": "AUDpo6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "456", + "default": "456", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo6B", + "type": "object" + }, + "_Audv": { + "description": "Model AUDv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area", + "default": "Ventral auditory area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv", + "default": "AUDv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1018", + "default": "1018", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv", + "type": "object" + }, + "_Audv1": { + "description": "Model AUDv1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 1", + "default": "Ventral auditory area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv1", + "default": "AUDv1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "959", + "default": "959", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv1", + "type": "object" + }, + "_Audv2_3": { + "description": "Model AUDv2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 2/3", + "default": "Ventral auditory area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv2/3", + "default": "AUDv2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "755", + "default": "755", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv2_3", + "type": "object" + }, + "_Audv4": { + "description": "Model AUDv4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 4", + "default": "Ventral auditory area, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv4", + "default": "AUDv4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "990", + "default": "990", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv4", + "type": "object" + }, + "_Audv5": { + "description": "Model AUDv5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 5", + "default": "Ventral auditory area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv5", + "default": "AUDv5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1023", + "default": "1023", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv5", + "type": "object" + }, + "_Audv6A": { + "description": "Model AUDv6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 6a", + "default": "Ventral auditory area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv6a", + "default": "AUDv6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "520", + "default": "520", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv6A", + "type": "object" + }, + "_Audv6B": { + "description": "Model AUDv6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 6b", + "default": "Ventral auditory area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv6b", + "default": "AUDv6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "598", + "default": "598", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv6B", + "type": "object" + }, + "_Av": { + "description": "Model AV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteroventral nucleus of thalamus", + "default": "Anteroventral nucleus of thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AV", + "default": "AV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "255", + "default": "255", + "title": "Id", + "type": "string" + } + }, + "title": "_Av", + "type": "object" + }, + "_Avp": { + "description": "Model AVP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteroventral preoptic nucleus", + "default": "Anteroventral preoptic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AVP", + "default": "AVP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "263", + "default": "263", + "title": "Id", + "type": "string" + } + }, + "title": "_Avp", + "type": "object" + }, + "_Avpv": { + "description": "Model AVPV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteroventral periventricular nucleus", + "default": "Anteroventral periventricular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AVPV", + "default": "AVPV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "272", + "default": "272", + "title": "Id", + "type": "string" + } + }, + "title": "_Avpv", + "type": "object" + }, + "_B": { + "description": "Model B", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Barrington's nucleus", + "default": "Barrington's nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "B", + "default": "B", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "280", + "default": "280", + "title": "Id", + "type": "string" + } + }, + "title": "_B", + "type": "object" + }, + "_Ba": { + "description": "Model BA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Bed nucleus of the accessory olfactory tract", + "default": "Bed nucleus of the accessory olfactory tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BA", + "default": "BA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "292", + "default": "292", + "title": "Id", + "type": "string" + } + }, + "title": "_Ba", + "type": "object" + }, + "_Bac": { + "description": "Model BAC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Bed nucleus of the anterior commissure", + "default": "Bed nucleus of the anterior commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BAC", + "default": "BAC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "287", + "default": "287", + "title": "Id", + "type": "string" + } + }, + "title": "_Bac", + "type": "object" + }, + "_Basler": { + "description": "Model Basler", + "properties": { + "name": { + "const": "Basler", + "default": "Basler", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Basler", + "type": "object" + }, + "_Bic": { + "description": "Model bic", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "brachium of the inferior colliculus", + "default": "brachium of the inferior colliculus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "bic", + "default": "bic", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "482", + "default": "482", + "title": "Id", + "type": "string" + } + }, + "title": "_Bic", + "type": "object" + }, + "_Biceps_Brachii": { + "description": "Model biceps brachii", + "properties": { + "name": { + "const": "biceps brachii", + "default": "biceps brachii", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_19108", + "default": "EMAPA_19108", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Biceps_Brachii", + "type": "object" + }, + "_Bla": { + "description": "Model BLA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basolateral amygdalar nucleus", + "default": "Basolateral amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BLA", + "default": "BLA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "295", + "default": "295", + "title": "Id", + "type": "string" + } + }, + "title": "_Bla", + "type": "object" + }, + "_Blaa": { + "description": "Model BLAa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basolateral amygdalar nucleus, anterior part", + "default": "Basolateral amygdalar nucleus, anterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BLAa", + "default": "BLAa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "303", + "default": "303", + "title": "Id", + "type": "string" + } + }, + "title": "_Blaa", + "type": "object" + }, + "_Blap": { + "description": "Model BLAp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basolateral amygdalar nucleus, posterior part", + "default": "Basolateral amygdalar nucleus, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BLAp", + "default": "BLAp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "311", + "default": "311", + "title": "Id", + "type": "string" + } + }, + "title": "_Blap", + "type": "object" + }, + "_Blav": { + "description": "Model BLAv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basolateral amygdalar nucleus, ventral part", + "default": "Basolateral amygdalar nucleus, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BLAv", + "default": "BLAv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "451", + "default": "451", + "title": "Id", + "type": "string" + } + }, + "title": "_Blav", + "type": "object" + }, + "_Bma": { + "description": "Model BMA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basomedial amygdalar nucleus", + "default": "Basomedial amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BMA", + "default": "BMA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "319", + "default": "319", + "title": "Id", + "type": "string" + } + }, + "title": "_Bma", + "type": "object" + }, + "_Bmaa": { + "description": "Model BMAa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basomedial amygdalar nucleus, anterior part", + "default": "Basomedial amygdalar nucleus, anterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BMAa", + "default": "BMAa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "327", + "default": "327", + "title": "Id", + "type": "string" + } + }, + "title": "_Bmaa", + "type": "object" + }, + "_Bmap": { + "description": "Model BMAp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basomedial amygdalar nucleus, posterior part", + "default": "Basomedial amygdalar nucleus, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BMAp", + "default": "BMAp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "334", + "default": "334", + "title": "Id", + "type": "string" + } + }, + "title": "_Bmap", + "type": "object" + }, + "_Bs": { + "description": "Model BS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Brain stem", + "default": "Brain stem", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BS", + "default": "BS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "343", + "default": "343", + "title": "Id", + "type": "string" + } + }, + "title": "_Bs", + "type": "object" + }, + "_Bsc": { + "description": "Model bsc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "brachium of the superior colliculus", + "default": "brachium of the superior colliculus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "bsc", + "default": "bsc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "916", + "default": "916", + "title": "Id", + "type": "string" + } + }, + "title": "_Bsc", + "type": "object" + }, + "_Bst": { + "description": "Model BST", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Bed nuclei of the stria terminalis", + "default": "Bed nuclei of the stria terminalis", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BST", + "default": "BST", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "351", + "default": "351", + "title": "Id", + "type": "string" + } + }, + "title": "_Bst", + "type": "object" + }, + "_C": { + "description": "Model c", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "central canal, spinal cord/medulla", + "default": "central canal, spinal cord/medulla", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "c", + "default": "c", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "164", + "default": "164", + "title": "Id", + "type": "string" + } + }, + "title": "_C", + "type": "object" + }, + "_Ca": { + "description": "Model CA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ammon's horn", + "default": "Ammon's horn", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CA", + "default": "CA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "375", + "default": "375", + "title": "Id", + "type": "string" + } + }, + "title": "_Ca", + "type": "object" + }, + "_Ca1": { + "description": "Model CA1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Field CA1", + "default": "Field CA1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CA1", + "default": "CA1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "382", + "default": "382", + "title": "Id", + "type": "string" + } + }, + "title": "_Ca1", + "type": "object" + }, + "_Ca2": { + "description": "Model CA2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Field CA2", + "default": "Field CA2", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CA2", + "default": "CA2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "423", + "default": "423", + "title": "Id", + "type": "string" + } + }, + "title": "_Ca2", + "type": "object" + }, + "_Ca3": { + "description": "Model CA3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Field CA3", + "default": "Field CA3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CA3", + "default": "CA3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "463", + "default": "463", + "title": "Id", + "type": "string" + } + }, + "title": "_Ca3", + "type": "object" + }, + "_Callithrix_Jacchus": { + "description": "Model Callithrix jacchus", + "properties": { + "name": { + "const": "Callithrix jacchus", + "default": "Callithrix jacchus", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "National Center for Biotechnology Information", + "abbreviation": "NCBI" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "NCBI:txid9483", + "default": "NCBI:txid9483", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Callithrix_Jacchus", + "type": "object" + }, + "_Cambridge_Technology": { + "description": "Model Cambridge Technology", + "properties": { + "name": { + "const": "Cambridge Technology", + "default": "Cambridge Technology", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Cambridge_Technology", + "type": "object" + }, + "_Carl_Zeiss": { + "description": "Model Carl Zeiss", + "properties": { + "name": { + "const": "Carl Zeiss", + "default": "Carl Zeiss", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "01xk5xs43", + "default": "01xk5xs43", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Carl_Zeiss", + "type": "object" + }, + "_Cb": { + "description": "Model CB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebellum", + "default": "Cerebellum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CB", + "default": "CB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "512", + "default": "512", + "title": "Id", + "type": "string" + } + }, + "title": "_Cb", + "type": "object" + }, + "_Cbc": { + "description": "Model cbc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebellar commissure", + "default": "cerebellar commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cbc", + "default": "cbc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "744", + "default": "744", + "title": "Id", + "type": "string" + } + }, + "title": "_Cbc", + "type": "object" + }, + "_Cbf": { + "description": "Model cbf", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebellum related fiber tracts", + "default": "cerebellum related fiber tracts", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cbf", + "default": "cbf", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "960", + "default": "960", + "title": "Id", + "type": "string" + } + }, + "title": "_Cbf", + "type": "object" + }, + "_Cbn": { + "description": "Model CBN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebellar nuclei", + "default": "Cerebellar nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CBN", + "default": "CBN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "519", + "default": "519", + "title": "Id", + "type": "string" + } + }, + "title": "_Cbn", + "type": "object" + }, + "_Cbp": { + "description": "Model cbp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebellar peduncles", + "default": "cerebellar peduncles", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cbp", + "default": "cbp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "752", + "default": "752", + "title": "Id", + "type": "string" + } + }, + "title": "_Cbp", + "type": "object" + }, + "_Cbx": { + "description": "Model CBX", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebellar cortex", + "default": "Cerebellar cortex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CBX", + "default": "CBX", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "528", + "default": "528", + "title": "Id", + "type": "string" + } + }, + "title": "_Cbx", + "type": "object" + }, + "_Cc": { + "description": "Model cc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum", + "default": "corpus callosum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cc", + "default": "cc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "776", + "default": "776", + "title": "Id", + "type": "string" + } + }, + "title": "_Cc", + "type": "object" + }, + "_Ccb": { + "description": "Model ccb", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum, body", + "default": "corpus callosum, body", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ccb", + "default": "ccb", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682516", + "default": "484682516", + "title": "Id", + "type": "string" + } + }, + "title": "_Ccb", + "type": "object" + }, + "_Ccg": { + "description": "Model ccg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "genu of corpus callosum", + "default": "genu of corpus callosum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ccg", + "default": "ccg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1108", + "default": "1108", + "title": "Id", + "type": "string" + } + }, + "title": "_Ccg", + "type": "object" + }, + "_Ccs": { + "description": "Model ccs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum, splenium", + "default": "corpus callosum, splenium", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ccs", + "default": "ccs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "986", + "default": "986", + "title": "Id", + "type": "string" + } + }, + "title": "_Ccs", + "type": "object" + }, + "_Cea": { + "description": "Model CEA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central amygdalar nucleus", + "default": "Central amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CEA", + "default": "CEA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "536", + "default": "536", + "title": "Id", + "type": "string" + } + }, + "title": "_Cea", + "type": "object" + }, + "_Ceac": { + "description": "Model CEAc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central amygdalar nucleus, capsular part", + "default": "Central amygdalar nucleus, capsular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CEAc", + "default": "CEAc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "544", + "default": "544", + "title": "Id", + "type": "string" + } + }, + "title": "_Ceac", + "type": "object" + }, + "_Ceal": { + "description": "Model CEAl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central amygdalar nucleus, lateral part", + "default": "Central amygdalar nucleus, lateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CEAl", + "default": "CEAl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "551", + "default": "551", + "title": "Id", + "type": "string" + } + }, + "title": "_Ceal", + "type": "object" + }, + "_Ceam": { + "description": "Model CEAm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central amygdalar nucleus, medial part", + "default": "Central amygdalar nucleus, medial part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CEAm", + "default": "CEAm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "559", + "default": "559", + "title": "Id", + "type": "string" + } + }, + "title": "_Ceam", + "type": "object" + }, + "_Cent": { + "description": "Model CENT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central lobule", + "default": "Central lobule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CENT", + "default": "CENT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "920", + "default": "920", + "title": "Id", + "type": "string" + } + }, + "title": "_Cent", + "type": "object" + }, + "_Cent2": { + "description": "Model CENT2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lobule II", + "default": "Lobule II", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CENT2", + "default": "CENT2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "976", + "default": "976", + "title": "Id", + "type": "string" + } + }, + "title": "_Cent2", + "type": "object" + }, + "_Cent3": { + "description": "Model CENT3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lobule III", + "default": "Lobule III", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CENT3", + "default": "CENT3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "984", + "default": "984", + "title": "Id", + "type": "string" + } + }, + "title": "_Cent3", + "type": "object" + }, + "_Cett": { + "description": "Model cett", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cervicothalamic tract", + "default": "cervicothalamic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cett", + "default": "cett", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "932", + "default": "932", + "title": "Id", + "type": "string" + } + }, + "title": "_Cett", + "type": "object" + }, + "_Ch": { + "description": "Model CH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebrum", + "default": "Cerebrum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CH", + "default": "CH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "567", + "default": "567", + "title": "Id", + "type": "string" + } + }, + "title": "_Ch", + "type": "object" + }, + "_Champalimaud_Foundation": { + "description": "Model Champalimaud Foundation", + "properties": { + "name": { + "const": "Champalimaud Foundation", + "default": "Champalimaud Foundation", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Champalimaud", + "default": "Champalimaud", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03g001n57", + "default": "03g001n57", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Champalimaud_Foundation", + "type": "object" + }, + "_Chan_Zuckerberg_Initiative": { + "description": "Model Chan Zuckerberg Initiative", + "properties": { + "name": { + "const": "Chan Zuckerberg Initiative", + "default": "Chan Zuckerberg Initiative", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "CZI", + "default": "CZI", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02qenvm24", + "default": "02qenvm24", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Chan_Zuckerberg_Initiative", + "type": "object" + }, + "_Charles_River_Laboratories": { + "description": "Model Charles River Laboratories", + "properties": { + "name": { + "const": "Charles River Laboratories", + "default": "Charles River Laboratories", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "CRL", + "default": "CRL", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03ndmsg87", + "default": "03ndmsg87", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Charles_River_Laboratories", + "type": "object" + }, + "_Chpl": { + "description": "Model chpl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "choroid plexus", + "default": "choroid plexus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "chpl", + "default": "chpl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "108", + "default": "108", + "title": "Id", + "type": "string" + } + }, + "title": "_Chpl", + "type": "object" + }, + "_Chroma": { + "description": "Model Chroma", + "properties": { + "name": { + "const": "Chroma", + "default": "Chroma", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Chroma", + "type": "object" + }, + "_Cic": { + "description": "Model cic", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "inferior colliculus commissure", + "default": "inferior colliculus commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cic", + "default": "cic", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "633", + "default": "633", + "title": "Id", + "type": "string" + } + }, + "title": "_Cic", + "type": "object" + }, + "_Cing": { + "description": "Model cing", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cingulum bundle", + "default": "cingulum bundle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cing", + "default": "cing", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "940", + "default": "940", + "title": "Id", + "type": "string" + } + }, + "title": "_Cing", + "type": "object" + }, + "_Cl": { + "description": "Model CL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central lateral nucleus of the thalamus", + "default": "Central lateral nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CL", + "default": "CL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "575", + "default": "575", + "title": "Id", + "type": "string" + } + }, + "title": "_Cl", + "type": "object" + }, + "_Cla": { + "description": "Model CLA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Claustrum", + "default": "Claustrum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CLA", + "default": "CLA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "583", + "default": "583", + "title": "Id", + "type": "string" + } + }, + "title": "_Cla", + "type": "object" + }, + "_Cli": { + "description": "Model CLI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central linear nucleus raphe", + "default": "Central linear nucleus raphe", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CLI", + "default": "CLI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "591", + "default": "591", + "title": "Id", + "type": "string" + } + }, + "title": "_Cli", + "type": "object" + }, + "_Cm": { + "description": "Model CM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central medial nucleus of the thalamus", + "default": "Central medial nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CM", + "default": "CM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "599", + "default": "599", + "title": "Id", + "type": "string" + } + }, + "title": "_Cm", + "type": "object" + }, + "_Cn": { + "description": "Model CN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cochlear nuclei", + "default": "Cochlear nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CN", + "default": "CN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607", + "default": "607", + "title": "Id", + "type": "string" + } + }, + "title": "_Cn", + "type": "object" + }, + "_Cne": { + "description": "Model cne", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cranial nerves", + "default": "cranial nerves", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cne", + "default": "cne", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "967", + "default": "967", + "title": "Id", + "type": "string" + } + }, + "title": "_Cne", + "type": "object" + }, + "_Cnu": { + "description": "Model CNU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebral nuclei", + "default": "Cerebral nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CNU", + "default": "CNU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "623", + "default": "623", + "title": "Id", + "type": "string" + } + }, + "title": "_Cnu", + "type": "object" + }, + "_Coa": { + "description": "Model COA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical amygdalar area", + "default": "Cortical amygdalar area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COA", + "default": "COA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "631", + "default": "631", + "title": "Id", + "type": "string" + } + }, + "title": "_Coa", + "type": "object" + }, + "_Coaa": { + "description": "Model COAa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical amygdalar area, anterior part", + "default": "Cortical amygdalar area, anterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COAa", + "default": "COAa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "639", + "default": "639", + "title": "Id", + "type": "string" + } + }, + "title": "_Coaa", + "type": "object" + }, + "_Coap": { + "description": "Model COAp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical amygdalar area, posterior part", + "default": "Cortical amygdalar area, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COAp", + "default": "COAp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "647", + "default": "647", + "title": "Id", + "type": "string" + } + }, + "title": "_Coap", + "type": "object" + }, + "_Coapl": { + "description": "Model COApl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical amygdalar area, posterior part, lateral zone", + "default": "Cortical amygdalar area, posterior part, lateral zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COApl", + "default": "COApl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "655", + "default": "655", + "title": "Id", + "type": "string" + } + }, + "title": "_Coapl", + "type": "object" + }, + "_Coapm": { + "description": "Model COApm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical amygdalar area, posterior part, medial zone", + "default": "Cortical amygdalar area, posterior part, medial zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COApm", + "default": "COApm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "663", + "default": "663", + "title": "Id", + "type": "string" + } + }, + "title": "_Coapm", + "type": "object" + }, + "_Coherent_Scientific": { + "description": "Model Coherent Scientific", + "properties": { + "name": { + "const": "Coherent Scientific", + "default": "Coherent Scientific", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "031tysd23", + "default": "031tysd23", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Coherent_Scientific", + "type": "object" + }, + "_Columbia_University": { + "description": "Model Columbia University", + "properties": { + "name": { + "const": "Columbia University", + "default": "Columbia University", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Columbia", + "default": "Columbia", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00hj8s172", + "default": "00hj8s172", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Columbia_University", + "type": "object" + }, + "_Computar": { + "description": "Model Computar", + "properties": { + "name": { + "const": "Computar", + "default": "Computar", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Computar", + "type": "object" + }, + "_Conoptics": { + "description": "Model Conoptics", + "properties": { + "name": { + "const": "Conoptics", + "default": "Conoptics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Conoptics", + "type": "object" + }, + "_Copy": { + "description": "Model COPY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Copula pyramidis", + "default": "Copula pyramidis", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COPY", + "default": "COPY", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1033", + "default": "1033", + "title": "Id", + "type": "string" + } + }, + "title": "_Copy", + "type": "object" + }, + "_Cp": { + "description": "Model CP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Caudoputamen", + "default": "Caudoputamen", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CP", + "default": "CP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "672", + "default": "672", + "title": "Id", + "type": "string" + } + }, + "title": "_Cp", + "type": "object" + }, + "_Cpd": { + "description": "Model cpd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebal peduncle", + "default": "cerebal peduncle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cpd", + "default": "cpd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "924", + "default": "924", + "title": "Id", + "type": "string" + } + }, + "title": "_Cpd", + "type": "object" + }, + "_Cs": { + "description": "Model CS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior central nucleus raphe", + "default": "Superior central nucleus raphe", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CS", + "default": "CS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "679", + "default": "679", + "title": "Id", + "type": "string" + } + }, + "title": "_Cs", + "type": "object" + }, + "_Csc": { + "description": "Model csc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "superior colliculus commissure", + "default": "superior colliculus commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "csc", + "default": "csc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "336", + "default": "336", + "title": "Id", + "type": "string" + } + }, + "title": "_Csc", + "type": "object" + }, + "_Cst": { + "description": "Model cst", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corticospinal tract", + "default": "corticospinal tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cst", + "default": "cst", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "784", + "default": "784", + "title": "Id", + "type": "string" + } + }, + "title": "_Cst", + "type": "object" + }, + "_Ctx": { + "description": "Model CTX", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebral cortex", + "default": "Cerebral cortex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CTX", + "default": "CTX", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "688", + "default": "688", + "title": "Id", + "type": "string" + } + }, + "title": "_Ctx", + "type": "object" + }, + "_Ctxpl": { + "description": "Model CTXpl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical plate", + "default": "Cortical plate", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CTXpl", + "default": "CTXpl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "695", + "default": "695", + "title": "Id", + "type": "string" + } + }, + "title": "_Ctxpl", + "type": "object" + }, + "_Ctxsp": { + "description": "Model CTXsp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical subplate", + "default": "Cortical subplate", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CTXsp", + "default": "CTXsp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "703", + "default": "703", + "title": "Id", + "type": "string" + } + }, + "title": "_Ctxsp", + "type": "object" + }, + "_Cu": { + "description": "Model CU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cuneate nucleus", + "default": "Cuneate nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CU", + "default": "CU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "711", + "default": "711", + "title": "Id", + "type": "string" + } + }, + "title": "_Cu", + "type": "object" + }, + "_Cuf": { + "description": "Model cuf", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cuneate fascicle", + "default": "cuneate fascicle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cuf", + "default": "cuf", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "380", + "default": "380", + "title": "Id", + "type": "string" + } + }, + "title": "_Cuf", + "type": "object" + }, + "_Cul": { + "description": "Model CUL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Culmen", + "default": "Culmen", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CUL", + "default": "CUL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "928", + "default": "928", + "title": "Id", + "type": "string" + } + }, + "title": "_Cul", + "type": "object" + }, + "_Cul4_5": { + "description": "Model CUL4, 5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lobules IV-V", + "default": "Lobules IV-V", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CUL4, 5", + "default": "CUL4, 5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1091", + "default": "1091", + "title": "Id", + "type": "string" + } + }, + "title": "_Cul4_5", + "type": "object" + }, + "_Cun": { + "description": "Model CUN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cuneiform nucleus", + "default": "Cuneiform nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CUN", + "default": "CUN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "616", + "default": "616", + "title": "Id", + "type": "string" + } + }, + "title": "_Cun", + "type": "object" + }, + "_Custom": { + "description": "Model Custom", + "properties": { + "name": { + "const": "Custom", + "default": "Custom", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Custom", + "type": "object" + }, + "_Cviiin": { + "description": "Model cVIIIn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cochlear nerve", + "default": "cochlear nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cVIIIn", + "default": "cVIIIn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "948", + "default": "948", + "title": "Id", + "type": "string" + } + }, + "title": "_Cviiin", + "type": "object" + }, + "_Das": { + "description": "Model das", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal acoustic stria", + "default": "dorsal acoustic stria", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "das", + "default": "das", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "506", + "default": "506", + "title": "Id", + "type": "string" + } + }, + "title": "_Das", + "type": "object" + }, + "_Dc": { + "description": "Model dc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal column", + "default": "dorsal column", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "dc", + "default": "dc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "514", + "default": "514", + "title": "Id", + "type": "string" + } + }, + "title": "_Dc", + "type": "object" + }, + "_Dcn": { + "description": "Model DCN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal column nuclei", + "default": "Dorsal column nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DCN", + "default": "DCN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "720", + "default": "720", + "title": "Id", + "type": "string" + } + }, + "title": "_Dcn", + "type": "object" + }, + "_Dco": { + "description": "Model DCO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal cochlear nucleus", + "default": "Dorsal cochlear nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DCO", + "default": "DCO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "96", + "default": "96", + "title": "Id", + "type": "string" + } + }, + "title": "_Dco", + "type": "object" + }, + "_Dec": { + "description": "Model DEC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Declive (VI)", + "default": "Declive (VI)", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DEC", + "default": "DEC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "936", + "default": "936", + "title": "Id", + "type": "string" + } + }, + "title": "_Dec", + "type": "object" + }, + "_Deltoid": { + "description": "Model deltoid", + "properties": { + "name": { + "const": "deltoid", + "default": "deltoid", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_18177", + "default": "EMAPA_18177", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Deltoid", + "type": "object" + }, + "_Df": { + "description": "Model df", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal fornix", + "default": "dorsal fornix", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "df", + "default": "df", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "530", + "default": "530", + "title": "Id", + "type": "string" + } + }, + "title": "_Df", + "type": "object" + }, + "_Dg": { + "description": "Model DG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dentate gyrus", + "default": "Dentate gyrus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DG", + "default": "DG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "726", + "default": "726", + "title": "Id", + "type": "string" + } + }, + "title": "_Dg", + "type": "object" + }, + "_Dg_Mo": { + "description": "Model DG-mo", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dentate gyrus, molecular layer", + "default": "Dentate gyrus, molecular layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DG-mo", + "default": "DG-mo", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "10703", + "default": "10703", + "title": "Id", + "type": "string" + } + }, + "title": "_Dg_Mo", + "type": "object" + }, + "_Dg_Po": { + "description": "Model DG-po", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dentate gyrus, polymorph layer", + "default": "Dentate gyrus, polymorph layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DG-po", + "default": "DG-po", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "10704", + "default": "10704", + "title": "Id", + "type": "string" + } + }, + "title": "_Dg_Po", + "type": "object" + }, + "_Dg_Sg": { + "description": "Model DG-sg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dentate gyrus, granule cell layer", + "default": "Dentate gyrus, granule cell layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DG-sg", + "default": "DG-sg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "632", + "default": "632", + "title": "Id", + "type": "string" + } + }, + "title": "_Dg_Sg", + "type": "object" + }, + "_Dhc": { + "description": "Model dhc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal hippocampal commissure", + "default": "dorsal hippocampal commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "dhc", + "default": "dhc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "443", + "default": "443", + "title": "Id", + "type": "string" + } + }, + "title": "_Dhc", + "type": "object" + }, + "_Digikey": { + "description": "Model DigiKey", + "properties": { + "name": { + "const": "DigiKey", + "default": "DigiKey", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Digikey", + "type": "object" + }, + "_Dmh": { + "description": "Model DMH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsomedial nucleus of the hypothalamus", + "default": "Dorsomedial nucleus of the hypothalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DMH", + "default": "DMH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "830", + "default": "830", + "title": "Id", + "type": "string" + } + }, + "title": "_Dmh", + "type": "object" + }, + "_Dmx": { + "description": "Model DMX", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal motor nucleus of the vagus nerve", + "default": "Dorsal motor nucleus of the vagus nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DMX", + "default": "DMX", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "839", + "default": "839", + "title": "Id", + "type": "string" + } + }, + "title": "_Dmx", + "type": "object" + }, + "_Dn": { + "description": "Model DN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dentate nucleus", + "default": "Dentate nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DN", + "default": "DN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "846", + "default": "846", + "title": "Id", + "type": "string" + } + }, + "title": "_Dn", + "type": "object" + }, + "_Dodotronic": { + "description": "Model Dodotronic", + "properties": { + "name": { + "const": "Dodotronic", + "default": "Dodotronic", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Dodotronic", + "type": "object" + }, + "_Doric": { + "description": "Model Doric", + "properties": { + "name": { + "const": "Doric", + "default": "Doric", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "059n53q30", + "default": "059n53q30", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Doric", + "type": "object" + }, + "_Dorpm": { + "description": "Model DORpm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Thalamus, polymodal association cortex related", + "default": "Thalamus, polymodal association cortex related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DORpm", + "default": "DORpm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "856", + "default": "856", + "title": "Id", + "type": "string" + } + }, + "title": "_Dorpm", + "type": "object" + }, + "_Dorsm": { + "description": "Model DORsm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Thalamus, sensory-motor cortex related", + "default": "Thalamus, sensory-motor cortex related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DORsm", + "default": "DORsm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "864", + "default": "864", + "title": "Id", + "type": "string" + } + }, + "title": "_Dorsm", + "type": "object" + }, + "_Dp": { + "description": "Model DP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal peduncular area", + "default": "Dorsal peduncular area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DP", + "default": "DP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "814", + "default": "814", + "title": "Id", + "type": "string" + } + }, + "title": "_Dp", + "type": "object" + }, + "_Dr": { + "description": "Model DR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal nucleus raphe", + "default": "Dorsal nucleus raphe", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DR", + "default": "DR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "872", + "default": "872", + "title": "Id", + "type": "string" + } + }, + "title": "_Dr", + "type": "object" + }, + "_Drt": { + "description": "Model drt", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal roots", + "default": "dorsal roots", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "drt", + "default": "drt", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "792", + "default": "792", + "title": "Id", + "type": "string" + } + }, + "title": "_Drt", + "type": "object" + }, + "_Dscp": { + "description": "Model dscp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "superior cerebellar peduncle decussation", + "default": "superior cerebellar peduncle decussation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "dscp", + "default": "dscp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "812", + "default": "812", + "title": "Id", + "type": "string" + } + }, + "title": "_Dscp", + "type": "object" + }, + "_Dt": { + "description": "Model DT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal terminal nucleus of the accessory optic tract", + "default": "Dorsal terminal nucleus of the accessory optic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DT", + "default": "DT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "75", + "default": "75", + "title": "Id", + "type": "string" + } + }, + "title": "_Dt", + "type": "object" + }, + "_Dtd": { + "description": "Model dtd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "doral tegmental decussation", + "default": "doral tegmental decussation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "dtd", + "default": "dtd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1060", + "default": "1060", + "title": "Id", + "type": "string" + } + }, + "title": "_Dtd", + "type": "object" + }, + "_Dtn": { + "description": "Model DTN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal tegmental nucleus", + "default": "Dorsal tegmental nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DTN", + "default": "DTN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "880", + "default": "880", + "title": "Id", + "type": "string" + } + }, + "title": "_Dtn", + "type": "object" + }, + "_Ealing": { + "description": "Model Ealing", + "properties": { + "name": { + "const": "Ealing", + "default": "Ealing", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Ealing", + "type": "object" + }, + "_Ec": { + "description": "Model ec", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "external capsule", + "default": "external capsule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ec", + "default": "ec", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "579", + "default": "579", + "title": "Id", + "type": "string" + } + }, + "title": "_Ec", + "type": "object" + }, + "_Ect": { + "description": "Model ECT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area", + "default": "Ectorhinal area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT", + "default": "ECT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "895", + "default": "895", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect", + "type": "object" + }, + "_Ect1": { + "description": "Model ECT1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area/Layer 1", + "default": "Ectorhinal area/Layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT1", + "default": "ECT1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "836", + "default": "836", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect1", + "type": "object" + }, + "_Ect2_3": { + "description": "Model ECT2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area/Layer 2/3", + "default": "Ectorhinal area/Layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT2/3", + "default": "ECT2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "427", + "default": "427", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect2_3", + "type": "object" + }, + "_Ect5": { + "description": "Model ECT5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area/Layer 5", + "default": "Ectorhinal area/Layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT5", + "default": "ECT5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "988", + "default": "988", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect5", + "type": "object" + }, + "_Ect6A": { + "description": "Model ECT6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area/Layer 6a", + "default": "Ectorhinal area/Layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT6a", + "default": "ECT6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "977", + "default": "977", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect6A", + "type": "object" + }, + "_Ect6B": { + "description": "Model ECT6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area/Layer 6b", + "default": "Ectorhinal area/Layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT6b", + "default": "ECT6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1045", + "default": "1045", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect6B", + "type": "object" + }, + "_Ecu": { + "description": "Model ECU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "External cuneate nucleus", + "default": "External cuneate nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECU", + "default": "ECU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "903", + "default": "903", + "title": "Id", + "type": "string" + } + }, + "title": "_Ecu", + "type": "object" + }, + "_Edmund_Optics": { + "description": "Model Edmund Optics", + "properties": { + "name": { + "const": "Edmund Optics", + "default": "Edmund Optics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "01j1gwp17", + "default": "01j1gwp17", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Edmund_Optics", + "type": "object" + }, + "_Ee": { + "description": "Model ee", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum, extreme capsule", + "default": "corpus callosum, extreme capsule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ee", + "default": "ee", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "964", + "default": "964", + "title": "Id", + "type": "string" + } + }, + "title": "_Ee", + "type": "object" + }, + "_Em": { + "description": "Model em", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "external medullary lamina of the thalamus", + "default": "external medullary lamina of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "em", + "default": "em", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1092", + "default": "1092", + "title": "Id", + "type": "string" + } + }, + "title": "_Em", + "type": "object" + }, + "_Emapa": { + "additionalProperties": false, + "description": "Model EMAPA", + "properties": { + "name": { + "const": "Edinburgh Mouse Atlas Project", + "default": "Edinburgh Mouse Atlas Project", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "EMAPA", + "default": "EMAPA", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Emapa", + "type": "object" + }, + "_Emory_University": { + "description": "Model Emory University", + "properties": { + "name": { + "const": "Emory University", + "default": "Emory University", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Emory", + "default": "Emory", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03czfpz43", + "default": "03czfpz43", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Emory_University", + "type": "object" + }, + "_Ent": { + "description": "Model ENT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area", + "default": "Entorhinal area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENT", + "default": "ENT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "909", + "default": "909", + "title": "Id", + "type": "string" + } + }, + "title": "_Ent", + "type": "object" + }, + "_Entl": { + "description": "Model ENTl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part", + "default": "Entorhinal area, lateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl", + "default": "ENTl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "918", + "default": "918", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl", + "type": "object" + }, + "_Entl1": { + "description": "Model ENTl1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part, layer 1", + "default": "Entorhinal area, lateral part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl1", + "default": "ENTl1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1121", + "default": "1121", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl1", + "type": "object" + }, + "_Entl2": { + "description": "Model ENTl2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part, layer 2", + "default": "Entorhinal area, lateral part, layer 2", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl2", + "default": "ENTl2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "20", + "default": "20", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl2", + "type": "object" + }, + "_Entl3": { + "description": "Model ENTl3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part, layer 3", + "default": "Entorhinal area, lateral part, layer 3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl3", + "default": "ENTl3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "52", + "default": "52", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl3", + "type": "object" + }, + "_Entl5": { + "description": "Model ENTl5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part, layer 5", + "default": "Entorhinal area, lateral part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl5", + "default": "ENTl5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "139", + "default": "139", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl5", + "type": "object" + }, + "_Entl6A": { + "description": "Model ENTl6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part, layer 6a", + "default": "Entorhinal area, lateral part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl6a", + "default": "ENTl6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "28", + "default": "28", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl6A", + "type": "object" + }, + "_Entm": { + "description": "Model ENTm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone", + "default": "Entorhinal area, medial part, dorsal zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm", + "default": "ENTm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "926", + "default": "926", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm", + "type": "object" + }, + "_Entm1": { + "description": "Model ENTm1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone, layer 1", + "default": "Entorhinal area, medial part, dorsal zone, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm1", + "default": "ENTm1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "526", + "default": "526", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm1", + "type": "object" + }, + "_Entm2": { + "description": "Model ENTm2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone, layer 2", + "default": "Entorhinal area, medial part, dorsal zone, layer 2", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm2", + "default": "ENTm2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "543", + "default": "543", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm2", + "type": "object" + }, + "_Entm3": { + "description": "Model ENTm3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone, layer 3", + "default": "Entorhinal area, medial part, dorsal zone, layer 3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm3", + "default": "ENTm3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "664", + "default": "664", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm3", + "type": "object" + }, + "_Entm5": { + "description": "Model ENTm5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone, layer 5", + "default": "Entorhinal area, medial part, dorsal zone, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm5", + "default": "ENTm5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "727", + "default": "727", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm5", + "type": "object" + }, + "_Entm6": { + "description": "Model ENTm6", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone, layer 6", + "default": "Entorhinal area, medial part, dorsal zone, layer 6", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm6", + "default": "ENTm6", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "743", + "default": "743", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm6", + "type": "object" + }, + "_Ep": { + "description": "Model EP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Endopiriform nucleus", + "default": "Endopiriform nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "EP", + "default": "EP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "942", + "default": "942", + "title": "Id", + "type": "string" + } + }, + "title": "_Ep", + "type": "object" + }, + "_Epd": { + "description": "Model EPd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Endopiriform nucleus, dorsal part", + "default": "Endopiriform nucleus, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "EPd", + "default": "EPd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "952", + "default": "952", + "title": "Id", + "type": "string" + } + }, + "title": "_Epd", + "type": "object" + }, + "_Epi": { + "description": "Model EPI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Epithalamus", + "default": "Epithalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "EPI", + "default": "EPI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "958", + "default": "958", + "title": "Id", + "type": "string" + } + }, + "title": "_Epi", + "type": "object" + }, + "_Eps": { + "description": "Model eps", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "extrapyramidal fiber systems", + "default": "extrapyramidal fiber systems", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "eps", + "default": "eps", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1000", + "default": "1000", + "title": "Id", + "type": "string" + } + }, + "title": "_Eps", + "type": "object" + }, + "_Epsc": { + "description": "Model epsc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebral nuclei related", + "default": "cerebral nuclei related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "epsc", + "default": "epsc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "760", + "default": "760", + "title": "Id", + "type": "string" + } + }, + "title": "_Epsc", + "type": "object" + }, + "_Epv": { + "description": "Model EPv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Endopiriform nucleus, ventral part", + "default": "Endopiriform nucleus, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "EPv", + "default": "EPv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "966", + "default": "966", + "title": "Id", + "type": "string" + } + }, + "title": "_Epv", + "type": "object" + }, + "_Eth": { + "description": "Model Eth", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ethmoid nucleus of the thalamus", + "default": "Ethmoid nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "Eth", + "default": "Eth", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "560581551", + "default": "560581551", + "title": "Id", + "type": "string" + } + }, + "title": "_Eth", + "type": "object" + }, + "_Euresys": { + "description": "Model Euresys", + "properties": { + "name": { + "const": "Euresys", + "default": "Euresys", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Euresys", + "type": "object" + }, + "_Ew": { + "description": "Model EW", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Edinger-Westphal nucleus", + "default": "Edinger-Westphal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "EW", + "default": "EW", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "975", + "default": "975", + "title": "Id", + "type": "string" + } + }, + "title": "_Ew", + "type": "object" + }, + "_Extensor_Carpi_Radialis_Longus": { + "description": "Model extensor carpi radialis longus", + "properties": { + "name": { + "const": "extensor carpi radialis longus", + "default": "extensor carpi radialis longus", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_36189", + "default": "EMAPA_36189", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Extensor_Carpi_Radialis_Longus", + "type": "object" + }, + "_Extensor_Carpi_Ulnaris": { + "description": "Model extensor carpi ulnaris", + "properties": { + "name": { + "const": "extensor carpi ulnaris", + "default": "extensor carpi ulnaris", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_36190", + "default": "EMAPA_36190", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Extensor_Carpi_Ulnaris", + "type": "object" + }, + "_Extensor_Digitorum_Communis": { + "description": "Model extensor digitorum communis", + "properties": { + "name": { + "const": "extensor digitorum communis", + "default": "extensor digitorum communis", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_36191", + "default": "EMAPA_36191", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Extensor_Digitorum_Communis", + "type": "object" + }, + "_Extensor_Digitorum_Lateralis": { + "description": "Model extensor digitorum lateralis", + "properties": { + "name": { + "const": "extensor digitorum lateralis", + "default": "extensor digitorum lateralis", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_36192", + "default": "EMAPA_36192", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Extensor_Digitorum_Lateralis", + "type": "object" + }, + "_Fa": { + "description": "Model fa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum, anterior forceps", + "default": "corpus callosum, anterior forceps", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fa", + "default": "fa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "956", + "default": "956", + "title": "Id", + "type": "string" + } + }, + "title": "_Fa", + "type": "object" + }, + "_Fc": { + "description": "Model FC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Fasciola cinerea", + "default": "Fasciola cinerea", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FC", + "default": "FC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "982", + "default": "982", + "title": "Id", + "type": "string" + } + }, + "title": "_Fc", + "type": "object" + }, + "_Ff": { + "description": "Model FF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Fields of Forel", + "default": "Fields of Forel", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FF", + "default": "FF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "804", + "default": "804", + "title": "Id", + "type": "string" + } + }, + "title": "_Ff", + "type": "object" + }, + "_Fi": { + "description": "Model fi", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "fimbria", + "default": "fimbria", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fi", + "default": "fi", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "603", + "default": "603", + "title": "Id", + "type": "string" + } + }, + "title": "_Fi", + "type": "object" + }, + "_Fiber_Tracts": { + "description": "Model fiber tracts", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "fiber tracts", + "default": "fiber tracts", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fiber tracts", + "default": "fiber tracts", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1009", + "default": "1009", + "title": "Id", + "type": "string" + } + }, + "title": "_Fiber_Tracts", + "type": "object" + }, + "_Fl": { + "description": "Model FL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Flocculus", + "default": "Flocculus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FL", + "default": "FL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1049", + "default": "1049", + "title": "Id", + "type": "string" + } + }, + "title": "_Fl", + "type": "object" + }, + "_Flexor_Carpi_Radialis": { + "description": "Model flexor carpi radialis", + "properties": { + "name": { + "const": "flexor carpi radialis", + "default": "flexor carpi radialis", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_36197", + "default": "EMAPA_36197", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Flexor_Carpi_Radialis", + "type": "object" + }, + "_Flexor_Carpi_Ulnaris": { + "description": "Model flexor carpi ulnaris", + "properties": { + "name": { + "const": "flexor carpi ulnaris", + "default": "flexor carpi ulnaris", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_36198", + "default": "EMAPA_36198", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Flexor_Carpi_Ulnaris", + "type": "object" + }, + "_Flexor_Digitorum_Profundus": { + "description": "Model flexor digitorum profundus", + "properties": { + "name": { + "const": "flexor digitorum profundus", + "default": "flexor digitorum profundus", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_19319", + "default": "EMAPA_19319", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Flexor_Digitorum_Profundus", + "type": "object" + }, + "_Fn": { + "description": "Model FN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Fastigial nucleus", + "default": "Fastigial nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FN", + "default": "FN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "989", + "default": "989", + "title": "Id", + "type": "string" + } + }, + "title": "_Fn", + "type": "object" + }, + "_Forelimb": { + "description": "Model forelimb", + "properties": { + "name": { + "const": "forelimb", + "default": "forelimb", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_17412", + "default": "EMAPA_17412", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Forelimb", + "type": "object" + }, + "_Fotu": { + "description": "Model FOTU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Folium-tuber vermis (VII)", + "default": "Folium-tuber vermis (VII)", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FOTU", + "default": "FOTU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "944", + "default": "944", + "title": "Id", + "type": "string" + } + }, + "title": "_Fotu", + "type": "object" + }, + "_Fp": { + "description": "Model fp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum, posterior forceps", + "default": "corpus callosum, posterior forceps", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fp", + "default": "fp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "971", + "default": "971", + "title": "Id", + "type": "string" + } + }, + "title": "_Fp", + "type": "object" + }, + "_Fr": { + "description": "Model fr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "fasciculus retroflexus", + "default": "fasciculus retroflexus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fr", + "default": "fr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "595", + "default": "595", + "title": "Id", + "type": "string" + } + }, + "title": "_Fr", + "type": "object" + }, + "_Frp": { + "description": "Model FRP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, cerebral cortex", + "default": "Frontal pole, cerebral cortex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP", + "default": "FRP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "184", + "default": "184", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp", + "type": "object" + }, + "_Frp1": { + "description": "Model FRP1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, layer 1", + "default": "Frontal pole, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP1", + "default": "FRP1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "68", + "default": "68", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp1", + "type": "object" + }, + "_Frp2_3": { + "description": "Model FRP2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, layer 2/3", + "default": "Frontal pole, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP2/3", + "default": "FRP2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "667", + "default": "667", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp2_3", + "type": "object" + }, + "_Frp5": { + "description": "Model FRP5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, layer 5", + "default": "Frontal pole, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP5", + "default": "FRP5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "526157192", + "default": "526157192", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp5", + "type": "object" + }, + "_Frp6A": { + "description": "Model FRP6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, layer 6a", + "default": "Frontal pole, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP6a", + "default": "FRP6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "526157196", + "default": "526157196", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp6A", + "type": "object" + }, + "_Frp6B": { + "description": "Model FRP6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, layer 6b", + "default": "Frontal pole, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP6b", + "default": "FRP6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "526322264", + "default": "526322264", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp6B", + "type": "object" + }, + "_Fs": { + "description": "Model FS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Fundus of striatum", + "default": "Fundus of striatum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FS", + "default": "FS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "998", + "default": "998", + "title": "Id", + "type": "string" + } + }, + "title": "_Fs", + "type": "object" + }, + "_Fujinon": { + "description": "Model Fujinon", + "properties": { + "name": { + "const": "Fujinon", + "default": "Fujinon", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Fujinon", + "type": "object" + }, + "_Fx": { + "description": "Model fx", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "columns of the fornix", + "default": "columns of the fornix", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fx", + "default": "fx", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "436", + "default": "436", + "title": "Id", + "type": "string" + } + }, + "title": "_Fx", + "type": "object" + }, + "_Fxpo": { + "description": "Model fxpo", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "postcommissural fornix", + "default": "postcommissural fornix", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fxpo", + "default": "fxpo", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "737", + "default": "737", + "title": "Id", + "type": "string" + } + }, + "title": "_Fxpo", + "type": "object" + }, + "_Fxs": { + "description": "Model fxs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "fornix system", + "default": "fornix system", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fxs", + "default": "fxs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1099", + "default": "1099", + "title": "Id", + "type": "string" + } + }, + "title": "_Fxs", + "type": "object" + }, + "_Gend": { + "description": "Model GENd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Geniculate group, dorsal thalamus", + "default": "Geniculate group, dorsal thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GENd", + "default": "GENd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1008", + "default": "1008", + "title": "Id", + "type": "string" + } + }, + "title": "_Gend", + "type": "object" + }, + "_Genv": { + "description": "Model GENv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Geniculate group, ventral thalamus", + "default": "Geniculate group, ventral thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GENv", + "default": "GENv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1014", + "default": "1014", + "title": "Id", + "type": "string" + } + }, + "title": "_Genv", + "type": "object" + }, + "_Gpe": { + "description": "Model GPe", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Globus pallidus, external segment", + "default": "Globus pallidus, external segment", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GPe", + "default": "GPe", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1022", + "default": "1022", + "title": "Id", + "type": "string" + } + }, + "title": "_Gpe", + "type": "object" + }, + "_Gpi": { + "description": "Model GPi", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Globus pallidus, internal segment", + "default": "Globus pallidus, internal segment", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GPi", + "default": "GPi", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1031", + "default": "1031", + "title": "Id", + "type": "string" + } + }, + "title": "_Gpi", + "type": "object" + }, + "_Gr": { + "description": "Model GR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gracile nucleus", + "default": "Gracile nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GR", + "default": "GR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1039", + "default": "1039", + "title": "Id", + "type": "string" + } + }, + "title": "_Gr", + "type": "object" + }, + "_Grey": { + "description": "Model grey", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basic cell groups and regions", + "default": "Basic cell groups and regions", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "grey", + "default": "grey", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "8", + "default": "8", + "title": "Id", + "type": "string" + } + }, + "title": "_Grey", + "type": "object" + }, + "_Grn": { + "description": "Model GRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gigantocellular reticular nucleus", + "default": "Gigantocellular reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GRN", + "default": "GRN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1048", + "default": "1048", + "title": "Id", + "type": "string" + } + }, + "title": "_Grn", + "type": "object" + }, + "_Gu": { + "description": "Model GU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas", + "default": "Gustatory areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU", + "default": "GU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1057", + "default": "1057", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu", + "type": "object" + }, + "_Gu1": { + "description": "Model GU1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 1", + "default": "Gustatory areas, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU1", + "default": "GU1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "36", + "default": "36", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu1", + "type": "object" + }, + "_Gu2_3": { + "description": "Model GU2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 2/3", + "default": "Gustatory areas, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU2/3", + "default": "GU2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "180", + "default": "180", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu2_3", + "type": "object" + }, + "_Gu4": { + "description": "Model GU4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 4", + "default": "Gustatory areas, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU4", + "default": "GU4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "148", + "default": "148", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu4", + "type": "object" + }, + "_Gu5": { + "description": "Model GU5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 5", + "default": "Gustatory areas, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU5", + "default": "GU5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "187", + "default": "187", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu5", + "type": "object" + }, + "_Gu6A": { + "description": "Model GU6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 6a", + "default": "Gustatory areas, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU6a", + "default": "GU6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "638", + "default": "638", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu6A", + "type": "object" + }, + "_Gu6B": { + "description": "Model GU6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 6b", + "default": "Gustatory areas, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU6b", + "default": "GU6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "662", + "default": "662", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu6B", + "type": "object" + }, + "_Gviin": { + "description": "Model gVIIn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "genu of the facial nerve", + "default": "genu of the facial nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "gVIIn", + "default": "gVIIn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1116", + "default": "1116", + "title": "Id", + "type": "string" + } + }, + "title": "_Gviin", + "type": "object" + }, + "_Hamamatsu": { + "description": "Model Hamamatsu", + "properties": { + "name": { + "const": "Hamamatsu", + "default": "Hamamatsu", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03natb733", + "default": "03natb733", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Hamamatsu", + "type": "object" + }, + "_Hamilton": { + "description": "Model Hamilton", + "properties": { + "name": { + "const": "Hamilton", + "default": "Hamilton", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Hamilton", + "type": "object" + }, + "_Hata": { + "description": "Model HATA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hippocampo-amygdalar transition area", + "default": "Hippocampo-amygdalar transition area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HATA", + "default": "HATA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "589508447", + "default": "589508447", + "title": "Id", + "type": "string" + } + }, + "title": "_Hata", + "type": "object" + }, + "_Hb": { + "description": "Model HB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hindbrain", + "default": "Hindbrain", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HB", + "default": "HB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1065", + "default": "1065", + "title": "Id", + "type": "string" + } + }, + "title": "_Hb", + "type": "object" + }, + "_Hbc": { + "description": "Model hbc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "habenular commissure", + "default": "habenular commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "hbc", + "default": "hbc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "611", + "default": "611", + "title": "Id", + "type": "string" + } + }, + "title": "_Hbc", + "type": "object" + }, + "_Hc": { + "description": "Model hc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "hippocampal commissures", + "default": "hippocampal commissures", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "hc", + "default": "hc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "618", + "default": "618", + "title": "Id", + "type": "string" + } + }, + "title": "_Hc", + "type": "object" + }, + "_Head": { + "description": "Model head", + "properties": { + "name": { + "const": "head", + "default": "head", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_31858", + "default": "EMAPA_31858", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Head", + "type": "object" + }, + "_Hem": { + "description": "Model HEM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hemispheric regions", + "default": "Hemispheric regions", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HEM", + "default": "HEM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1073", + "default": "1073", + "title": "Id", + "type": "string" + } + }, + "title": "_Hem", + "type": "object" + }, + "_Hindlimb": { + "description": "Model hindlimb", + "properties": { + "name": { + "const": "hindlimb", + "default": "hindlimb", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_17458", + "default": "EMAPA_17458", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Hindlimb", + "type": "object" + }, + "_Hip": { + "description": "Model HIP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hippocampal region", + "default": "Hippocampal region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HIP", + "default": "HIP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1080", + "default": "1080", + "title": "Id", + "type": "string" + } + }, + "title": "_Hip", + "type": "object" + }, + "_Homo_Sapiens": { + "description": "Model Homo sapiens", + "properties": { + "name": { + "const": "Homo sapiens", + "default": "Homo sapiens", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "National Center for Biotechnology Information", + "abbreviation": "NCBI" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "NCBI:txid9606", + "default": "NCBI:txid9606", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Homo_Sapiens", + "type": "object" + }, + "_Hpf": { + "description": "Model HPF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hippocampal formation", + "default": "Hippocampal formation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HPF", + "default": "HPF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1089", + "default": "1089", + "title": "Id", + "type": "string" + } + }, + "title": "_Hpf", + "type": "object" + }, + "_Huazhong_University_Of_Science_And_Technology": { + "description": "Model Huazhong University of Science and Technology", + "properties": { + "name": { + "const": "Huazhong University of Science and Technology", + "default": "Huazhong University of Science and Technology", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "HUST", + "default": "HUST", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "title": "Manufacturer" + "title": "Registry" + }, + "registry_identifier": { + "const": "00p991c53", + "default": "00p991c53", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Huazhong_University_Of_Science_And_Technology", + "type": "object" + }, + "_Hy": { + "description": "Model HY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hypothalamus", + "default": "Hypothalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HY", + "default": "HY", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1097", + "default": "1097", + "title": "Id", + "type": "string" + } + }, + "title": "_Hy", + "type": "object" + }, + "_I5": { + "description": "Model I5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Intertrigeminal nucleus", + "default": "Intertrigeminal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "I5", + "default": "I5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "549009227", + "default": "549009227", + "title": "Id", + "type": "string" + } + }, + "title": "_I5", + "type": "object" + }, + "_Ia": { + "description": "Model IA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Intercalated amygdalar nucleus", + "default": "Intercalated amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IA", + "default": "IA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1105", + "default": "1105", + "title": "Id", + "type": "string" + } + }, + "title": "_Ia", + "type": "object" + }, + "_Iad": { + "description": "Model IAD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interanterodorsal nucleus of the thalamus", + "default": "Interanterodorsal nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IAD", + "default": "IAD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1113", + "default": "1113", + "title": "Id", + "type": "string" + } + }, + "title": "_Iad", + "type": "object" + }, + "_Iam": { + "description": "Model IAM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interanteromedial nucleus of the thalamus", + "default": "Interanteromedial nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IAM", + "default": "IAM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1120", + "default": "1120", + "title": "Id", + "type": "string" + } + }, + "title": "_Iam", + "type": "object" + }, + "_Ib": { + "description": "Model IB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interbrain", + "default": "Interbrain", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IB", + "default": "IB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1129", + "default": "1129", + "title": "Id", + "type": "string" + } + }, + "title": "_Ib", + "type": "object" + }, + "_Ic": { + "description": "Model IC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Inferior colliculus", + "default": "Inferior colliculus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IC", + "default": "IC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "4", + "default": "4", + "title": "Id", + "type": "string" + } + }, + "title": "_Ic", + "type": "object" + }, + "_Icb": { + "description": "Model ICB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Infracerebellar nucleus", + "default": "Infracerebellar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ICB", + "default": "ICB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "372", + "default": "372", + "title": "Id", + "type": "string" + } + }, + "title": "_Icb", + "type": "object" + }, + "_Icc": { + "description": "Model ICc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Inferior colliculus, central nucleus", + "default": "Inferior colliculus, central nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ICc", + "default": "ICc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "811", + "default": "811", + "title": "Id", + "type": "string" + } + }, + "title": "_Icc", + "type": "object" + }, + "_Icd": { + "description": "Model ICd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Inferior colliculus, dorsal nucleus", + "default": "Inferior colliculus, dorsal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ICd", + "default": "ICd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "820", + "default": "820", + "title": "Id", + "type": "string" + } + }, + "title": "_Icd", + "type": "object" + }, + "_Ice": { + "description": "Model ICe", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Inferior colliculus, external nucleus", + "default": "Inferior colliculus, external nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ICe", + "default": "ICe", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "828", + "default": "828", + "title": "Id", + "type": "string" + } + }, + "title": "_Ice", + "type": "object" + }, + "_Icp": { + "description": "Model icp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "inferior cerebellar peduncle", + "default": "inferior cerebellar peduncle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "icp", + "default": "icp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1123", + "default": "1123", + "title": "Id", + "type": "string" + } + }, + "title": "_Icp", + "type": "object" + }, + "_If": { + "description": "Model IF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interfascicular nucleus raphe", + "default": "Interfascicular nucleus raphe", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IF", + "default": "IF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "12", + "default": "12", + "title": "Id", + "type": "string" + } + }, + "title": "_If", + "type": "object" + }, + "_Ig": { + "description": "Model IG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Induseum griseum", + "default": "Induseum griseum", + "title": "Name", + "type": "string" }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Model" + "acronym": { + "const": "IG", + "default": "IG", + "title": "Acronym", + "type": "string" }, - "path_to_cad": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" + "id": { + "const": "19", + "default": "19", + "title": "Id", + "type": "string" + } + }, + "title": "_Ig", + "type": "object" + }, + "_Igl": { + "description": "Model IGL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "port_index": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Port index" + "name": { + "const": "Intergeniculate leaflet of the lateral geniculate complex", + "default": "Intergeniculate leaflet of the lateral geniculate complex", + "title": "Name", + "type": "string" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "acronym": { + "const": "IGL", + "default": "IGL", + "title": "Acronym", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "id": { + "const": "27", + "default": "27", + "title": "Id", + "type": "string" + } + }, + "title": "_Igl", + "type": "object" + }, + "_Iii": { + "description": "Model III", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "array_type": { - "$ref": "#/$defs/MyomatrixArrayType", - "title": "Array type" + "name": { + "const": "Oculomotor nucleus", + "default": "Oculomotor nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "III", + "default": "III", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "35", + "default": "35", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "array_type" - ], - "title": "MyomatrixArray", + "title": "_Iii", "type": "object" }, - "MyomatrixArrayType": { - "description": "Type of Myomatrix array", - "enum": [ - "Injected", - "Sutured" - ], - "title": "MyomatrixArrayType", - "type": "string" + "_Iiin": { + "description": "Model IIIn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "oculomotor nerve", + "default": "oculomotor nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IIIn", + "default": "IIIn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "832", + "default": "832", + "title": "Id", + "type": "string" + } + }, + "title": "_Iiin", + "type": "object" }, - "MyomatrixContact": { - "additionalProperties": false, - "description": "\"Description of a contact on a myomatrix thread", + "_Iin": { + "description": "Model IIn", "properties": { - "body_part": { - "discriminator": { - "mapping": { - "EMAPA_16748": "#/$defs/_Tail", - "EMAPA_17412": "#/$defs/_Forelimb", - "EMAPA_17458": "#/$defs/_Hindlimb", - "EMAPA_31857": "#/$defs/_Trunk", - "EMAPA_31858": "#/$defs/_Head", - "EMAPA_35587": "#/$defs/_Neck" - }, - "propertyName": "registry_identifier" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Forelimb" - }, - { - "$ref": "#/$defs/_Head" - }, - { - "$ref": "#/$defs/_Hindlimb" - }, - { - "$ref": "#/$defs/_Neck" - }, - { - "$ref": "#/$defs/_Tail" - }, - { - "$ref": "#/$defs/_Trunk" - } - ], - "title": "Body part of contact insertion" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "side": { - "$ref": "#/$defs/Side", - "title": "Body side" + "name": { + "const": "optic nerve", + "default": "optic nerve", + "title": "Name", + "type": "string" }, - "muscle": { - "discriminator": { - "mapping": { - "EMAPA_18177": "#/$defs/_Deltoid", - "EMAPA_18179": "#/$defs/_Pectoralis_Major", - "EMAPA_19108": "#/$defs/_Biceps_Brachii", - "EMAPA_19111": "#/$defs/_Triceps_Brachii", - "EMAPA_19319": "#/$defs/_Flexor_Digitorum_Profundus", - "EMAPA_25053": "#/$defs/_Tendon_Of_Biceps_Brachii", - "EMAPA_25054": "#/$defs/_Long_Head_Of_Biceps_Brachii", - "EMAPA_25055": "#/$defs/_Short_Head_Of_Biceps_Brachii", - "EMAPA_36163": "#/$defs/_Pars_Scapularis_Of_Deltoid", - "EMAPA_36184": "#/$defs/_Lateral_Head_Of_Triceps_Brachii", - "EMAPA_36185": "#/$defs/_Long_Head_Of_Triceps_Brachii", - "EMAPA_36186": "#/$defs/_Medial_Head_Of_Triceps_Brachii", - "EMAPA_36189": "#/$defs/_Extensor_Carpi_Radialis_Longus", - "EMAPA_36190": "#/$defs/_Extensor_Carpi_Ulnaris", - "EMAPA_36191": "#/$defs/_Extensor_Digitorum_Communis", - "EMAPA_36192": "#/$defs/_Extensor_Digitorum_Lateralis", - "EMAPA_36197": "#/$defs/_Flexor_Carpi_Radialis", - "EMAPA_36198": "#/$defs/_Flexor_Carpi_Ulnaris" - }, - "propertyName": "registry_identifier" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Deltoid" - }, - { - "$ref": "#/$defs/_Pectoralis_Major" - }, - { - "$ref": "#/$defs/_Triceps_Brachii" - }, - { - "$ref": "#/$defs/_Lateral_Head_Of_Triceps_Brachii" - }, - { - "$ref": "#/$defs/_Long_Head_Of_Triceps_Brachii" - }, - { - "$ref": "#/$defs/_Medial_Head_Of_Triceps_Brachii" - }, - { - "$ref": "#/$defs/_Biceps_Brachii" - }, - { - "$ref": "#/$defs/_Long_Head_Of_Biceps_Brachii" - }, - { - "$ref": "#/$defs/_Short_Head_Of_Biceps_Brachii" - }, - { - "$ref": "#/$defs/_Tendon_Of_Biceps_Brachii" - }, - { - "$ref": "#/$defs/_Pars_Scapularis_Of_Deltoid" - }, - { - "$ref": "#/$defs/_Extensor_Carpi_Radialis_Longus" - }, - { - "$ref": "#/$defs/_Extensor_Digitorum_Communis" - }, - { - "$ref": "#/$defs/_Extensor_Digitorum_Lateralis" - }, - { - "$ref": "#/$defs/_Extensor_Carpi_Ulnaris" - }, - { - "$ref": "#/$defs/_Flexor_Carpi_Radialis" - }, - { - "$ref": "#/$defs/_Flexor_Carpi_Ulnaris" - }, - { - "$ref": "#/$defs/_Flexor_Digitorum_Profundus" - } - ], - "title": "Muscle of contact insertion" + "acronym": { + "const": "IIn", + "default": "IIn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "848", + "default": "848", + "title": "Id", + "type": "string" + } + }, + "title": "_Iin", + "type": "object" + }, + "_Ila": { + "description": "Model ILA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Infralimbic area", + "default": "Infralimbic area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILA", + "default": "ILA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "44", + "default": "44", + "title": "Id", + "type": "string" + } + }, + "title": "_Ila", + "type": "object" + }, + "_Ila1": { + "description": "Model ILA1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Infralimbic area, layer 1", + "default": "Infralimbic area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILA1", + "default": "ILA1", + "title": "Acronym", + "type": "string" }, - "in_muscle": { - "title": "In muscle", - "type": "boolean" + "id": { + "const": "707", + "default": "707", + "title": "Id", + "type": "string" + } + }, + "title": "_Ila1", + "type": "object" + }, + "_Ila2_3": { + "description": "Model ILA2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "name": { + "const": "Infralimbic area, layer 2/3", + "default": "Infralimbic area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILA2/3", + "default": "ILA2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "556", + "default": "556", + "title": "Id", + "type": "string" } }, - "required": [ - "body_part", - "side", - "muscle", - "in_muscle" - ], - "title": "MyomatrixContact", + "title": "_Ila2_3", "type": "object" }, - "MyomatrixInsertion": { - "additionalProperties": false, - "description": "Description of a Myomatrix array insertion for EMG", + "_Ila5": { + "description": "Model ILA5", "properties": { - "procedure_type": { - "const": "Myomatrix_Insertion", - "default": "Myomatrix_Insertion", - "enum": [ - "Myomatrix_Insertion" - ], - "title": "Procedure Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", + "name": { + "const": "Infralimbic area, layer 5", + "default": "Infralimbic area, layer 5", + "title": "Name", "type": "string" }, - "myomatrix_array": { - "$ref": "#/$defs/MyomatrixArray", - "title": "Myomatrix array" + "acronym": { + "const": "ILA5", + "default": "ILA5", + "title": "Acronym", + "type": "string" }, - "threads": { - "items": { - "$ref": "#/$defs/MyomatrixThread" - }, - "title": "Array threads", - "type": "array" + "id": { + "const": "827", + "default": "827", + "title": "Id", + "type": "string" } }, - "required": [ - "protocol_id", - "myomatrix_array", - "threads" - ], - "title": "MyomatrixInsertion", + "title": "_Ila5", "type": "object" }, - "MyomatrixThread": { - "additionalProperties": false, - "description": "Description of a thread of a myomatrix array", + "_Ila6A": { + "description": "Model ILA6a", "properties": { - "ground_electrode_location": { - "discriminator": { - "mapping": { - "EMAPA_16748": "#/$defs/_Tail", - "EMAPA_17412": "#/$defs/_Forelimb", - "EMAPA_17458": "#/$defs/_Hindlimb", - "EMAPA_31857": "#/$defs/_Trunk", - "EMAPA_31858": "#/$defs/_Head", - "EMAPA_35587": "#/$defs/_Neck" - }, - "propertyName": "registry_identifier" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Forelimb" - }, - { - "$ref": "#/$defs/_Head" - }, - { - "$ref": "#/$defs/_Hindlimb" - }, - { - "$ref": "#/$defs/_Neck" - }, - { - "$ref": "#/$defs/_Tail" - }, - { - "$ref": "#/$defs/_Trunk" - } - ], - "title": "Location of ground electrode" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "contacts": { - "items": { - "$ref": "#/$defs/MyomatrixContact" - }, - "title": "Contacts", - "type": "array" + "name": { + "const": "Infralimbic area, layer 6a", + "default": "Infralimbic area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILA6a", + "default": "ILA6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1054", + "default": "1054", + "title": "Id", + "type": "string" } }, - "required": [ - "ground_electrode_location", - "contacts" - ], - "title": "MyomatrixThread", + "title": "_Ila6A", "type": "object" }, - "NanojectInjection": { - "additionalProperties": false, - "description": "Description of a nanoject injection procedure", + "_Ila6B": { + "description": "Model ILA6b", "properties": { - "injection_materials": { - "items": { - "discriminator": { - "mapping": { - "Reagent": "#/$defs/NonViralMaterial", - "Virus": "#/$defs/ViralMaterial" - }, - "propertyName": "material_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/ViralMaterial" - }, - { - "$ref": "#/$defs/NonViralMaterial" - } - ] - }, - "minItems": 1, - "title": "Injection material", - "type": "array" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "recovery_time": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Recovery time" + "name": { + "const": "Infralimbic area, layer 6b", + "default": "Infralimbic area, layer 6b", + "title": "Name", + "type": "string" }, - "recovery_time_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Recovery time unit" + "acronym": { + "const": "ILA6b", + "default": "ILA6b", + "title": "Acronym", + "type": "string" }, - "injection_duration": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Injection duration" + "id": { + "const": "1081", + "default": "1081", + "title": "Id", + "type": "string" + } + }, + "title": "_Ila6B", + "type": "object" + }, + "_Ilm": { + "description": "Model ILM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "injection_duration_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Injection duration unit" + "name": { + "const": "Intralaminar nuclei of the dorsal thalamus", + "default": "Intralaminar nuclei of the dorsal thalamus", + "title": "Name", + "type": "string" }, - "instrument_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Instrument ID" + "acronym": { + "const": "ILM", + "default": "ILM", + "title": "Acronym", + "type": "string" }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", + "id": { + "const": "51", + "default": "51", + "title": "Id", + "type": "string" + } + }, + "title": "_Ilm", + "type": "object" + }, + "_Imd": { + "description": "Model IMD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "injection_coordinate_ml": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Injection coordinate ML (mm)" + "name": { + "const": "Intermediodorsal nucleus of the thalamus", + "default": "Intermediodorsal nucleus of the thalamus", + "title": "Name", + "type": "string" }, - "injection_coordinate_ap": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Injection coordinate AP (mm)" + "acronym": { + "const": "IMD", + "default": "IMD", + "title": "Acronym", + "type": "string" }, - "injection_coordinate_depth": { - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "title": "Injection coordinate depth (mm)", - "type": "array" + "id": { + "const": "59", + "default": "59", + "title": "Id", + "type": "string" + } + }, + "title": "_Imd", + "type": "object" + }, + "_In": { + "description": "Model In", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "injection_coordinate_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Injection coordinate unit" + "name": { + "const": "olfactory nerve", + "default": "olfactory nerve", + "title": "Name", + "type": "string" }, - "injection_coordinate_reference": { - "anyOf": [ - { - "$ref": "#/$defs/CoordinateReferenceLocation" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Injection coordinate reference" + "acronym": { + "const": "In", + "default": "In", + "title": "Acronym", + "type": "string" }, - "bregma_to_lambda_distance": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Distance between bregman and lambda", - "title": "Bregma to lambda (mm)" + "id": { + "const": "840", + "default": "840", + "title": "Id", + "type": "string" + } + }, + "title": "_In", + "type": "object" + }, + "_Inc": { + "description": "Model INC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "bregma_to_lambda_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Bregma to lambda unit" + "name": { + "const": "Interstitial nucleus of Cajal", + "default": "Interstitial nucleus of Cajal", + "title": "Name", + "type": "string" }, - "injection_angle": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Injection angle (deg)" + "acronym": { + "const": "INC", + "default": "INC", + "title": "Acronym", + "type": "string" }, - "injection_angle_unit": { - "$ref": "#/$defs/AngleUnit", - "default": "degrees", - "title": "Injection angle unit" + "id": { + "const": "67", + "default": "67", + "title": "Id", + "type": "string" + } + }, + "title": "_Inc", + "type": "object" + }, + "_Infinity_Photo_Optical": { + "description": "Model Infinity Photo-Optical", + "properties": { + "name": { + "const": "Infinity Photo-Optical", + "default": "Infinity Photo-Optical", + "title": "Name", + "type": "string" }, - "targeted_structure": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "abbreviation": { + "const": null, "default": null, - "title": "Injection targeted brain structure" + "title": "Abbreviation", + "type": "null" }, - "injection_hemisphere": { - "anyOf": [ - { - "$ref": "#/$defs/Side" - }, - { - "type": "null" - } - ], + "registry": { "default": null, - "title": "Injection hemisphere" + "title": "Registry", + "type": "null" }, - "procedure_type": { - "const": "Nanoject injection", - "default": "Nanoject injection", - "enum": [ - "Nanoject injection" - ], - "title": "Procedure Type", + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Infinity_Photo_Optical", + "type": "object" + }, + "_Int": { + "description": "Model int", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "injection_volume": { - "description": "Injection volume, one value per location", - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "title": "Injection volume (nL)", - "type": "array" + "name": { + "const": "internal capsule", + "default": "internal capsule", + "title": "Name", + "type": "string" }, - "injection_volume_unit": { - "$ref": "#/$defs/VolumeUnit", - "default": "nanoliter", - "title": "Injection volume unit" + "acronym": { + "const": "int", + "default": "int", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "6", + "default": "6", + "title": "Id", + "type": "string" } }, - "required": [ - "injection_materials", - "protocol_id", - "injection_coordinate_ml", - "injection_coordinate_ap", - "injection_coordinate_depth", - "injection_angle", - "injection_volume" - ], - "title": "NanojectInjection", + "title": "_Int", "type": "object" }, - "NonViralMaterial": { - "additionalProperties": false, - "description": "Description of a non-viral injection material", + "_Integrated_Dna_Technologies": { + "description": "Model Integrated DNA Technologies", "properties": { "name": { + "const": "Integrated DNA Technologies", + "default": "Integrated DNA Technologies", "title": "Name", "type": "string" }, - "source": { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" + "abbreviation": { + "const": "IDT", + "default": "IDT", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, - "propertyName": "name" + "propertyName": "abbreviation" }, "oneOf": [ { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" - }, - { - "$ref": "#/$defs/_National_Instruments" - }, - { - "$ref": "#/$defs/_Navitar" - }, - { - "$ref": "#/$defs/_Neurophotometrics" - }, - { - "$ref": "#/$defs/_New_Scale_Technologies" - }, - { - "$ref": "#/$defs/_New_York_University" - }, - { - "$ref": "#/$defs/_Nikon" - }, - { - "$ref": "#/$defs/_Olympus" - }, - { - "$ref": "#/$defs/_Open_Ephys_Production_Site" - }, - { - "$ref": "#/$defs/_Optotune" - }, - { - "$ref": "#/$defs/_Other" - }, - { - "$ref": "#/$defs/_Oxxius" - }, - { - "$ref": "#/$defs/_Prizmatix" - }, - { - "$ref": "#/$defs/_Quantifi" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Raspberry_Pi" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Sicgen" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Schneider_Kreuznach" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Second_Order_Effects" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Semrock" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Sigma_Aldrich" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "009jvpf03", + "default": "009jvpf03", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Integrated_Dna_Technologies", + "type": "object" + }, + "_Interuniversity_Microelectronics_Center": { + "description": "Model Interuniversity Microelectronics Center", + "properties": { + "name": { + "const": "Interuniversity Microelectronics Center", + "default": "Interuniversity Microelectronics Center", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "IMEC", + "default": "IMEC", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Simons_Foundation" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Spinnaker" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Tamron" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Teledyne_Flir" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_The_Imaging_Source" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02kcbn207", + "default": "02kcbn207", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Interuniversity_Microelectronics_Center", + "type": "object" + }, + "_Intg": { + "description": "Model IntG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Intermediate geniculate nucleus", + "default": "Intermediate geniculate nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IntG", + "default": "IntG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "563807439", + "default": "563807439", + "title": "Id", + "type": "string" + } + }, + "title": "_Intg", + "type": "object" + }, + "_Invitrogen": { + "description": "Model Invitrogen", + "properties": { + "name": { + "const": "Invitrogen", + "default": "Invitrogen", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_The_Lee_Company" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Thorlabs" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Tymphany" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Vieworks" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Vortran" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Ams_Osram" + "$ref": "#/$defs/_Rrid" } ], - "title": "Source" + "title": "Registry" + }, + "registry_identifier": { + "const": "03x1ewr52", + "default": "03x1ewr52", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Invitrogen", + "type": "object" + }, + "_Io": { + "description": "Model IO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Inferior olivary complex", + "default": "Inferior olivary complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IO", + "default": "IO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "83", + "default": "83", + "title": "Id", + "type": "string" + } + }, + "title": "_Io", + "type": "object" + }, + "_Ip": { + "description": "Model IP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interposed nucleus", + "default": "Interposed nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IP", + "default": "IP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "91", + "default": "91", + "title": "Id", + "type": "string" + } + }, + "title": "_Ip", + "type": "object" + }, + "_Ipa": { + "description": "Model IPA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, apical", + "default": "Interpeduncular nucleus, apical", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPA", + "default": "IPA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344842", + "default": "607344842", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipa", + "type": "object" + }, + "_Ipc": { + "description": "Model IPC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, caudal", + "default": "Interpeduncular nucleus, caudal", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPC", + "default": "IPC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344838", + "default": "607344838", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipc", + "type": "object" + }, + "_Ipdl": { + "description": "Model IPDL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, dorsolateral", + "default": "Interpeduncular nucleus, dorsolateral", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPDL", + "default": "IPDL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344858", + "default": "607344858", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipdl", + "type": "object" + }, + "_Ipdm": { + "description": "Model IPDM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, dorsomedial", + "default": "Interpeduncular nucleus, dorsomedial", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPDM", + "default": "IPDM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344854", + "default": "607344854", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipdm", + "type": "object" + }, + "_Ipi": { + "description": "Model IPI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, intermediate", + "default": "Interpeduncular nucleus, intermediate", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPI", + "default": "IPI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344850", + "default": "607344850", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipi", + "type": "object" + }, + "_Ipl": { + "description": "Model IPL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, lateral", + "default": "Interpeduncular nucleus, lateral", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPL", + "default": "IPL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344846", + "default": "607344846", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipl", + "type": "object" + }, + "_Ipn": { + "description": "Model IPN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus", + "default": "Interpeduncular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPN", + "default": "IPN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "100", + "default": "100", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipn", + "type": "object" + }, + "_Ipr": { + "description": "Model IPR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "rrid": { - "anyOf": [ - { - "$ref": "#/$defs/PIDName" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Research Resource ID" + "name": { + "const": "Interpeduncular nucleus, rostral", + "default": "Interpeduncular nucleus, rostral", + "title": "Name", + "type": "string" }, - "lot_number": { - "title": "Lot number", + "acronym": { + "const": "IPR", + "default": "IPR", + "title": "Acronym", "type": "string" }, - "expiration_date": { - "anyOf": [ - { - "format": "date", - "type": "string" - }, - { - "type": "null" - } - ], + "id": { + "const": "607344834", + "default": "607344834", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipr", + "type": "object" + }, + "_Iprl": { + "description": "Model IPRL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, rostrolateral", + "default": "Interpeduncular nucleus, rostrolateral", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPRL", + "default": "IPRL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344862", + "default": "607344862", + "title": "Id", + "type": "string" + } + }, + "title": "_Iprl", + "type": "object" + }, + "_Ir_Robot_Co": { + "description": "Model IR Robot Co", + "properties": { + "name": { + "const": "IR Robot Co", + "default": "IR Robot Co", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, "default": null, - "title": "Lot expiration date" + "title": "Abbreviation", + "type": "null" }, - "material_type": { - "const": "Reagent", - "default": "Reagent", - "enum": [ - "Reagent" - ], - "title": "Injection material type", + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Ir_Robot_Co", + "type": "object" + }, + "_Irn": { + "description": "Model IRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "concentration": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], + "name": { + "const": "Intermediate reticular nucleus", + "default": "Intermediate reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IRN", + "default": "IRN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "136", + "default": "136", + "title": "Id", + "type": "string" + } + }, + "title": "_Irn", + "type": "object" + }, + "_Isl_Products_International": { + "description": "Model ISL Products International", + "properties": { + "name": { + "const": "ISL Products International", + "default": "ISL Products International", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "ISL", + "default": "ISL", + "title": "Abbreviation", + "type": "string" + }, + "registry": { "default": null, - "description": "Must provide concentration unit", - "title": "Concentration" + "title": "Registry", + "type": "null" }, - "concentration_unit": { - "default": "mg/mL", - "title": "Concentration unit", + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Isl_Products_International", + "type": "object" + }, + "_Isn": { + "description": "Model ISN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Inferior salivatory nucleus", + "default": "Inferior salivatory nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ISN", + "default": "ISN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "106", + "default": "106", + "title": "Id", "type": "string" } }, - "required": [ - "name", - "source", - "lot_number" - ], - "title": "NonViralMaterial", + "title": "_Isn", "type": "object" }, - "OligoProbe": { - "additionalProperties": false, - "description": "Description of an oligonucleotide probe", + "_Isocortex": { + "description": "Model Isocortex", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { + "const": "Isocortex", + "default": "Isocortex", "title": "Name", "type": "string" }, - "source": { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" + "acronym": { + "const": "Isocortex", + "default": "Isocortex", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "315", + "default": "315", + "title": "Id", + "type": "string" + } + }, + "title": "_Isocortex", + "type": "object" + }, + "_Item": { + "description": "Model Item", + "properties": { + "name": { + "const": "Item", + "default": "Item", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Item", + "type": "object" + }, + "_Iv": { + "description": "Model IV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Trochlear nucleus", + "default": "Trochlear nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IV", + "default": "IV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "115", + "default": "115", + "title": "Id", + "type": "string" + } + }, + "title": "_Iv", + "type": "object" + }, + "_Ivn": { + "description": "Model IVn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "trochlear nerve", + "default": "trochlear nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IVn", + "default": "IVn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "911", + "default": "911", + "title": "Id", + "type": "string" + } + }, + "title": "_Ivn", + "type": "object" + }, + "_Jackson_Laboratory": { + "description": "Model Jackson Laboratory", + "properties": { + "name": { + "const": "Jackson Laboratory", + "default": "Jackson Laboratory", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "JAX", + "default": "JAX", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, - "propertyName": "name" + "propertyName": "abbreviation" }, "oneOf": [ { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Mitutuyo" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Nresearch_Inc" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "021sy4w91", + "default": "021sy4w91", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Jackson_Laboratory", + "type": "object" + }, + "_Janelia_Research_Campus": { + "description": "Model Janelia Research Campus", + "properties": { + "name": { + "const": "Janelia Research Campus", + "default": "Janelia Research Campus", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Janelia", + "default": "Janelia", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_National_Instruments" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Navitar" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Neurophotometrics" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_New_Scale_Technologies" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_New_York_University" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Nikon" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "013sk6x84", + "default": "013sk6x84", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Janelia_Research_Campus", + "type": "object" + }, + "_Julabo": { + "description": "Model Julabo", + "properties": { + "name": { + "const": "Julabo", + "default": "Julabo", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Julabo", + "type": "object" + }, + "_Kf": { + "description": "Model KF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Koelliker-Fuse subnucleus", + "default": "Koelliker-Fuse subnucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "KF", + "default": "KF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "123", + "default": "123", + "title": "Id", + "type": "string" + } + }, + "title": "_Kf", + "type": "object" + }, + "_Kowa": { + "description": "Model Kowa", + "properties": { + "name": { + "const": "Kowa", + "default": "Kowa", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Olympus" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Open_Ephys_Production_Site" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Optotune" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Other" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Oxxius" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Prizmatix" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Quantifi" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03zbwg482", + "default": "03zbwg482", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Kowa", + "type": "object" + }, + "_La": { + "description": "Model LA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral amygdalar nucleus", + "default": "Lateral amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LA", + "default": "LA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "131", + "default": "131", + "title": "Id", + "type": "string" + } + }, + "title": "_La", + "type": "object" + }, + "_Lat": { + "description": "Model LAT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral group of the dorsal thalamus", + "default": "Lateral group of the dorsal thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LAT", + "default": "LAT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "138", + "default": "138", + "title": "Id", + "type": "string" + } + }, + "title": "_Lat", + "type": "object" + }, + "_Lateral_Head_Of_Triceps_Brachii": { + "description": "Model lateral head of triceps brachii", + "properties": { + "name": { + "const": "lateral head of triceps brachii", + "default": "lateral head of triceps brachii", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Raspberry_Pi" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Sicgen" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Schneider_Kreuznach" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Second_Order_Effects" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Semrock" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Sigma_Aldrich" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Simons_Foundation" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_36184", + "default": "EMAPA_36184", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Lateral_Head_Of_Triceps_Brachii", + "type": "object" + }, + "_Lav": { + "description": "Model LAV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral vestibular nucleus", + "default": "Lateral vestibular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LAV", + "default": "LAV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "209", + "default": "209", + "title": "Id", + "type": "string" + } + }, + "title": "_Lav", + "type": "object" + }, + "_Lc": { + "description": "Model LC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Locus ceruleus", + "default": "Locus ceruleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LC", + "default": "LC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "147", + "default": "147", + "title": "Id", + "type": "string" + } + }, + "title": "_Lc", + "type": "object" + }, + "_Ld": { + "description": "Model LD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral dorsal nucleus of thalamus", + "default": "Lateral dorsal nucleus of thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LD", + "default": "LD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "155", + "default": "155", + "title": "Id", + "type": "string" + } + }, + "title": "_Ld", + "type": "object" + }, + "_Ldt": { + "description": "Model LDT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Laterodorsal tegmental nucleus", + "default": "Laterodorsal tegmental nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LDT", + "default": "LDT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "162", + "default": "162", + "title": "Id", + "type": "string" + } + }, + "title": "_Ldt", + "type": "object" + }, + "_Leica": { + "description": "Model Leica", + "properties": { + "name": { + "const": "Leica", + "default": "Leica", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Leica", + "type": "object" + }, + "_Lfbs": { + "description": "Model lfbs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "lateral forebrain bundle system", + "default": "lateral forebrain bundle system", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "lfbs", + "default": "lfbs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "983", + "default": "983", + "title": "Id", + "type": "string" + } + }, + "title": "_Lfbs", + "type": "object" + }, + "_Lfbst": { + "description": "Model lfbst", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "thalamus related", + "default": "thalamus related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "lfbst", + "default": "lfbst", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "896", + "default": "896", + "title": "Id", + "type": "string" + } + }, + "title": "_Lfbst", + "type": "object" + }, + "_Lg": { + "description": "Model LG", + "properties": { + "name": { + "const": "LG", + "default": "LG", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Spinnaker" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Tamron" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Teledyne_Flir" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_The_Imaging_Source" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_The_Lee_Company" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02b948n83", + "default": "02b948n83", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Lg", + "type": "object" + }, + "_Lgd": { + "description": "Model LGd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal part of the lateral geniculate complex", + "default": "Dorsal part of the lateral geniculate complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LGd", + "default": "LGd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "170", + "default": "170", + "title": "Id", + "type": "string" + } + }, + "title": "_Lgd", + "type": "object" + }, + "_Lgd_Co": { + "description": "Model LGd-co", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal part of the lateral geniculate complex, core", + "default": "Dorsal part of the lateral geniculate complex, core", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LGd-co", + "default": "LGd-co", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "496345668", + "default": "496345668", + "title": "Id", + "type": "string" + } + }, + "title": "_Lgd_Co", + "type": "object" + }, + "_Lgd_Ip": { + "description": "Model LGd-ip", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal part of the lateral geniculate complex, ipsilateral zone", + "default": "Dorsal part of the lateral geniculate complex, ipsilateral zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LGd-ip", + "default": "LGd-ip", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "496345672", + "default": "496345672", + "title": "Id", + "type": "string" + } + }, + "title": "_Lgd_Ip", + "type": "object" + }, + "_Lgd_Sh": { + "description": "Model LGd-sh", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal part of the lateral geniculate complex, shell", + "default": "Dorsal part of the lateral geniculate complex, shell", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LGd-sh", + "default": "LGd-sh", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "496345664", + "default": "496345664", + "title": "Id", + "type": "string" + } + }, + "title": "_Lgd_Sh", + "type": "object" + }, + "_Lgv": { + "description": "Model LGv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral part of the lateral geniculate complex", + "default": "Ventral part of the lateral geniculate complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LGv", + "default": "LGv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "178", + "default": "178", + "title": "Id", + "type": "string" + } + }, + "title": "_Lgv", + "type": "object" + }, + "_Lh": { + "description": "Model LH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral habenula", + "default": "Lateral habenula", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LH", + "default": "LH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "186", + "default": "186", + "title": "Id", + "type": "string" + } + }, + "title": "_Lh", + "type": "object" + }, + "_Lha": { + "description": "Model LHA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral hypothalamic area", + "default": "Lateral hypothalamic area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LHA", + "default": "LHA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "194", + "default": "194", + "title": "Id", + "type": "string" + } + }, + "title": "_Lha", + "type": "object" + }, + "_Lifecanvas": { + "description": "Model LifeCanvas", + "properties": { + "name": { + "const": "LifeCanvas", + "default": "LifeCanvas", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Lifecanvas", + "type": "object" + }, + "_Lin": { + "description": "Model LIN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Linear nucleus of the medulla", + "default": "Linear nucleus of the medulla", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LIN", + "default": "LIN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "203", + "default": "203", + "title": "Id", + "type": "string" + } + }, + "title": "_Lin", + "type": "object" + }, + "_Ling": { + "description": "Model LING", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lingula (I)", + "default": "Lingula (I)", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LING", + "default": "LING", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "912", + "default": "912", + "title": "Id", + "type": "string" + } + }, + "title": "_Ling", + "type": "object" + }, + "_Ll": { + "description": "Model ll", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "lateral lemniscus", + "default": "lateral lemniscus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ll", + "default": "ll", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "658", + "default": "658", + "title": "Id", + "type": "string" + } + }, + "title": "_Ll", + "type": "object" + }, + "_Lm": { + "description": "Model LM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral mammillary nucleus", + "default": "Lateral mammillary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LM", + "default": "LM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "210", + "default": "210", + "title": "Id", + "type": "string" + } + }, + "title": "_Lm", + "type": "object" + }, + "_Long_Head_Of_Biceps_Brachii": { + "description": "Model long head of biceps brachii", + "properties": { + "name": { + "const": "long head of biceps brachii", + "default": "long head of biceps brachii", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Thorlabs" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Tymphany" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Vieworks" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Vortran" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Ams_Osram" - } - ], - "title": "Source" - }, - "rrid": { - "anyOf": [ - { - "$ref": "#/$defs/PIDName" + "$ref": "#/$defs/_Ror" }, { - "type": "null" + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "title": "Research Resource ID" + "title": "Registry" }, - "lot_number": { - "title": "Lot number", + "registry_identifier": { + "const": "EMAPA_25054", + "default": "EMAPA_25054", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Long_Head_Of_Biceps_Brachii", + "type": "object" + }, + "_Long_Head_Of_Triceps_Brachii": { + "description": "Model long head of triceps brachii", + "properties": { + "name": { + "const": "long head of triceps brachii", + "default": "long head of triceps brachii", + "title": "Name", "type": "string" }, - "expiration_date": { - "anyOf": [ - { - "format": "date", - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lot expiration date" - }, - "species": { + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, "discriminator": { "mapping": { - "Callithrix jacchus": "#/$defs/_Callithrix_Jacchus", - "Homo sapiens": "#/$defs/_Homo_Sapiens", - "Macaca mulatta": "#/$defs/_Macaca_Mulatta", - "Mus musculus": "#/$defs/_Mus_Musculus", - "Rattus norvegicus": "#/$defs/_Rattus_Norvegicus" + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, - "propertyName": "name" + "propertyName": "abbreviation" }, "oneOf": [ { - "$ref": "#/$defs/_Callithrix_Jacchus" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Homo_Sapiens" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Macaca_Mulatta" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Mus_Musculus" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Rattus_Norvegicus" + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], - "title": "Species" + "title": "Registry" }, - "gene": { - "$ref": "#/$defs/PIDName", - "title": "Gene name, accession number, and registry" + "registry_identifier": { + "const": "EMAPA_36185", + "default": "EMAPA_36185", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Long_Head_Of_Triceps_Brachii", + "type": "object" + }, + "_Lot": { + "description": "Model lot", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "probe_sequences": { - "items": { - "type": "string" - }, - "title": "Probe sequences", - "type": "array" + "name": { + "const": "lateral olfactory tract, body", + "default": "lateral olfactory tract, body", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "lot", + "default": "lot", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "665", + "default": "665", + "title": "Id", + "type": "string" + } + }, + "title": "_Lot", + "type": "object" + }, + "_Lotd": { + "description": "Model lotd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal limb", + "default": "dorsal limb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "lotd", + "default": "lotd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "538", + "default": "538", + "title": "Id", + "type": "string" + } + }, + "title": "_Lotd", + "type": "object" + }, + "_Lotg": { + "description": "Model lotg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "lateral olfactory tract, general", + "default": "lateral olfactory tract, general", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "lotg", + "default": "lotg", + "title": "Acronym", + "type": "string" }, - "readout": { - "$ref": "#/$defs/Readout" + "id": { + "const": "21", + "default": "21", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "source", - "lot_number", - "species", - "gene", - "probe_sequences", - "readout" - ], - "title": "OligoProbe", + "title": "_Lotg", "type": "object" }, - "OphysProbe": { - "additionalProperties": false, - "description": "Description of an implanted ophys probe", + "_Lp": { + "description": "Model LP", "properties": { - "ophys_probe": { - "$ref": "#/$defs/FiberProbe", - "title": "Fiber probe" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "targeted_structure": { - "title": "Targeted structure", + "name": { + "const": "Lateral posterior nucleus of the thalamus", + "default": "Lateral posterior nucleus of the thalamus", + "title": "Name", "type": "string" }, - "stereotactic_coordinate_ap": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Stereotactic coordinate A/P (mm)" + "acronym": { + "const": "LP", + "default": "LP", + "title": "Acronym", + "type": "string" }, - "stereotactic_coordinate_ml": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Stereotactic coordinate M/L (mm)" + "id": { + "const": "218", + "default": "218", + "title": "Id", + "type": "string" + } + }, + "title": "_Lp", + "type": "object" + }, + "_Lpo": { + "description": "Model LPO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "stereotactic_coordinate_dv": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Stereotactic coordinate D/V (mm)" + "name": { + "const": "Lateral preoptic area", + "default": "Lateral preoptic area", + "title": "Name", + "type": "string" }, - "stereotactic_coordinate_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Sterotactic coordinate unit" + "acronym": { + "const": "LPO", + "default": "LPO", + "title": "Acronym", + "type": "string" }, - "stereotactic_coordinate_reference": { - "anyOf": [ - { - "$ref": "#/$defs/CoordinateReferenceLocation" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Stereotactic coordinate reference" + "id": { + "const": "226", + "default": "226", + "title": "Id", + "type": "string" + } + }, + "title": "_Lpo", + "type": "object" + }, + "_Lrn": { + "description": "Model LRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "bregma_to_lambda_distance": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Distance between bregman and lambda", - "title": "Bregma to lambda (mm)" + "name": { + "const": "Lateral reticular nucleus", + "default": "Lateral reticular nucleus", + "title": "Name", + "type": "string" }, - "bregma_to_lambda_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Bregma to lambda unit" + "acronym": { + "const": "LRN", + "default": "LRN", + "title": "Acronym", + "type": "string" }, - "angle": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Angle (deg)" + "id": { + "const": "235", + "default": "235", + "title": "Id", + "type": "string" + } + }, + "title": "_Lrn", + "type": "object" + }, + "_Lrnm": { + "description": "Model LRNm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "angle_unit": { - "$ref": "#/$defs/AngleUnit", - "default": "degrees", - "title": "Angle unit" + "name": { + "const": "Lateral reticular nucleus, magnocellular part", + "default": "Lateral reticular nucleus, magnocellular part", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "LRNm", + "default": "LRNm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "955", + "default": "955", + "title": "Id", + "type": "string" } }, - "required": [ - "ophys_probe", - "targeted_structure", - "stereotactic_coordinate_ap", - "stereotactic_coordinate_ml", - "stereotactic_coordinate_dv", - "angle" - ], - "title": "OphysProbe", + "title": "_Lrnm", "type": "object" }, - "OtherSubjectProcedure": { - "additionalProperties": false, - "description": "Description of non-surgical procedure performed on a subject", + "_Lrnp": { + "description": "Model LRNp", "properties": { - "procedure_type": { - "const": "Other Subject Procedure", - "default": "Other Subject Procedure", - "enum": [ - "Other Subject Procedure" - ], - "title": "Procedure Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "protocol_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "DOI for protocols.io", - "title": "Protocol ID" + "name": { + "const": "Lateral reticular nucleus, parvicellular part", + "default": "Lateral reticular nucleus, parvicellular part", + "title": "Name", + "type": "string" }, - "description": { - "title": "Description", + "acronym": { + "const": "LRNp", + "default": "LRNp", + "title": "Acronym", "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "id": { + "const": "963", + "default": "963", + "title": "Id", + "type": "string" } }, - "required": [ - "description" - ], - "title": "OtherSubjectProcedure", + "title": "_Lrnp", "type": "object" }, - "PIDName": { - "additionalProperties": false, - "description": "Model for associate a name with a persistent identifier (PID),\nthe registry for that PID, and abbreviation for that registry", + "_Ls": { + "description": "Model LS", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { + "const": "Lateral septal nucleus", + "default": "Lateral septal nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Abbreviation" - }, - "registry": { - "anyOf": [ - { - "$ref": "#/$defs/BaseName" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Registry" + "acronym": { + "const": "LS", + "default": "LS", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Registry identifier" + "id": { + "const": "242", + "default": "242", + "title": "Id", + "type": "string" } }, - "required": [ - "name" - ], - "title": "PIDName", + "title": "_Ls", + "type": "object" + }, + "_Lsc": { + "description": "Model LSc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral septal nucleus, caudal (caudodorsal) part", + "default": "Lateral septal nucleus, caudal (caudodorsal) part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LSc", + "default": "LSc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "250", + "default": "250", + "title": "Id", + "type": "string" + } + }, + "title": "_Lsc", "type": "object" }, - "Perfusion": { - "additionalProperties": false, - "description": "Description of a perfusion procedure that creates a specimen", + "_Lsr": { + "description": "Model LSr", "properties": { - "procedure_type": { - "const": "Perfusion", - "default": "Perfusion", - "enum": [ - "Perfusion" - ], - "title": "Procedure Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", + "name": { + "const": "Lateral septal nucleus, rostral (rostroventral) part", + "default": "Lateral septal nucleus, rostral (rostroventral) part", + "title": "Name", "type": "string" }, - "output_specimen_ids": { - "description": "IDs of specimens resulting from this procedure.", - "items": { - "type": "string" - }, - "title": "Specimen ID", - "type": "array", - "uniqueItems": true + "acronym": { + "const": "LSr", + "default": "LSr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "258", + "default": "258", + "title": "Id", + "type": "string" } }, - "required": [ - "protocol_id", - "output_specimen_ids" - ], - "title": "Perfusion", + "title": "_Lsr", "type": "object" }, - "ProtectiveMaterial": { - "description": "Name of material applied to craniotomy", - "enum": [ - "Agarose", - "Duragel", - "Kwik-Cast", - "SORTA-clear", - "Other - see notes" - ], - "title": "ProtectiveMaterial", - "type": "string" - }, - "ProtectiveMaterialReplacement": { - "additionalProperties": false, - "description": "Description of a protective material replacement procedure in preparation for ephys recording", + "_Lsv": { + "description": "Model LSv", "properties": { - "procedure_type": { - "const": "Ground wire", - "default": "Ground wire", - "enum": [ - "Ground wire" - ], - "title": "Procedure Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", + "name": { + "const": "Lateral septal nucleus, ventral part", + "default": "Lateral septal nucleus, ventral part", + "title": "Name", "type": "string" }, - "protective_material": { - "$ref": "#/$defs/ProtectiveMaterial", - "description": "New material being applied", - "title": "Protective material" + "acronym": { + "const": "LSv", + "default": "LSv", + "title": "Acronym", + "type": "string" }, - "ground_wire_hole": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Ground wire hole" + "id": { + "const": "266", + "default": "266", + "title": "Id", + "type": "string" + } + }, + "title": "_Lsv", + "type": "object" + }, + "_Lsx": { + "description": "Model LSX", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "ground_wire_material": { - "anyOf": [ - { - "$ref": "#/$defs/GroundWireMaterial" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Ground wire material" + "name": { + "const": "Lateral septal complex", + "default": "Lateral septal complex", + "title": "Name", + "type": "string" }, - "ground_wire_diameter": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Ground wire diameter" + "acronym": { + "const": "LSX", + "default": "LSX", + "title": "Acronym", + "type": "string" }, - "ground_wire_diameter_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "inch", - "title": "Ground wire diameter unit" + "id": { + "const": "275", + "default": "275", + "title": "Id", + "type": "string" + } + }, + "title": "_Lsx", + "type": "object" + }, + "_Lt": { + "description": "Model LT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "well_part_number": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Well part number" + "name": { + "const": "Lateral terminal nucleus of the accessory optic tract", + "default": "Lateral terminal nucleus of the accessory optic tract", + "title": "Name", + "type": "string" }, - "well_type": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Well type" + "acronym": { + "const": "LT", + "default": "LT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "66", + "default": "66", + "title": "Id", + "type": "string" } }, - "required": [ - "protocol_id", - "protective_material" - ], - "title": "ProtectiveMaterialReplacement", + "title": "_Lt", "type": "object" }, - "Readout": { - "additionalProperties": false, - "description": "Description of a readout", + "_Lumen_Dynamics": { + "description": "Model Lumen Dynamics", "properties": { "name": { + "const": "Lumen Dynamics", + "default": "Lumen Dynamics", "title": "Name", "type": "string" }, - "source": { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Lumen_Dynamics", + "type": "object" + }, + "_Lz": { + "description": "Model LZ", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hypothalamic lateral zone", + "default": "Hypothalamic lateral zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LZ", + "default": "LZ", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "290", + "default": "290", + "title": "Id", + "type": "string" + } + }, + "title": "_Lz", + "type": "object" + }, + "_Ma": { + "description": "Model MA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Magnocellular nucleus", + "default": "Magnocellular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MA", + "default": "MA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "298", + "default": "298", + "title": "Id", + "type": "string" + } + }, + "title": "_Ma", + "type": "object" + }, + "_Ma3": { + "description": "Model MA3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial accesory oculomotor nucleus", + "default": "Medial accesory oculomotor nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MA3", + "default": "MA3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "549009211", + "default": "549009211", + "title": "Id", + "type": "string" + } + }, + "title": "_Ma3", + "type": "object" + }, + "_Macaca_Mulatta": { + "description": "Model Macaca mulatta", + "properties": { + "name": { + "const": "Macaca mulatta", + "default": "Macaca mulatta", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "National Center for Biotechnology Information", + "abbreviation": "NCBI" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, - "propertyName": "name" + "propertyName": "abbreviation" }, "oneOf": [ { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Meadowlark_Optics" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Mitutuyo" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Nresearch_Inc" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "NCBI:txid9544", + "default": "NCBI:txid9544", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Macaca_Mulatta", + "type": "object" + }, + "_Marn": { + "description": "Model MARN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Magnocellular reticular nucleus", + "default": "Magnocellular reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MARN", + "default": "MARN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "307", + "default": "307", + "title": "Id", + "type": "string" + } + }, + "title": "_Marn", + "type": "object" + }, + "_Mb": { + "description": "Model MB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain", + "default": "Midbrain", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MB", + "default": "MB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "313", + "default": "313", + "title": "Id", + "type": "string" + } + }, + "title": "_Mb", + "type": "object" + }, + "_Mbf_Bioscience": { + "description": "Model MBF Bioscience", + "properties": { + "name": { + "const": "MBF Bioscience", + "default": "MBF Bioscience", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MBF", + "default": "MBF", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_National_Instruments" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Navitar" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Neurophotometrics" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_New_Scale_Technologies" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_New_York_University" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02zynam48", + "default": "02zynam48", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Mbf_Bioscience", + "type": "object" + }, + "_Mbmot": { + "description": "Model MBmot", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain, motor related", + "default": "Midbrain, motor related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MBmot", + "default": "MBmot", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "323", + "default": "323", + "title": "Id", + "type": "string" + } + }, + "title": "_Mbmot", + "type": "object" + }, + "_Mbo": { + "description": "Model MBO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Mammillary body", + "default": "Mammillary body", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MBO", + "default": "MBO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "331", + "default": "331", + "title": "Id", + "type": "string" + } + }, + "title": "_Mbo", + "type": "object" + }, + "_Mbsen": { + "description": "Model MBsen", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain, sensory related", + "default": "Midbrain, sensory related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MBsen", + "default": "MBsen", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "339", + "default": "339", + "title": "Id", + "type": "string" + } + }, + "title": "_Mbsen", + "type": "object" + }, + "_Mbsta": { + "description": "Model MBsta", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain, behavioral state related", + "default": "Midbrain, behavioral state related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MBsta", + "default": "MBsta", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "348", + "default": "348", + "title": "Id", + "type": "string" + } + }, + "title": "_Mbsta", + "type": "object" + }, + "_Mcp": { + "description": "Model mcp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "middle cerebellar peduncle", + "default": "middle cerebellar peduncle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mcp", + "default": "mcp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "78", + "default": "78", + "title": "Id", + "type": "string" + } + }, + "title": "_Mcp", + "type": "object" + }, + "_Mct": { + "description": "Model mct", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "medial corticohypothalamic tract", + "default": "medial corticohypothalamic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mct", + "default": "mct", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "428", + "default": "428", + "title": "Id", + "type": "string" + } + }, + "title": "_Mct", + "type": "object" + }, + "_Md": { + "description": "Model MD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Mediodorsal nucleus of thalamus", + "default": "Mediodorsal nucleus of thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MD", + "default": "MD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "362", + "default": "362", + "title": "Id", + "type": "string" + } + }, + "title": "_Md", + "type": "object" + }, + "_Mdrn": { + "description": "Model MDRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medullary reticular nucleus", + "default": "Medullary reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MDRN", + "default": "MDRN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "395", + "default": "395", + "title": "Id", + "type": "string" + } + }, + "title": "_Mdrn", + "type": "object" + }, + "_Mdrnd": { + "description": "Model MDRNd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medullary reticular nucleus, dorsal part", + "default": "Medullary reticular nucleus, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MDRNd", + "default": "MDRNd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1098", + "default": "1098", + "title": "Id", + "type": "string" + } + }, + "title": "_Mdrnd", + "type": "object" + }, + "_Mdrnv": { + "description": "Model MDRNv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medullary reticular nucleus, ventral part", + "default": "Medullary reticular nucleus, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MDRNv", + "default": "MDRNv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1107", + "default": "1107", + "title": "Id", + "type": "string" + } + }, + "title": "_Mdrnv", + "type": "object" + }, + "_Me": { + "description": "Model ME", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Median eminence", + "default": "Median eminence", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ME", + "default": "ME", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "10671", + "default": "10671", + "title": "Id", + "type": "string" + } + }, + "title": "_Me", + "type": "object" + }, + "_Mea": { + "description": "Model MEA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial amygdalar nucleus", + "default": "Medial amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MEA", + "default": "MEA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "403", + "default": "403", + "title": "Id", + "type": "string" + } + }, + "title": "_Mea", + "type": "object" + }, + "_Meadowlark_Optics": { + "description": "Model Meadowlark Optics", + "properties": { + "name": { + "const": "Meadowlark Optics", + "default": "Meadowlark Optics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Nikon" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Olympus" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Open_Ephys_Production_Site" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Optotune" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Other" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Oxxius" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Prizmatix" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00n8qbq54", + "default": "00n8qbq54", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Meadowlark_Optics", + "type": "object" + }, + "_Med": { + "description": "Model MED", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial group of the dorsal thalamus", + "default": "Medial group of the dorsal thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MED", + "default": "MED", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "444", + "default": "444", + "title": "Id", + "type": "string" + } + }, + "title": "_Med", + "type": "object" + }, + "_Medial_Head_Of_Triceps_Brachii": { + "description": "Model medial head of triceps brachii", + "properties": { + "name": { + "const": "medial head of triceps brachii", + "default": "medial head of triceps brachii", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Quantifi" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Raspberry_Pi" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Sicgen" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Schneider_Kreuznach" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Second_Order_Effects" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Semrock" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Sigma_Aldrich" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_36186", + "default": "EMAPA_36186", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Medial_Head_Of_Triceps_Brachii", + "type": "object" + }, + "_Mepo": { + "description": "Model MEPO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Median preoptic nucleus", + "default": "Median preoptic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MEPO", + "default": "MEPO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "452", + "default": "452", + "title": "Id", + "type": "string" + } + }, + "title": "_Mepo", + "type": "object" + }, + "_Mev": { + "description": "Model MEV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain trigeminal nucleus", + "default": "Midbrain trigeminal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MEV", + "default": "MEV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "460", + "default": "460", + "title": "Id", + "type": "string" + } + }, + "title": "_Mev", + "type": "object" + }, + "_Mez": { + "description": "Model MEZ", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hypothalamic medial zone", + "default": "Hypothalamic medial zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MEZ", + "default": "MEZ", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "467", + "default": "467", + "title": "Id", + "type": "string" + } + }, + "title": "_Mez", + "type": "object" + }, + "_Mfb": { + "description": "Model mfb", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "medial forebrain bundle", + "default": "medial forebrain bundle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mfb", + "default": "mfb", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "54", + "default": "54", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfb", + "type": "object" + }, + "_Mfbc": { + "description": "Model mfbc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebrum related", + "default": "cerebrum related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mfbc", + "default": "mfbc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "768", + "default": "768", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfbc", + "type": "object" + }, + "_Mfbs": { + "description": "Model mfbs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "medial forebrain bundle system", + "default": "medial forebrain bundle system", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mfbs", + "default": "mfbs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "991", + "default": "991", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfbs", + "type": "object" + }, + "_Mfbse": { + "description": "Model mfbse", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "epithalamus related", + "default": "epithalamus related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mfbse", + "default": "mfbse", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1083", + "default": "1083", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfbse", + "type": "object" + }, + "_Mfbsma": { + "description": "Model mfbsma", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "mammillary related", + "default": "mammillary related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mfbsma", + "default": "mfbsma", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "46", + "default": "46", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfbsma", + "type": "object" + }, + "_Mfsbshy": { + "description": "Model mfsbshy", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "hypothalamus related", + "default": "hypothalamus related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mfsbshy", + "default": "mfsbshy", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "824", + "default": "824", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfsbshy", + "type": "object" + }, + "_Mg": { + "description": "Model MG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial geniculate complex", + "default": "Medial geniculate complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MG", + "default": "MG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "475", + "default": "475", + "title": "Id", + "type": "string" + } + }, + "title": "_Mg", + "type": "object" + }, + "_Mgd": { + "description": "Model MGd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial geniculate complex, dorsal part", + "default": "Medial geniculate complex, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MGd", + "default": "MGd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1072", + "default": "1072", + "title": "Id", + "type": "string" + } + }, + "title": "_Mgd", + "type": "object" + }, + "_Mgi": { + "additionalProperties": false, + "description": "Model MGI", + "properties": { + "name": { + "const": "Mouse Genome Informatics", + "default": "Mouse Genome Informatics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MGI", + "default": "MGI", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Mgi", + "type": "object" + }, + "_Mgm": { + "description": "Model MGm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial geniculate complex, medial part", + "default": "Medial geniculate complex, medial part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MGm", + "default": "MGm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1088", + "default": "1088", + "title": "Id", + "type": "string" + } + }, + "title": "_Mgm", + "type": "object" + }, + "_Mgv": { + "description": "Model MGv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial geniculate complex, ventral part", + "default": "Medial geniculate complex, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MGv", + "default": "MGv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1079", + "default": "1079", + "title": "Id", + "type": "string" + } + }, + "title": "_Mgv", + "type": "object" + }, + "_Mh": { + "description": "Model MH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial habenula", + "default": "Medial habenula", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MH", + "default": "MH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "483", + "default": "483", + "title": "Id", + "type": "string" + } + }, + "title": "_Mh", + "type": "object" + }, + "_Michael_J_Fox_Foundation_For_Parkinson_S_Research": { + "description": "Model Michael J. Fox Foundation for Parkinson's Research", + "properties": { + "name": { + "const": "Michael J. Fox Foundation for Parkinson's Research", + "default": "Michael J. Fox Foundation for Parkinson's Research", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MJFF", + "default": "MJFF", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Simons_Foundation" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Spinnaker" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Tamron" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Teledyne_Flir" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_The_Imaging_Source" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03arq3225", + "default": "03arq3225", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "type": "object" + }, + "_Midwest_Optical_Systems_Inc_": { + "description": "Model Midwest Optical Systems, Inc.", + "properties": { + "name": { + "const": "Midwest Optical Systems, Inc.", + "default": "Midwest Optical Systems, Inc.", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MidOpt", + "default": "MidOpt", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Midwest_Optical_Systems_Inc_", + "type": "object" + }, + "_Mitutuyo": { + "description": "Model Mitutuyo", + "properties": { + "name": { + "const": "Mitutuyo", + "default": "Mitutuyo", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Mitutuyo", + "type": "object" + }, + "_Mks_Newport": { + "description": "Model MKS Newport", + "properties": { + "name": { + "const": "MKS Newport", + "default": "MKS Newport", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_The_Lee_Company" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Thorlabs" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Tymphany" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Vieworks" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Vortran" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Ams_Osram" + "$ref": "#/$defs/_Rrid" } ], - "title": "Source" + "title": "Registry" + }, + "registry_identifier": { + "const": "00k17f049", + "default": "00k17f049", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Mks_Newport", + "type": "object" + }, + "_Ml": { + "description": "Model ml", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "medial lemniscus", + "default": "medial lemniscus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ml", + "default": "ml", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "697", + "default": "697", + "title": "Id", + "type": "string" + } + }, + "title": "_Ml", + "type": "object" + }, + "_Mlf": { + "description": "Model mlf", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "medial longitudinal fascicle", + "default": "medial longitudinal fascicle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mlf", + "default": "mlf", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "62", + "default": "62", + "title": "Id", + "type": "string" + } + }, + "title": "_Mlf", + "type": "object" + }, + "_Mm": { + "description": "Model MM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial mammillary nucleus", + "default": "Medial mammillary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MM", + "default": "MM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "491", + "default": "491", + "title": "Id", + "type": "string" + } + }, + "title": "_Mm", + "type": "object" + }, + "_Mmd": { + "description": "Model MMd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial mammillary nucleus, dorsal part", + "default": "Medial mammillary nucleus, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MMd", + "default": "MMd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "606826659", + "default": "606826659", + "title": "Id", + "type": "string" + } + }, + "title": "_Mmd", + "type": "object" + }, + "_Mml": { + "description": "Model MMl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial mammillary nucleus, lateral part", + "default": "Medial mammillary nucleus, lateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MMl", + "default": "MMl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "606826647", + "default": "606826647", + "title": "Id", + "type": "string" + } + }, + "title": "_Mml", + "type": "object" + }, + "_Mmm": { + "description": "Model MMm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial mammillary nucleus, medial part", + "default": "Medial mammillary nucleus, medial part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MMm", + "default": "MMm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "606826651", + "default": "606826651", + "title": "Id", + "type": "string" + } + }, + "title": "_Mmm", + "type": "object" + }, + "_Mmme": { + "description": "Model MMme", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial mammillary nucleus, median part", + "default": "Medial mammillary nucleus, median part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MMme", + "default": "MMme", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "732", + "default": "732", + "title": "Id", + "type": "string" + } + }, + "title": "_Mmme", + "type": "object" + }, + "_Mmp": { + "description": "Model MMp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial mammillary nucleus, posterior part", + "default": "Medial mammillary nucleus, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MMp", + "default": "MMp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "606826655", + "default": "606826655", + "title": "Id", + "type": "string" + } + }, + "title": "_Mmp", + "type": "object" + }, + "_Mo": { + "description": "Model MO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Somatomotor areas", + "default": "Somatomotor areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MO", + "default": "MO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "500", + "default": "500", + "title": "Id", + "type": "string" + } + }, + "title": "_Mo", + "type": "object" + }, + "_Mob": { + "description": "Model MOB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Main olfactory bulb", + "default": "Main olfactory bulb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOB", + "default": "MOB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "507", + "default": "507", + "title": "Id", + "type": "string" + } + }, + "title": "_Mob", + "type": "object" + }, + "_Mop": { + "description": "Model MOp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary motor area", + "default": "Primary motor area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOp", + "default": "MOp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "985", + "default": "985", + "title": "Id", + "type": "string" + } + }, + "title": "_Mop", + "type": "object" + }, + "_Mop1": { + "description": "Model MOp1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary motor area, Layer 1", + "default": "Primary motor area, Layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOp1", + "default": "MOp1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "320", + "default": "320", + "title": "Id", + "type": "string" + } + }, + "title": "_Mop1", + "type": "object" + }, + "_Mop2_3": { + "description": "Model MOp2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary motor area, Layer 2/3", + "default": "Primary motor area, Layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOp2/3", + "default": "MOp2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "943", + "default": "943", + "title": "Id", + "type": "string" + } + }, + "title": "_Mop2_3", + "type": "object" + }, + "_Mop5": { + "description": "Model MOp5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary motor area, Layer 5", + "default": "Primary motor area, Layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOp5", + "default": "MOp5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "648", + "default": "648", + "title": "Id", + "type": "string" + } + }, + "title": "_Mop5", + "type": "object" + }, + "_Mop6A": { + "description": "Model MOp6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary motor area, Layer 6a", + "default": "Primary motor area, Layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOp6a", + "default": "MOp6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "844", + "default": "844", + "title": "Id", + "type": "string" + } + }, + "title": "_Mop6A", + "type": "object" + }, + "_Mop6B": { + "description": "Model MOp6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary motor area, Layer 6b", + "default": "Primary motor area, Layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOp6b", + "default": "MOp6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "882", + "default": "882", + "title": "Id", + "type": "string" + } + }, + "title": "_Mop6B", + "type": "object" + }, + "_Mos": { + "description": "Model MOs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Secondary motor area", + "default": "Secondary motor area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOs", + "default": "MOs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "993", + "default": "993", + "title": "Id", + "type": "string" + } + }, + "title": "_Mos", + "type": "object" + }, + "_Mos1": { + "description": "Model MOs1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Secondary motor area, layer 1", + "default": "Secondary motor area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOs1", + "default": "MOs1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "656", + "default": "656", + "title": "Id", + "type": "string" + } + }, + "title": "_Mos1", + "type": "object" + }, + "_Mos2_3": { + "description": "Model MOs2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "rrid": { - "anyOf": [ - { - "$ref": "#/$defs/PIDName" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Research Resource ID" + "name": { + "const": "Secondary motor area, layer 2/3", + "default": "Secondary motor area, layer 2/3", + "title": "Name", + "type": "string" }, - "lot_number": { - "title": "Lot number", + "acronym": { + "const": "MOs2/3", + "default": "MOs2/3", + "title": "Acronym", "type": "string" }, - "expiration_date": { - "anyOf": [ - { - "format": "date", - "type": "string" - }, - { - "type": "null" - } - ], + "id": { + "const": "962", + "default": "962", + "title": "Id", + "type": "string" + } + }, + "title": "_Mos2_3", + "type": "object" + }, + "_Mos5": { + "description": "Model MOs5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Secondary motor area, layer 5", + "default": "Secondary motor area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOs5", + "default": "MOs5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "767", + "default": "767", + "title": "Id", + "type": "string" + } + }, + "title": "_Mos5", + "type": "object" + }, + "_Mos6A": { + "description": "Model MOs6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Secondary motor area, layer 6a", + "default": "Secondary motor area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOs6a", + "default": "MOs6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1021", + "default": "1021", + "title": "Id", + "type": "string" + } + }, + "title": "_Mos6A", + "type": "object" + }, + "_Mos6B": { + "description": "Model MOs6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Secondary motor area, layer 6b", + "default": "Secondary motor area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOs6b", + "default": "MOs6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1085", + "default": "1085", + "title": "Id", + "type": "string" + } + }, + "title": "_Mos6B", + "type": "object" + }, + "_Mov": { + "description": "Model moV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "motor root of the trigeminal nerve", + "default": "motor root of the trigeminal nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "moV", + "default": "moV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "93", + "default": "93", + "title": "Id", + "type": "string" + } + }, + "title": "_Mov", + "type": "object" + }, + "_Mp": { + "description": "Model mp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "mammillary peduncle", + "default": "mammillary peduncle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mp", + "default": "mp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "673", + "default": "673", + "title": "Id", + "type": "string" + } + }, + "title": "_Mp", + "type": "object" + }, + "_Mpi": { + "description": "Model MPI", + "properties": { + "name": { + "const": "MPI", + "default": "MPI", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MPI", + "default": "MPI", + "title": "Abbreviation", + "type": "string" + }, + "registry": { "default": null, - "title": "Lot expiration date" + "title": "Registry", + "type": "null" }, - "fluorophore": { - "$ref": "#/$defs/Fluorophore" + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Mpi", + "type": "object" + }, + "_Mpn": { + "description": "Model MPN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial preoptic nucleus", + "default": "Medial preoptic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MPN", + "default": "MPN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "515", + "default": "515", + "title": "Id", + "type": "string" + } + }, + "title": "_Mpn", + "type": "object" + }, + "_Mpo": { + "description": "Model MPO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial preoptic area", + "default": "Medial preoptic area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MPO", + "default": "MPO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "523", + "default": "523", + "title": "Id", + "type": "string" + } + }, + "title": "_Mpo", + "type": "object" + }, + "_Mpt": { + "description": "Model MPT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial pretectal area", + "default": "Medial pretectal area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MPT", + "default": "MPT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "531", + "default": "531", + "title": "Id", + "type": "string" + } + }, + "title": "_Mpt", + "type": "object" + }, + "_Mrn": { + "description": "Model MRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain reticular nucleus", + "default": "Midbrain reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MRN", + "default": "MRN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "128", + "default": "128", + "title": "Id", + "type": "string" + } + }, + "title": "_Mrn", + "type": "object" + }, + "_Ms": { + "description": "Model MS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial septal nucleus", + "default": "Medial septal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MS", + "default": "MS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "564", + "default": "564", + "title": "Id", + "type": "string" + } + }, + "title": "_Ms", + "type": "object" + }, + "_Msc": { + "description": "Model MSC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial septal complex", + "default": "Medial septal complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MSC", + "default": "MSC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "904", + "default": "904", + "title": "Id", + "type": "string" + } + }, + "title": "_Msc", + "type": "object" + }, + "_Mt": { + "description": "Model MT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial terminal nucleus of the accessory optic tract", + "default": "Medial terminal nucleus of the accessory optic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MT", + "default": "MT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "58", + "default": "58", + "title": "Id", + "type": "string" + } + }, + "title": "_Mt", + "type": "object" + }, + "_Mtg": { + "description": "Model mtg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "mammillotegmental tract", + "default": "mammillotegmental tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mtg", + "default": "mtg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "681", + "default": "681", + "title": "Id", + "type": "string" + } + }, + "title": "_Mtg", + "type": "object" + }, + "_Mtn": { + "description": "Model MTN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midline group of the dorsal thalamus", + "default": "Midline group of the dorsal thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MTN", + "default": "MTN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "571", + "default": "571", + "title": "Id", + "type": "string" + } + }, + "title": "_Mtn", + "type": "object" + }, + "_Mtt": { + "description": "Model mtt", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "excitation_wavelength": { - "title": "Excitation wavelength (nm)", - "type": "integer" + "name": { + "const": "mammillothalamic tract", + "default": "mammillothalamic tract", + "title": "Name", + "type": "string" }, - "excitation_wavelength_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "nanometer", - "title": "Excitation wavelength unit" + "acronym": { + "const": "mtt", + "default": "mtt", + "title": "Acronym", + "type": "string" }, - "stain_type": { - "$ref": "#/$defs/StainType", - "title": "Stain type" + "id": { + "const": "690", + "default": "690", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "source", - "lot_number", - "fluorophore", - "excitation_wavelength", - "stain_type" - ], - "title": "Readout", + "title": "_Mtt", "type": "object" }, - "Reagent": { - "additionalProperties": false, - "description": "Description of reagent used in procedure", + "_Mus_Musculus": { + "description": "Model Mus musculus", "properties": { "name": { + "const": "Mus musculus", + "default": "Mus musculus", "title": "Name", "type": "string" }, - "source": { + "registry": { + "default": { + "name": "National Center for Biotechnology Information", + "abbreviation": "NCBI" + }, "discriminator": { "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, - "propertyName": "name" + "propertyName": "abbreviation" }, "oneOf": [ { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Conoptics" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Custom" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Dodotronic" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Doric" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Ealing" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Edmund_Optics" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "NCBI:txid10090", + "default": "NCBI:txid10090", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Mus_Musculus", + "type": "object" + }, + "_Mv": { + "description": "Model MV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial vestibular nucleus", + "default": "Medial vestibular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MV", + "default": "MV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "202", + "default": "202", + "title": "Id", + "type": "string" + } + }, + "title": "_Mv", + "type": "object" + }, + "_My": { + "description": "Model MY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medulla", + "default": "Medulla", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MY", + "default": "MY", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "354", + "default": "354", + "title": "Id", + "type": "string" + } + }, + "title": "_My", + "type": "object" + }, + "_My_Mot": { + "description": "Model MY-mot", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medulla, motor related", + "default": "Medulla, motor related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MY-mot", + "default": "MY-mot", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "370", + "default": "370", + "title": "Id", + "type": "string" + } + }, + "title": "_My_Mot", + "type": "object" + }, + "_My_Sat": { + "description": "Model MY-sat", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medulla, behavioral state related", + "default": "Medulla, behavioral state related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MY-sat", + "default": "MY-sat", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "379", + "default": "379", + "title": "Id", + "type": "string" + } + }, + "title": "_My_Sat", + "type": "object" + }, + "_My_Sen": { + "description": "Model MY-sen", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medulla, sensory related", + "default": "Medulla, sensory related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MY-sen", + "default": "MY-sen", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "386", + "default": "386", + "title": "Id", + "type": "string" + } + }, + "title": "_My_Sen", + "type": "object" + }, + "_National_Center_For_Complementary_And_Integrative_Health": { + "description": "Model National Center for Complementary and Integrative Health", + "properties": { + "name": { + "const": "National Center for Complementary and Integrative Health", + "default": "National Center for Complementary and Integrative Health", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NCCIH", + "default": "NCCIH", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Emory_University" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Euresys" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Fujinon" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Hamamatsu" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Hamilton" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Ir_Robot_Co" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00190t495", + "default": "00190t495", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_National_Center_For_Complementary_And_Integrative_Health", + "type": "object" + }, + "_National_Institute_Of_Mental_Health": { + "description": "Model National Institute of Mental Health", + "properties": { + "name": { + "const": "National Institute of Mental Health", + "default": "National Institute of Mental Health", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NIMH", + "default": "NIMH", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Isl_Products_International" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Infinity_Photo_Optical" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Integrated_Dna_Technologies" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Invitrogen" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Jackson_Laboratory" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Janelia_Research_Campus" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "04xeg9z08", + "default": "04xeg9z08", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_National_Institute_Of_Mental_Health", + "type": "object" + }, + "_National_Institute_Of_Neurological_Disorders_And_Stroke": { + "description": "Model National Institute of Neurological Disorders and Stroke", + "properties": { + "name": { + "const": "National Institute of Neurological Disorders and Stroke", + "default": "National Institute of Neurological Disorders and Stroke", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NINDS", + "default": "NINDS", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Julabo" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Lg" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Leica" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Lumen_Dynamics" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Lifecanvas" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Mbf_Bioscience" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Mks_Newport" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "01s5ya894", + "default": "01s5ya894", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_National_Institute_Of_Neurological_Disorders_And_Stroke", + "type": "object" + }, + "_National_Instruments": { + "description": "Model National Instruments", + "properties": { + "name": { + "const": "National Instruments", + "default": "National Instruments", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Mpi" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Meadowlark_Optics" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Mitutuyo" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Nresearch_Inc" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "026exqw73", + "default": "026exqw73", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_National_Instruments", + "type": "object" + }, + "_Navitar": { + "description": "Model Navitar", + "properties": { + "name": { + "const": "Navitar", + "default": "Navitar", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Navitar", + "type": "object" + }, + "_Nb": { + "description": "Model NB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the brachium of the inferior colliculus", + "default": "Nucleus of the brachium of the inferior colliculus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NB", + "default": "NB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "580", + "default": "580", + "title": "Id", + "type": "string" + } + }, + "title": "_Nb", + "type": "object" + }, + "_Ncbi": { + "additionalProperties": false, + "description": "Model NCBI", + "properties": { + "name": { + "const": "National Center for Biotechnology Information", + "default": "National Center for Biotechnology Information", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NCBI", + "default": "NCBI", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Ncbi", + "type": "object" + }, + "_Nd": { + "description": "Model ND", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of Darkschewitsch", + "default": "Nucleus of Darkschewitsch", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ND", + "default": "ND", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "587", + "default": "587", + "title": "Id", + "type": "string" + } + }, + "title": "_Nd", + "type": "object" + }, + "_Ndb": { + "description": "Model NDB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Diagonal band nucleus", + "default": "Diagonal band nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NDB", + "default": "NDB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "596", + "default": "596", + "title": "Id", + "type": "string" + } + }, + "title": "_Ndb", + "type": "object" + }, + "_Neck": { + "description": "Model neck", + "properties": { + "name": { + "const": "neck", + "default": "neck", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_National_Instruments" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Navitar" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Neurophotometrics" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_New_Scale_Technologies" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_New_York_University" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_35587", + "default": "EMAPA_35587", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Neck", + "type": "object" + }, + "_Neurophotometrics": { + "description": "Model Neurophotometrics", + "properties": { + "name": { + "const": "Neurophotometrics", + "default": "Neurophotometrics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Neurophotometrics", + "type": "object" + }, + "_New_Scale_Technologies": { + "description": "Model New Scale Technologies", + "properties": { + "name": { + "const": "New Scale Technologies", + "default": "New Scale Technologies", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_New_Scale_Technologies", + "type": "object" + }, + "_New_York_University": { + "description": "Model New York University", + "properties": { + "name": { + "const": "New York University", + "default": "New York University", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NYU", + "default": "NYU", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Nikon" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Olympus" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Open_Ephys_Production_Site" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Optotune" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Other" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Oxxius" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Prizmatix" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "0190ak572", + "default": "0190ak572", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_New_York_University", + "type": "object" + }, + "_Ni": { + "description": "Model NI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus incertus", + "default": "Nucleus incertus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NI", + "default": "NI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "604", + "default": "604", + "title": "Id", + "type": "string" + } + }, + "title": "_Ni", + "type": "object" + }, + "_Nikon": { + "description": "Model Nikon", + "properties": { + "name": { + "const": "Nikon", + "default": "Nikon", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Quantifi" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Raspberry_Pi" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Sicgen" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Schneider_Kreuznach" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Second_Order_Effects" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Semrock" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Sigma_Aldrich" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "0280y9h11", + "default": "0280y9h11", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Nikon", + "type": "object" + }, + "_Nll": { + "description": "Model NLL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the lateral lemniscus", + "default": "Nucleus of the lateral lemniscus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NLL", + "default": "NLL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "612", + "default": "612", + "title": "Id", + "type": "string" + } + }, + "title": "_Nll", + "type": "object" + }, + "_Nlot": { + "description": "Model NLOT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the lateral olfactory tract", + "default": "Nucleus of the lateral olfactory tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NLOT", + "default": "NLOT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "619", + "default": "619", + "title": "Id", + "type": "string" + } + }, + "title": "_Nlot", + "type": "object" + }, + "_Nlot1": { + "description": "Model NLOT1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the lateral olfactory tract, molecular layer", + "default": "Nucleus of the lateral olfactory tract, molecular layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NLOT1", + "default": "NLOT1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "260", + "default": "260", + "title": "Id", + "type": "string" + } + }, + "title": "_Nlot1", + "type": "object" + }, + "_Nlot2": { + "description": "Model NLOT2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the lateral olfactory tract, pyramidal layer", + "default": "Nucleus of the lateral olfactory tract, pyramidal layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NLOT2", + "default": "NLOT2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "268", + "default": "268", + "title": "Id", + "type": "string" + } + }, + "title": "_Nlot2", + "type": "object" + }, + "_Nlot3": { + "description": "Model NLOT3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the lateral olfactory tract, layer 3", + "default": "Nucleus of the lateral olfactory tract, layer 3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NLOT3", + "default": "NLOT3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1139", + "default": "1139", + "title": "Id", + "type": "string" + } + }, + "title": "_Nlot3", + "type": "object" + }, + "_Nod": { + "description": "Model NOD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nodulus (X)", + "default": "Nodulus (X)", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NOD", + "default": "NOD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "968", + "default": "968", + "title": "Id", + "type": "string" + } + }, + "title": "_Nod", + "type": "object" + }, + "_Not": { + "description": "Model NOT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the optic tract", + "default": "Nucleus of the optic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NOT", + "default": "NOT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "628", + "default": "628", + "title": "Id", + "type": "string" + } + }, + "title": "_Not", + "type": "object" + }, + "_Npc": { + "description": "Model NPC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the posterior commissure", + "default": "Nucleus of the posterior commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NPC", + "default": "NPC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "634", + "default": "634", + "title": "Id", + "type": "string" + } + }, + "title": "_Npc", + "type": "object" + }, + "_Nr": { + "description": "Model NR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of Roller", + "default": "Nucleus of Roller", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NR", + "default": "NR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "177", + "default": "177", + "title": "Id", + "type": "string" + } + }, + "title": "_Nr", + "type": "object" + }, + "_Nresearch_Inc": { + "description": "Model NResearch Inc", + "properties": { + "name": { + "const": "NResearch Inc", + "default": "NResearch Inc", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Nresearch_Inc", + "type": "object" + }, + "_Nst": { + "description": "Model nst", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "nigrostriatal tract", + "default": "nigrostriatal tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "nst", + "default": "nst", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "102", + "default": "102", + "title": "Id", + "type": "string" + } + }, + "title": "_Nst", + "type": "object" + }, + "_Ntb": { + "description": "Model NTB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the trapezoid body", + "default": "Nucleus of the trapezoid body", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NTB", + "default": "NTB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "642", + "default": "642", + "title": "Id", + "type": "string" + } + }, + "title": "_Ntb", + "type": "object" + }, + "_Nts": { + "description": "Model NTS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the solitary tract", + "default": "Nucleus of the solitary tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NTS", + "default": "NTS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "651", + "default": "651", + "title": "Id", + "type": "string" + } + }, + "title": "_Nts", + "type": "object" + }, + "_Och": { + "description": "Model och", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "optic chiasm", + "default": "optic chiasm", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "och", + "default": "och", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "117", + "default": "117", + "title": "Id", + "type": "string" + } + }, + "title": "_Och", + "type": "object" + }, + "_Olf": { + "description": "Model OLF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Olfactory areas", + "default": "Olfactory areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "OLF", + "default": "OLF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "698", + "default": "698", + "title": "Id", + "type": "string" + } + }, + "title": "_Olf", + "type": "object" + }, + "_Olympus": { + "description": "Model Olympus", + "properties": { + "name": { + "const": "Olympus", + "default": "Olympus", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Simons_Foundation" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Spinnaker" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Tamron" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Teledyne_Flir" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_The_Imaging_Source" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02vcdte90", + "default": "02vcdte90", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Olympus", + "type": "object" + }, + "_Onl": { + "description": "Model onl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "olfactory nerve layer of main olfactory bulb", + "default": "olfactory nerve layer of main olfactory bulb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "onl", + "default": "onl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1016", + "default": "1016", + "title": "Id", + "type": "string" + } + }, + "title": "_Onl", + "type": "object" + }, + "_Op": { + "description": "Model OP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Olivary pretectal nucleus", + "default": "Olivary pretectal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "OP", + "default": "OP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "706", + "default": "706", + "title": "Id", + "type": "string" + } + }, + "title": "_Op", + "type": "object" + }, + "_Open_Ephys_Production_Site": { + "description": "Model Open Ephys Production Site", + "properties": { + "name": { + "const": "Open Ephys Production Site", + "default": "Open Ephys Production Site", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "OEPS", + "default": "OEPS", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_The_Lee_Company" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Thorlabs" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Tymphany" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Vieworks" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Vortran" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Ams_Osram" + "$ref": "#/$defs/_Rrid" } ], - "title": "Source" + "title": "Registry" + }, + "registry_identifier": { + "const": "007rkz355", + "default": "007rkz355", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Open_Ephys_Production_Site", + "type": "object" + }, + "_Opt": { + "description": "Model opt", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "optic tract", + "default": "optic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "opt", + "default": "opt", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "125", + "default": "125", + "title": "Id", + "type": "string" + } + }, + "title": "_Opt", + "type": "object" + }, + "_Optotune": { + "description": "Model Optotune", + "properties": { + "name": { + "const": "Optotune", + "default": "Optotune", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Optotune", + "type": "object" + }, + "_Or": { + "description": "Model or", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "optic radiation", + "default": "optic radiation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "or", + "default": "or", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682520", + "default": "484682520", + "title": "Id", + "type": "string" + } + }, + "title": "_Or", + "type": "object" + }, + "_Orb": { + "description": "Model ORB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area", + "default": "Orbital area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORB", + "default": "ORB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "714", + "default": "714", + "title": "Id", + "type": "string" + } + }, + "title": "_Orb", + "type": "object" + }, + "_Orbl": { + "description": "Model ORBl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part", + "default": "Orbital area, lateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl", + "default": "ORBl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "723", + "default": "723", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl", + "type": "object" + }, + "_Orbl1": { + "description": "Model ORBl1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part, layer 1", + "default": "Orbital area, lateral part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl1", + "default": "ORBl1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "448", + "default": "448", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl1", + "type": "object" + }, + "_Orbl2_3": { + "description": "Model ORBl2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part, layer 2/3", + "default": "Orbital area, lateral part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl2/3", + "default": "ORBl2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "412", + "default": "412", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl2_3", + "type": "object" + }, + "_Orbl5": { + "description": "Model ORBl5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part, layer 5", + "default": "Orbital area, lateral part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl5", + "default": "ORBl5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "630", + "default": "630", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl5", + "type": "object" + }, + "_Orbl6A": { + "description": "Model ORBl6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part, layer 6a", + "default": "Orbital area, lateral part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl6a", + "default": "ORBl6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "440", + "default": "440", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl6A", + "type": "object" + }, + "_Orbl6B": { + "description": "Model ORBl6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part, layer 6b", + "default": "Orbital area, lateral part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl6b", + "default": "ORBl6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "488", + "default": "488", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl6B", + "type": "object" + }, + "_Orbm": { + "description": "Model ORBm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, medial part", + "default": "Orbital area, medial part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBm", + "default": "ORBm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "731", + "default": "731", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbm", + "type": "object" + }, + "_Orbm1": { + "description": "Model ORBm1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, medial part, layer 1", + "default": "Orbital area, medial part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBm1", + "default": "ORBm1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484", + "default": "484", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbm1", + "type": "object" + }, + "_Orbm2_3": { + "description": "Model ORBm2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, medial part, layer 2/3", + "default": "Orbital area, medial part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBm2/3", + "default": "ORBm2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "582", + "default": "582", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbm2_3", + "type": "object" + }, + "_Orbm5": { + "description": "Model ORBm5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, medial part, layer 5", + "default": "Orbital area, medial part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBm5", + "default": "ORBm5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "620", + "default": "620", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbm5", + "type": "object" + }, + "_Orbm6A": { + "description": "Model ORBm6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, medial part, layer 6a", + "default": "Orbital area, medial part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBm6a", + "default": "ORBm6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "910", + "default": "910", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbm6A", + "type": "object" + }, + "_Orbm6B": { + "description": "Model ORBm6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, medial part, layer 6b", + "default": "Orbital area, medial part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBm6b", + "default": "ORBm6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "527696977", + "default": "527696977", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbm6B", + "type": "object" + }, + "_Orbvl": { + "description": "Model ORBvl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, ventrolateral part", + "default": "Orbital area, ventrolateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBvl", + "default": "ORBvl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "746", + "default": "746", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbvl", + "type": "object" + }, + "_Orbvl1": { + "description": "Model ORBvl1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, ventrolateral part, layer 1", + "default": "Orbital area, ventrolateral part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBvl1", + "default": "ORBvl1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "969", + "default": "969", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbvl1", + "type": "object" + }, + "_Orbvl2_3": { + "description": "Model ORBvl2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, ventrolateral part, layer 2/3", + "default": "Orbital area, ventrolateral part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBvl2/3", + "default": "ORBvl2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "288", + "default": "288", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbvl2_3", + "type": "object" + }, + "_Orbvl5": { + "description": "Model ORBvl5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, ventrolateral part, layer 5", + "default": "Orbital area, ventrolateral part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBvl5", + "default": "ORBvl5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1125", + "default": "1125", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbvl5", + "type": "object" + }, + "_Orbvl6A": { + "description": "Model ORBvl6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "rrid": { - "anyOf": [ - { - "$ref": "#/$defs/PIDName" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Research Resource ID" + "name": { + "const": "Orbital area, ventrolateral part, layer 6a", + "default": "Orbital area, ventrolateral part, layer 6a", + "title": "Name", + "type": "string" }, - "lot_number": { - "title": "Lot number", + "acronym": { + "const": "ORBvl6a", + "default": "ORBvl6a", + "title": "Acronym", "type": "string" }, - "expiration_date": { - "anyOf": [ - { - "format": "date", - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lot expiration date" + "id": { + "const": "608", + "default": "608", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "source", - "lot_number" - ], - "title": "Reagent", + "title": "_Orbvl6A", "type": "object" }, - "RetroOrbitalInjection": { + "_Orbvl6B": { + "description": "Model ORBvl6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, ventrolateral part, layer 6b", + "default": "Orbital area, ventrolateral part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBvl6b", + "default": "ORBvl6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "680", + "default": "680", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbvl6B", + "type": "object" + }, + "_Orcid": { "additionalProperties": false, - "description": "Description of a retro-orbital injection procedure", + "description": "Model ORCID", "properties": { - "injection_materials": { - "items": { - "discriminator": { - "mapping": { - "Reagent": "#/$defs/NonViralMaterial", - "Virus": "#/$defs/ViralMaterial" - }, - "propertyName": "material_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/ViralMaterial" - }, - { - "$ref": "#/$defs/NonViralMaterial" - } - ] - }, - "minItems": 1, - "title": "Injection material", - "type": "array" + "name": { + "const": "Open Researcher and Contributor ID", + "default": "Open Researcher and Contributor ID", + "title": "Name", + "type": "string" }, - "recovery_time": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], + "abbreviation": { + "const": "ORCID", + "default": "ORCID", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Orcid", + "type": "object" + }, + "_Ot": { + "description": "Model OT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Olfactory tubercle", + "default": "Olfactory tubercle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "OT", + "default": "OT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "754", + "default": "754", + "title": "Id", + "type": "string" + } + }, + "title": "_Ot", + "type": "object" + }, + "_Other": { + "description": "Model Other", + "properties": { + "name": { + "const": "Other", + "default": "Other", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, "default": null, - "title": "Recovery time" + "title": "Abbreviation", + "type": "null" }, - "recovery_time_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Recovery time unit" + "registry": { + "default": null, + "title": "Registry", + "type": "null" }, - "injection_duration": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], + "registry_identifier": { "default": null, - "title": "Injection duration" + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Other", + "type": "object" + }, + "_Ov": { + "description": "Model OV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "injection_duration_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "minute", - "title": "Injection duration unit" + "name": { + "const": "Vascular organ of the lamina terminalis", + "default": "Vascular organ of the lamina terminalis", + "title": "Name", + "type": "string" }, - "instrument_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], + "acronym": { + "const": "OV", + "default": "OV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "763", + "default": "763", + "title": "Id", + "type": "string" + } + }, + "title": "_Ov", + "type": "object" + }, + "_Oxxius": { + "description": "Model Oxxius", + "properties": { + "name": { + "const": "Oxxius", + "default": "Oxxius", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, "default": null, - "title": "Instrument ID" + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Oxxius", + "type": "object" + }, + "_P": { + "description": "Model P", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pons", + "default": "Pons", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "P", + "default": "P", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "771", + "default": "771", + "title": "Id", + "type": "string" + } + }, + "title": "_P", + "type": "object" + }, + "_P5": { + "description": "Model P5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Peritrigeminal zone", + "default": "Peritrigeminal zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "P5", + "default": "P5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "549009215", + "default": "549009215", + "title": "Id", + "type": "string" + } + }, + "title": "_P5", + "type": "object" + }, + "_P_Mot": { + "description": "Model P-mot", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pons, motor related", + "default": "Pons, motor related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "P-mot", + "default": "P-mot", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "987", + "default": "987", + "title": "Id", + "type": "string" + } + }, + "title": "_P_Mot", + "type": "object" + }, + "_P_Sat": { + "description": "Model P-sat", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", + "name": { + "const": "Pons, behavioral state related", + "default": "Pons, behavioral state related", + "title": "Name", "type": "string" }, - "procedure_type": { - "const": "Retro-orbital injection", - "default": "Retro-orbital injection", - "enum": [ - "Retro-orbital injection" - ], - "title": "Procedure Type", + "acronym": { + "const": "P-sat", + "default": "P-sat", + "title": "Acronym", "type": "string" }, - "injection_volume": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Injection volume (uL)" + "id": { + "const": "1117", + "default": "1117", + "title": "Id", + "type": "string" + } + }, + "title": "_P_Sat", + "type": "object" + }, + "_P_Sen": { + "description": "Model P-sen", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "injection_volume_unit": { - "$ref": "#/$defs/VolumeUnit", - "default": "microliter", - "title": "Injection volume unit" + "name": { + "const": "Pons, sensory related", + "default": "Pons, sensory related", + "title": "Name", + "type": "string" }, - "injection_eye": { - "$ref": "#/$defs/Side", - "title": "Injection eye" + "acronym": { + "const": "P-sen", + "default": "P-sen", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1132", + "default": "1132", + "title": "Id", + "type": "string" } }, - "required": [ - "injection_materials", - "protocol_id", - "injection_volume", - "injection_eye" - ], - "title": "RetroOrbitalInjection", + "title": "_P_Sen", "type": "object" }, - "SectionOrientation": { - "description": "Orientation of sectioning", - "enum": [ - "Coronal", - "Sagittal", - "Transverse" - ], - "title": "SectionOrientation", - "type": "string" - }, - "SectionStrategy": { - "description": "Section strategy", - "enum": [ - "Whole Brain", - "Hemi Brain" - ], - "title": "SectionStrategy", - "type": "string" + "_Pa": { + "description": "Model PA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior amygdalar nucleus", + "default": "Posterior amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PA", + "default": "PA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "780", + "default": "780", + "title": "Id", + "type": "string" + } + }, + "title": "_Pa", + "type": "object" }, - "Sectioning": { - "additionalProperties": false, - "description": "Description of a sectioning procedure", + "_Pa4": { + "description": "Model Pa4", "properties": { - "procedure_type": { - "const": "Sectioning", - "default": "Sectioning", - "enum": [ - "Sectioning" - ], - "title": "Procedure Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "number_of_slices": { - "title": "Number of slices", - "type": "integer" + "name": { + "const": "Paratrochlear nucleus", + "default": "Paratrochlear nucleus", + "title": "Name", + "type": "string" }, - "output_specimen_ids": { - "items": { - "type": "string" - }, - "minItems": 1, - "title": "Output specimen ids", - "type": "array" + "acronym": { + "const": "Pa4", + "default": "Pa4", + "title": "Acronym", + "type": "string" }, - "section_orientation": { - "$ref": "#/$defs/SectionOrientation", - "title": "Sectioning orientation" + "id": { + "const": "606826663", + "default": "606826663", + "title": "Id", + "type": "string" + } + }, + "title": "_Pa4", + "type": "object" + }, + "_Pa5": { + "description": "Model Pa5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "section_thickness": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Section thickness" + "name": { + "const": "Paratrigeminal nucleus", + "default": "Paratrigeminal nucleus", + "title": "Name", + "type": "string" }, - "section_thickness_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Section thickness unit" + "acronym": { + "const": "Pa5", + "default": "Pa5", + "title": "Acronym", + "type": "string" }, - "section_distance_from_reference": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Section distance from reference" + "id": { + "const": "589508451", + "default": "589508451", + "title": "Id", + "type": "string" + } + }, + "title": "_Pa5", + "type": "object" + }, + "_Paa": { + "description": "Model PAA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "section_distance_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "millimeter", - "title": "Distance unit" + "name": { + "const": "Piriform-amygdalar area", + "default": "Piriform-amygdalar area", + "title": "Name", + "type": "string" }, - "reference_location": { - "$ref": "#/$defs/CoordinateReferenceLocation", - "title": "Reference location for distance measurement" + "acronym": { + "const": "PAA", + "default": "PAA", + "title": "Acronym", + "type": "string" }, - "section_strategy": { - "$ref": "#/$defs/SectionStrategy", - "title": "Slice strategy" + "id": { + "const": "788", + "default": "788", + "title": "Id", + "type": "string" + } + }, + "title": "_Paa", + "type": "object" + }, + "_Pag": { + "description": "Model PAG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "targeted_structure": { - "description": "Use Allen Brain Atlas Ontology", - "title": "Targeted structure", + "name": { + "const": "Periaqueductal gray", + "default": "Periaqueductal gray", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PAG", + "default": "PAG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "795", + "default": "795", + "title": "Id", "type": "string" } }, - "required": [ - "number_of_slices", - "output_specimen_ids", - "section_orientation", - "section_thickness", - "section_distance_from_reference", - "reference_location", - "section_strategy", - "targeted_structure" - ], - "title": "Sectioning", + "title": "_Pag", "type": "object" }, - "Side": { - "description": "Side of animal", - "enum": [ - "Left", - "Right", - "Midline" - ], - "title": "Side", - "type": "string" + "_Pal": { + "description": "Model PAL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pallidum", + "default": "Pallidum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PAL", + "default": "PAL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "803", + "default": "803", + "title": "Id", + "type": "string" + } + }, + "title": "_Pal", + "type": "object" }, - "SizeUnit": { - "description": "Enumeration of Length Measurements", - "enum": [ - "meter", - "centimeter", - "millimeter", - "micrometer", - "nanometer", - "inch", - "pixel" - ], - "title": "SizeUnit", - "type": "string" + "_Palc": { + "description": "Model PALc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pallidum, caudal region", + "default": "Pallidum, caudal region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PALc", + "default": "PALc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "809", + "default": "809", + "title": "Id", + "type": "string" + } + }, + "title": "_Palc", + "type": "object" }, - "SpecimenProcedure": { - "additionalProperties": false, - "description": "Description of surgical or other procedure performed on a specimen", + "_Pald": { + "description": "Model PALd", "properties": { - "procedure_type": { - "$ref": "#/$defs/SpecimenProcedureType", - "title": "Procedure type" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "procedure_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Name to clarify specific procedure used as needed", - "title": "Procedure name" + "name": { + "const": "Pallidum, dorsal region", + "default": "Pallidum, dorsal region", + "title": "Name", + "type": "string" }, - "specimen_id": { - "title": "Specimen ID", + "acronym": { + "const": "PALd", + "default": "PALd", + "title": "Acronym", "type": "string" }, - "start_date": { - "format": "date", - "title": "Start date", + "id": { + "const": "818", + "default": "818", + "title": "Id", + "type": "string" + } + }, + "title": "_Pald", + "type": "object" + }, + "_Palm": { + "description": "Model PALm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "end_date": { - "format": "date", - "title": "End date", + "name": { + "const": "Pallidum, medial region", + "default": "Pallidum, medial region", + "title": "Name", "type": "string" }, - "experimenter_full_name": { - "description": "First and last name of the experimenter.", - "title": "Experimenter full name", + "acronym": { + "const": "PALm", + "default": "PALm", + "title": "Acronym", "type": "string" }, - "protocol_id": { - "description": "DOI for protocols.io", - "items": { - "type": "string" - }, - "title": "Protocol ID", - "type": "array" + "id": { + "const": "826", + "default": "826", + "title": "Id", + "type": "string" + } + }, + "title": "_Palm", + "type": "object" + }, + "_Palv": { + "description": "Model PALv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "reagents": { - "default": [], - "items": { - "$ref": "#/$defs/Reagent" - }, - "title": "Reagents", - "type": "array" + "name": { + "const": "Pallidum, ventral region", + "default": "Pallidum, ventral region", + "title": "Name", + "type": "string" }, - "hcr_series": { - "anyOf": [ - { - "$ref": "#/$defs/HCRSeries" - }, - { - "type": "null" - } - ], - "default": null, - "title": "HCR Series" + "acronym": { + "const": "PALv", + "default": "PALv", + "title": "Acronym", + "type": "string" }, - "antibodies": { - "anyOf": [ - { - "items": { - "$ref": "#/$defs/Antibody" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Immunolabeling" + "id": { + "const": "835", + "default": "835", + "title": "Id", + "type": "string" + } + }, + "title": "_Palv", + "type": "object" + }, + "_Par": { + "description": "Model PAR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "sectioning": { - "anyOf": [ - { - "$ref": "#/$defs/Sectioning" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Sectioning" + "name": { + "const": "Parasubiculum", + "default": "Parasubiculum", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "PAR", + "default": "PAR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "843", + "default": "843", + "title": "Id", + "type": "string" } }, - "required": [ - "procedure_type", - "specimen_id", - "start_date", - "end_date", - "experimenter_full_name", - "protocol_id" - ], - "title": "SpecimenProcedure", + "title": "_Par", "type": "object" }, - "SpecimenProcedureType": { - "description": "Specimen procedures", - "enum": [ - "Clearing", - "Delipidation", - "Embedding", - "Expansion", - "Fixation", - "Fixation and permeabilization", - "Gelation", - "Hybridication and amplification", - "Hybridization Chain Reaction", - "Immunolabeling", - "Mounting", - "Other", - "Refractive index matching", - "Sectioning", - "Soak", - "Storage", - "Stripping", - "Tamoxifen induction" - ], - "title": "SpecimenProcedureType", - "type": "string" + "_Parn": { + "description": "Model PARN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parvicellular reticular nucleus", + "default": "Parvicellular reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PARN", + "default": "PARN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "852", + "default": "852", + "title": "Id", + "type": "string" + } + }, + "title": "_Parn", + "type": "object" }, - "Stain": { - "additionalProperties": false, - "description": "Description of a non-oligo probe stain", + "_Pars_Scapularis_Of_Deltoid": { + "description": "Model pars scapularis of deltoid", "properties": { "name": { + "const": "pars scapularis of deltoid", + "default": "pars scapularis of deltoid", "title": "Name", "type": "string" }, - "source": { + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, "discriminator": { "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, - "propertyName": "name" + "propertyName": "abbreviation" }, "oneOf": [ { - "$ref": "#/$defs/_Aa_Opto_Electronic" - }, - { - "$ref": "#/$defs/_Asus" - }, - { - "$ref": "#/$defs/_Abcam" - }, - { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" - }, - { - "$ref": "#/$defs/_Ailipu_Technology_Co" - }, - { - "$ref": "#/$defs/_Allen_Institute" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" - }, - { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" - }, - { - "$ref": "#/$defs/_Allied" - }, - { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" - }, - { - "$ref": "#/$defs/_Arecont_Vision_Costar" - }, - { - "$ref": "#/$defs/_Basler" - }, - { - "$ref": "#/$defs/_Cambridge_Technology" - }, - { - "$ref": "#/$defs/_Carl_Zeiss" - }, - { - "$ref": "#/$defs/_Champalimaud_Foundation" - }, - { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" - }, - { - "$ref": "#/$defs/_Chroma" - }, - { - "$ref": "#/$defs/_Coherent_Scientific" - }, - { - "$ref": "#/$defs/_Columbia_University" - }, - { - "$ref": "#/$defs/_Computar" - }, - { - "$ref": "#/$defs/_Conoptics" - }, - { - "$ref": "#/$defs/_Custom" - }, - { - "$ref": "#/$defs/_Dodotronic" - }, - { - "$ref": "#/$defs/_Doric" - }, - { - "$ref": "#/$defs/_Ealing" - }, - { - "$ref": "#/$defs/_Edmund_Optics" - }, - { - "$ref": "#/$defs/_Emory_University" - }, - { - "$ref": "#/$defs/_Euresys" - }, - { - "$ref": "#/$defs/_Fujinon" - }, - { - "$ref": "#/$defs/_Hamamatsu" - }, - { - "$ref": "#/$defs/_Hamilton" - }, - { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" - }, - { - "$ref": "#/$defs/_Ir_Robot_Co" - }, - { - "$ref": "#/$defs/_Isl_Products_International" - }, - { - "$ref": "#/$defs/_Infinity_Photo_Optical" - }, - { - "$ref": "#/$defs/_Integrated_Dna_Technologies" - }, - { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" - }, - { - "$ref": "#/$defs/_Invitrogen" - }, - { - "$ref": "#/$defs/_Jackson_Laboratory" - }, - { - "$ref": "#/$defs/_Janelia_Research_Campus" - }, - { - "$ref": "#/$defs/_Julabo" - }, - { - "$ref": "#/$defs/_Lg" - }, - { - "$ref": "#/$defs/_Leica" - }, - { - "$ref": "#/$defs/_Lumen_Dynamics" - }, - { - "$ref": "#/$defs/_Lifecanvas" - }, - { - "$ref": "#/$defs/_Mbf_Bioscience" - }, - { - "$ref": "#/$defs/_Mks_Newport" - }, - { - "$ref": "#/$defs/_Mpi" - }, - { - "$ref": "#/$defs/_Meadowlark_Optics" - }, - { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" - }, - { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" - }, - { - "$ref": "#/$defs/_Mitutuyo" - }, - { - "$ref": "#/$defs/_Nresearch_Inc" - }, - { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" - }, - { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_National_Instruments" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Navitar" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Neurophotometrics" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_New_Scale_Technologies" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_New_York_University" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_36163", + "default": "EMAPA_36163", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Pars_Scapularis_Of_Deltoid", + "type": "object" + }, + "_Pas": { + "description": "Model PAS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parasolitary nucleus", + "default": "Parasolitary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PAS", + "default": "PAS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "859", + "default": "859", + "title": "Id", + "type": "string" + } + }, + "title": "_Pas", + "type": "object" + }, + "_Pb": { + "description": "Model PB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parabrachial nucleus", + "default": "Parabrachial nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PB", + "default": "PB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "867", + "default": "867", + "title": "Id", + "type": "string" + } + }, + "title": "_Pb", + "type": "object" + }, + "_Pbg": { + "description": "Model PBG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parabigeminal nucleus", + "default": "Parabigeminal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PBG", + "default": "PBG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "874", + "default": "874", + "title": "Id", + "type": "string" + } + }, + "title": "_Pbg", + "type": "object" + }, + "_Pc": { + "description": "Model pc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "posterior commissure", + "default": "posterior commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "pc", + "default": "pc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "158", + "default": "158", + "title": "Id", + "type": "string" + } + }, + "title": "_Pc", + "type": "object" + }, + "_Pc5": { + "description": "Model PC5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parvicellular motor 5 nucleus", + "default": "Parvicellular motor 5 nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PC5", + "default": "PC5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "549009223", + "default": "549009223", + "title": "Id", + "type": "string" + } + }, + "title": "_Pc5", + "type": "object" + }, + "_Pcg": { + "description": "Model PCG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pontine central gray", + "default": "Pontine central gray", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PCG", + "default": "PCG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "898", + "default": "898", + "title": "Id", + "type": "string" + } + }, + "title": "_Pcg", + "type": "object" + }, + "_Pcn": { + "description": "Model PCN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paracentral nucleus", + "default": "Paracentral nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PCN", + "default": "PCN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "907", + "default": "907", + "title": "Id", + "type": "string" + } + }, + "title": "_Pcn", + "type": "object" + }, + "_Pd": { + "description": "Model PD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterodorsal preoptic nucleus", + "default": "Posterodorsal preoptic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PD", + "default": "PD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "914", + "default": "914", + "title": "Id", + "type": "string" + } + }, + "title": "_Pd", + "type": "object" + }, + "_Pdtg": { + "description": "Model PDTg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterodorsal tegmental nucleus", + "default": "Posterodorsal tegmental nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PDTg", + "default": "PDTg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "599626927", + "default": "599626927", + "title": "Id", + "type": "string" + } + }, + "title": "_Pdtg", + "type": "object" + }, + "_Pectoralis_Major": { + "description": "Model pectoralis major", + "properties": { + "name": { + "const": "pectoralis major", + "default": "pectoralis major", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Nikon" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Olympus" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Open_Ephys_Production_Site" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Optotune" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Other" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Oxxius" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Prizmatix" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_18179", + "default": "EMAPA_18179", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Pectoralis_Major", + "type": "object" + }, + "_Pef": { + "description": "Model PeF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perifornical nucleus", + "default": "Perifornical nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PeF", + "default": "PeF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "576073704", + "default": "576073704", + "title": "Id", + "type": "string" + } + }, + "title": "_Pef", + "type": "object" + }, + "_Peri": { + "description": "Model PERI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area", + "default": "Perirhinal area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI", + "default": "PERI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "922", + "default": "922", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri", + "type": "object" + }, + "_Peri1": { + "description": "Model PERI1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area, layer 1", + "default": "Perirhinal area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI1", + "default": "PERI1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "540", + "default": "540", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri1", + "type": "object" + }, + "_Peri2_3": { + "description": "Model PERI2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area, layer 2/3", + "default": "Perirhinal area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI2/3", + "default": "PERI2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "888", + "default": "888", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri2_3", + "type": "object" + }, + "_Peri5": { + "description": "Model PERI5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area, layer 5", + "default": "Perirhinal area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI5", + "default": "PERI5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "692", + "default": "692", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri5", + "type": "object" + }, + "_Peri6A": { + "description": "Model PERI6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area, layer 6a", + "default": "Perirhinal area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI6a", + "default": "PERI6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "335", + "default": "335", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri6A", + "type": "object" + }, + "_Peri6B": { + "description": "Model PERI6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area, layer 6b", + "default": "Perirhinal area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI6b", + "default": "PERI6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "368", + "default": "368", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri6B", + "type": "object" + }, + "_Pf": { + "description": "Model PF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parafascicular nucleus", + "default": "Parafascicular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PF", + "default": "PF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "930", + "default": "930", + "title": "Id", + "type": "string" + } + }, + "title": "_Pf", + "type": "object" + }, + "_Pfl": { + "description": "Model PFL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paraflocculus", + "default": "Paraflocculus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PFL", + "default": "PFL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1041", + "default": "1041", + "title": "Id", + "type": "string" + } + }, + "title": "_Pfl", + "type": "object" + }, + "_Pg": { + "description": "Model PG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pontine gray", + "default": "Pontine gray", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PG", + "default": "PG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "931", + "default": "931", + "title": "Id", + "type": "string" + } + }, + "title": "_Pg", + "type": "object" + }, + "_Pgrn": { + "description": "Model PGRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paragigantocellular reticular nucleus", + "default": "Paragigantocellular reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PGRN", + "default": "PGRN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "938", + "default": "938", + "title": "Id", + "type": "string" + } + }, + "title": "_Pgrn", + "type": "object" + }, + "_Pgrnd": { + "description": "Model PGRNd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paragigantocellular reticular nucleus, dorsal part", + "default": "Paragigantocellular reticular nucleus, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PGRNd", + "default": "PGRNd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "970", + "default": "970", + "title": "Id", + "type": "string" + } + }, + "title": "_Pgrnd", + "type": "object" + }, + "_Pgrnl": { + "description": "Model PGRNl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paragigantocellular reticular nucleus, lateral part", + "default": "Paragigantocellular reticular nucleus, lateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PGRNl", + "default": "PGRNl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "978", + "default": "978", + "title": "Id", + "type": "string" + } + }, + "title": "_Pgrnl", + "type": "object" + }, + "_Ph": { + "description": "Model PH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior hypothalamic nucleus", + "default": "Posterior hypothalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PH", + "default": "PH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "946", + "default": "946", + "title": "Id", + "type": "string" + } + }, + "title": "_Ph", + "type": "object" + }, + "_Phy": { + "description": "Model PHY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perihypoglossal nuclei", + "default": "Perihypoglossal nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PHY", + "default": "PHY", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "154", + "default": "154", + "title": "Id", + "type": "string" + } + }, + "title": "_Phy", + "type": "object" + }, + "_Pil": { + "description": "Model PIL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior intralaminar thalamic nucleus", + "default": "Posterior intralaminar thalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PIL", + "default": "PIL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "560581563", + "default": "560581563", + "title": "Id", + "type": "string" + } + }, + "title": "_Pil", + "type": "object" + }, + "_Pir": { + "description": "Model PIR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Piriform area", + "default": "Piriform area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PIR", + "default": "PIR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "961", + "default": "961", + "title": "Id", + "type": "string" + } + }, + "title": "_Pir", + "type": "object" + }, + "_Pl": { + "description": "Model PL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Prelimbic area", + "default": "Prelimbic area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PL", + "default": "PL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "972", + "default": "972", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl", + "type": "object" + }, + "_Pl1": { + "description": "Model PL1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Prelimbic area, layer 1", + "default": "Prelimbic area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PL1", + "default": "PL1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "171", + "default": "171", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl1", + "type": "object" + }, + "_Pl2_3": { + "description": "Model PL2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Prelimbic area, layer 2/3", + "default": "Prelimbic area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PL2/3", + "default": "PL2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "304", + "default": "304", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl2_3", + "type": "object" + }, + "_Pl5": { + "description": "Model PL5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Prelimbic area, layer 5", + "default": "Prelimbic area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PL5", + "default": "PL5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "363", + "default": "363", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl5", + "type": "object" + }, + "_Pl6A": { + "description": "Model PL6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Prelimbic area, layer 6a", + "default": "Prelimbic area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PL6a", + "default": "PL6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "84", + "default": "84", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl6A", + "type": "object" + }, + "_Pl6B": { + "description": "Model PL6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Prelimbic area, layer 6b", + "default": "Prelimbic area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PL6b", + "default": "PL6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "132", + "default": "132", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl6B", + "type": "object" + }, + "_Placid_Industries": { + "description": "Model Placid Industries", + "properties": { + "name": { + "const": "Placid Industries", + "default": "Placid Industries", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Placid_Industries", + "type": "object" + }, + "_Pm": { + "description": "Model pm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "principal mammillary tract", + "default": "principal mammillary tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "pm", + "default": "pm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "753", + "default": "753", + "title": "Id", + "type": "string" + } + }, + "title": "_Pm", + "type": "object" + }, + "_Pmd": { + "description": "Model PMd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal premammillary nucleus", + "default": "Dorsal premammillary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PMd", + "default": "PMd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "980", + "default": "980", + "title": "Id", + "type": "string" + } + }, + "title": "_Pmd", + "type": "object" + }, + "_Pmv": { + "description": "Model PMv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral premammillary nucleus", + "default": "Ventral premammillary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PMv", + "default": "PMv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1004", + "default": "1004", + "title": "Id", + "type": "string" + } + }, + "title": "_Pmv", + "type": "object" + }, + "_Pn": { + "description": "Model PN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paranigral nucleus", + "default": "Paranigral nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PN", + "default": "PN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344830", + "default": "607344830", + "title": "Id", + "type": "string" + } + }, + "title": "_Pn", + "type": "object" + }, + "_Po": { + "description": "Model PO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior complex of the thalamus", + "default": "Posterior complex of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PO", + "default": "PO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1020", + "default": "1020", + "title": "Id", + "type": "string" + } + }, + "title": "_Po", + "type": "object" + }, + "_Pol": { + "description": "Model POL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior limiting nucleus of the thalamus", + "default": "Posterior limiting nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "POL", + "default": "POL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1029", + "default": "1029", + "title": "Id", + "type": "string" + } + }, + "title": "_Pol", + "type": "object" + }, + "_Por": { + "description": "Model POR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior olivary complex, periolivary region", + "default": "Superior olivary complex, periolivary region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "POR", + "default": "POR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "122", + "default": "122", + "title": "Id", + "type": "string" + } + }, + "title": "_Por", + "type": "object" + }, + "_Post": { + "description": "Model POST", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Postsubiculum", + "default": "Postsubiculum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "POST", + "default": "POST", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1037", + "default": "1037", + "title": "Id", + "type": "string" + } + }, + "title": "_Post", + "type": "object" + }, + "_Pot": { + "description": "Model PoT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior triangular thalamic nucleus", + "default": "Posterior triangular thalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PoT", + "default": "PoT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "563807435", + "default": "563807435", + "title": "Id", + "type": "string" + } + }, + "title": "_Pot", + "type": "object" + }, + "_Pp": { + "description": "Model PP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Peripeduncular nucleus", + "default": "Peripeduncular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PP", + "default": "PP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1044", + "default": "1044", + "title": "Id", + "type": "string" + } + }, + "title": "_Pp", + "type": "object" + }, + "_Ppn": { + "description": "Model PPN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pedunculopontine nucleus", + "default": "Pedunculopontine nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PPN", + "default": "PPN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1052", + "default": "1052", + "title": "Id", + "type": "string" + } + }, + "title": "_Ppn", + "type": "object" + }, + "_Ppt": { + "description": "Model PPT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior pretectal nucleus", + "default": "Posterior pretectal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PPT", + "default": "PPT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1061", + "default": "1061", + "title": "Id", + "type": "string" + } + }, + "title": "_Ppt", + "type": "object" + }, + "_Ppy": { + "description": "Model PPY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parapyramidal nucleus", + "default": "Parapyramidal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PPY", + "default": "PPY", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1069", + "default": "1069", + "title": "Id", + "type": "string" + } + }, + "title": "_Ppy", + "type": "object" + }, + "_Pr": { + "description": "Model PR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perireunensis nucleus", + "default": "Perireunensis nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PR", + "default": "PR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1077", + "default": "1077", + "title": "Id", + "type": "string" + } + }, + "title": "_Pr", + "type": "object" + }, + "_Prc": { + "description": "Model PRC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Precommissural nucleus", + "default": "Precommissural nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRC", + "default": "PRC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "50", + "default": "50", + "title": "Id", + "type": "string" + } + }, + "title": "_Prc", + "type": "object" + }, + "_Pre": { + "description": "Model PRE", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Presubiculum", + "default": "Presubiculum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRE", + "default": "PRE", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1084", + "default": "1084", + "title": "Id", + "type": "string" + } + }, + "title": "_Pre", + "type": "object" + }, + "_Prizmatix": { + "description": "Model Prizmatix", + "properties": { + "name": { + "const": "Prizmatix", + "default": "Prizmatix", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Prizmatix", + "type": "object" + }, + "_Prm": { + "description": "Model PRM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paramedian lobule", + "default": "Paramedian lobule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRM", + "default": "PRM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1025", + "default": "1025", + "title": "Id", + "type": "string" + } + }, + "title": "_Prm", + "type": "object" + }, + "_Prnc": { + "description": "Model PRNc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pontine reticular nucleus, caudal part", + "default": "Pontine reticular nucleus, caudal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRNc", + "default": "PRNc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1093", + "default": "1093", + "title": "Id", + "type": "string" + } + }, + "title": "_Prnc", + "type": "object" + }, + "_Prnr": { + "description": "Model PRNr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pontine reticular nucleus", + "default": "Pontine reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRNr", + "default": "PRNr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "146", + "default": "146", + "title": "Id", + "type": "string" + } + }, + "title": "_Prnr", + "type": "object" + }, + "_Pros": { + "description": "Model ProS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Prosubiculum", + "default": "Prosubiculum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ProS", + "default": "ProS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682470", + "default": "484682470", + "title": "Id", + "type": "string" + } + }, + "title": "_Pros", + "type": "object" + }, + "_Prp": { + "description": "Model PRP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus prepositus", + "default": "Nucleus prepositus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRP", + "default": "PRP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "169", + "default": "169", + "title": "Id", + "type": "string" + } + }, + "title": "_Prp", + "type": "object" + }, + "_Prt": { + "description": "Model PRT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pretectal region", + "default": "Pretectal region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRT", + "default": "PRT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1100", + "default": "1100", + "title": "Id", + "type": "string" + } + }, + "title": "_Prt", + "type": "object" + }, + "_Ps": { + "description": "Model PS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parastrial nucleus", + "default": "Parastrial nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PS", + "default": "PS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1109", + "default": "1109", + "title": "Id", + "type": "string" + } + }, + "title": "_Ps", + "type": "object" + }, + "_Pst": { + "description": "Model PST", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Preparasubthalamic nucleus", + "default": "Preparasubthalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PST", + "default": "PST", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "356", + "default": "356", + "title": "Id", + "type": "string" + } + }, + "title": "_Pst", + "type": "object" + }, + "_Pstn": { + "description": "Model PSTN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parasubthalamic nucleus", + "default": "Parasubthalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PSTN", + "default": "PSTN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "364", + "default": "364", + "title": "Id", + "type": "string" + } + }, + "title": "_Pstn", + "type": "object" + }, + "_Psv": { + "description": "Model PSV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Principal sensory nucleus of the trigeminal", + "default": "Principal sensory nucleus of the trigeminal", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PSV", + "default": "PSV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "7", + "default": "7", + "title": "Id", + "type": "string" + } + }, + "title": "_Psv", + "type": "object" + }, + "_Pt": { + "description": "Model PT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parataenial nucleus", + "default": "Parataenial nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PT", + "default": "PT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "15", + "default": "15", + "title": "Id", + "type": "string" + } + }, + "title": "_Pt", + "type": "object" + }, + "_Ptlp": { + "description": "Model PTLp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior parietal association areas", + "default": "Posterior parietal association areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PTLp", + "default": "PTLp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "22", + "default": "22", + "title": "Id", + "type": "string" + } + }, + "title": "_Ptlp", + "type": "object" + }, + "_Pva": { + "description": "Model PVa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periventricular hypothalamic nucleus, anterior part", + "default": "Periventricular hypothalamic nucleus, anterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVa", + "default": "PVa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "30", + "default": "30", + "title": "Id", + "type": "string" + } + }, + "title": "_Pva", + "type": "object" + }, + "_Pvh": { + "description": "Model PVH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paraventricular hypothalamic nucleus", + "default": "Paraventricular hypothalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVH", + "default": "PVH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "38", + "default": "38", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvh", + "type": "object" + }, + "_Pvhd": { + "description": "Model PVHd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paraventricular hypothalamic nucleus, descending division", + "default": "Paraventricular hypothalamic nucleus, descending division", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVHd", + "default": "PVHd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "63", + "default": "63", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvhd", + "type": "object" + }, + "_Pvi": { + "description": "Model PVi", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periventricular hypothalamic nucleus, intermediate part", + "default": "Periventricular hypothalamic nucleus, intermediate part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVi", + "default": "PVi", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "118", + "default": "118", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvi", + "type": "object" + }, + "_Pvp": { + "description": "Model PVp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periventricular hypothalamic nucleus, posterior part", + "default": "Periventricular hypothalamic nucleus, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVp", + "default": "PVp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "126", + "default": "126", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvp", + "type": "object" + }, + "_Pvpo": { + "description": "Model PVpo", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periventricular hypothalamic nucleus, preoptic part", + "default": "Periventricular hypothalamic nucleus, preoptic part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVpo", + "default": "PVpo", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "133", + "default": "133", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvpo", + "type": "object" + }, + "_Pvr": { + "description": "Model PVR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periventricular region", + "default": "Periventricular region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVR", + "default": "PVR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "141", + "default": "141", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvr", + "type": "object" + }, + "_Pvt": { + "description": "Model PVT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paraventricular nucleus of the thalamus", + "default": "Paraventricular nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVT", + "default": "PVT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "149", + "default": "149", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvt", + "type": "object" + }, + "_Pvz": { + "description": "Model PVZ", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periventricular zone", + "default": "Periventricular zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVZ", + "default": "PVZ", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "157", + "default": "157", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvz", + "type": "object" + }, + "_Py": { + "description": "Model py", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "pyramid", + "default": "pyramid", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "py", + "default": "py", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "190", + "default": "190", + "title": "Id", + "type": "string" + } + }, + "title": "_Py", + "type": "object" + }, + "_Pyd": { + "description": "Model pyd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "pyramidal decussation", + "default": "pyramidal decussation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "pyd", + "default": "pyd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "198", + "default": "198", + "title": "Id", + "type": "string" + } + }, + "title": "_Pyd", + "type": "object" + }, + "_Pyr": { + "description": "Model PYR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pyramus (VIII)", + "default": "Pyramus (VIII)", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PYR", + "default": "PYR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "951", + "default": "951", + "title": "Id", + "type": "string" + } + }, + "title": "_Pyr", + "type": "object" + }, + "_Quantifi": { + "description": "Model Quantifi", + "properties": { + "name": { + "const": "Quantifi", + "default": "Quantifi", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Quantifi", + "type": "object" + }, + "_Ramb": { + "description": "Model RAmb", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain raphe nuclei", + "default": "Midbrain raphe nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RAmb", + "default": "RAmb", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "165", + "default": "165", + "title": "Id", + "type": "string" + } + }, + "title": "_Ramb", + "type": "object" + }, + "_Raspberry_Pi": { + "description": "Model Raspberry Pi", + "properties": { + "name": { + "const": "Raspberry Pi", + "default": "Raspberry Pi", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Raspberry_Pi", + "type": "object" + }, + "_Rattus_Norvegicus": { + "description": "Model Rattus norvegicus", + "properties": { + "name": { + "const": "Rattus norvegicus", + "default": "Rattus norvegicus", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "National Center for Biotechnology Information", + "abbreviation": "NCBI" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Quantifi" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Raspberry_Pi" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Sicgen" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Schneider_Kreuznach" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Second_Order_Effects" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Semrock" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Sigma_Aldrich" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "NCBI:txid10116", + "default": "NCBI:txid10116", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Rattus_Norvegicus", + "type": "object" + }, + "_Rch": { + "description": "Model RCH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrochiasmatic area", + "default": "Retrochiasmatic area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RCH", + "default": "RCH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "173", + "default": "173", + "title": "Id", + "type": "string" + } + }, + "title": "_Rch", + "type": "object" + }, + "_Re": { + "description": "Model RE", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of reuniens", + "default": "Nucleus of reuniens", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RE", + "default": "RE", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "181", + "default": "181", + "title": "Id", + "type": "string" + } + }, + "title": "_Re", + "type": "object" + }, + "_Rh": { + "description": "Model RH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Rhomboid nucleus", + "default": "Rhomboid nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RH", + "default": "RH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "189", + "default": "189", + "title": "Id", + "type": "string" + } + }, + "title": "_Rh", + "type": "object" + }, + "_Rhp": { + "description": "Model RHP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrohippocampal region", + "default": "Retrohippocampal region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RHP", + "default": "RHP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "822", + "default": "822", + "title": "Id", + "type": "string" + } + }, + "title": "_Rhp", + "type": "object" + }, + "_Rl": { + "description": "Model RL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Rostral linear nucleus raphe", + "default": "Rostral linear nucleus raphe", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RL", + "default": "RL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "197", + "default": "197", + "title": "Id", + "type": "string" + } + }, + "title": "_Rl", + "type": "object" + }, + "_Rm": { + "description": "Model RM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus raphe magnus", + "default": "Nucleus raphe magnus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RM", + "default": "RM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "206", + "default": "206", + "title": "Id", + "type": "string" + } + }, + "title": "_Rm", + "type": "object" + }, + "_Rn": { + "description": "Model RN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Red nucleus", + "default": "Red nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RN", + "default": "RN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "214", + "default": "214", + "title": "Id", + "type": "string" + } + }, + "title": "_Rn", + "type": "object" + }, + "_Ro": { + "description": "Model RO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus raphe obscurus", + "default": "Nucleus raphe obscurus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RO", + "default": "RO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "222", + "default": "222", + "title": "Id", + "type": "string" + } + }, + "title": "_Ro", + "type": "object" + }, + "_Root": { + "description": "Model root", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "root", + "default": "root", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "root", + "default": "root", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "997", + "default": "997", + "title": "Id", + "type": "string" + } + }, + "title": "_Root", + "type": "object" + }, + "_Ror": { + "additionalProperties": false, + "description": "Model ROR", + "properties": { + "name": { + "const": "Research Organization Registry", + "default": "Research Organization Registry", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "ROR", + "default": "ROR", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Ror", + "type": "object" + }, + "_Rpa": { + "description": "Model RPA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus raphe pallidus", + "default": "Nucleus raphe pallidus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RPA", + "default": "RPA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "230", + "default": "230", + "title": "Id", + "type": "string" + } + }, + "title": "_Rpa", + "type": "object" + }, + "_Rpf": { + "description": "Model RPF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retroparafascicular nucleus", + "default": "Retroparafascicular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RPF", + "default": "RPF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "549009203", + "default": "549009203", + "title": "Id", + "type": "string" + } + }, + "title": "_Rpf", + "type": "object" + }, + "_Rpo": { + "description": "Model RPO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus raphe pontis", + "default": "Nucleus raphe pontis", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RPO", + "default": "RPO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "238", + "default": "238", + "title": "Id", + "type": "string" + } + }, + "title": "_Rpo", + "type": "object" + }, + "_Rr": { + "description": "Model RR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain reticular nucleus, retrorubral area", + "default": "Midbrain reticular nucleus, retrorubral area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RR", + "default": "RR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "246", + "default": "246", + "title": "Id", + "type": "string" + } + }, + "title": "_Rr", + "type": "object" + }, + "_Rrid": { + "additionalProperties": false, + "description": "Model RRID", + "properties": { + "name": { + "const": "Research Resource Identifiers", + "default": "Research Resource Identifiers", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "RRID", + "default": "RRID", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Rrid", + "type": "object" + }, + "_Rsp": { + "description": "Model RSP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area", + "default": "Retrosplenial area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSP", + "default": "RSP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "254", + "default": "254", + "title": "Id", + "type": "string" + } + }, + "title": "_Rsp", + "type": "object" + }, + "_Rspagl": { + "description": "Model RSPagl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, lateral agranular part", + "default": "Retrosplenial area, lateral agranular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPagl", + "default": "RSPagl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "894", + "default": "894", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspagl", + "type": "object" + }, + "_Rspagl1": { + "description": "Model RSPagl1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, lateral agranular part, layer 1", + "default": "Retrosplenial area, lateral agranular part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPagl1", + "default": "RSPagl1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "671", + "default": "671", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspagl1", + "type": "object" + }, + "_Rspagl2_3": { + "description": "Model RSPagl2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, lateral agranular part, layer 2/3", + "default": "Retrosplenial area, lateral agranular part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPagl2/3", + "default": "RSPagl2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "965", + "default": "965", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspagl2_3", + "type": "object" + }, + "_Rspagl5": { + "description": "Model RSPagl5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, lateral agranular part, layer 5", + "default": "Retrosplenial area, lateral agranular part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPagl5", + "default": "RSPagl5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "774", + "default": "774", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspagl5", + "type": "object" + }, + "_Rspagl6A": { + "description": "Model RSPagl6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, lateral agranular part, layer 6a", + "default": "Retrosplenial area, lateral agranular part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPagl6a", + "default": "RSPagl6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "906", + "default": "906", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspagl6A", + "type": "object" + }, + "_Rspagl6B": { + "description": "Model RSPagl6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, lateral agranular part, layer 6b", + "default": "Retrosplenial area, lateral agranular part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPagl6b", + "default": "RSPagl6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "279", + "default": "279", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspagl6B", + "type": "object" + }, + "_Rspd": { + "description": "Model RSPd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, dorsal part", + "default": "Retrosplenial area, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPd", + "default": "RSPd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "879", + "default": "879", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd", + "type": "object" + }, + "_Rspd1": { + "description": "Model RSPd1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, dorsal part, layer 1", + "default": "Retrosplenial area, dorsal part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPd1", + "default": "RSPd1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "442", + "default": "442", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd1", + "type": "object" + }, + "_Rspd2_3": { + "description": "Model RSPd2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, dorsal part, layer 2/3", + "default": "Retrosplenial area, dorsal part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPd2/3", + "default": "RSPd2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "434", + "default": "434", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd2_3", + "type": "object" + }, + "_Rspd4": { + "description": "Model RSPd4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, dorsal part, layer 4", + "default": "Retrosplenial area, dorsal part, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPd4", + "default": "RSPd4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "545", + "default": "545", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd4", + "type": "object" + }, + "_Rspd5": { + "description": "Model RSPd5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, dorsal part, layer 5", + "default": "Retrosplenial area, dorsal part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPd5", + "default": "RSPd5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "610", + "default": "610", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd5", + "type": "object" + }, + "_Rspd6A": { + "description": "Model RSPd6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, dorsal part, layer 6a", + "default": "Retrosplenial area, dorsal part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPd6a", + "default": "RSPd6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "274", + "default": "274", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd6A", + "type": "object" + }, + "_Rspd6B": { + "description": "Model RSPd6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, dorsal part, layer 6b", + "default": "Retrosplenial area, dorsal part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPd6b", + "default": "RSPd6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "330", + "default": "330", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd6B", + "type": "object" + }, + "_Rspv": { + "description": "Model RSPv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, ventral part", + "default": "Retrosplenial area, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPv", + "default": "RSPv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "886", + "default": "886", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspv", + "type": "object" + }, + "_Rspv1": { + "description": "Model RSPv1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, ventral part, layer 1", + "default": "Retrosplenial area, ventral part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPv1", + "default": "RSPv1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "542", + "default": "542", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspv1", + "type": "object" + }, + "_Rspv2_3": { + "description": "Model RSPv2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, ventral part, layer 2/3", + "default": "Retrosplenial area, ventral part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPv2/3", + "default": "RSPv2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "430", + "default": "430", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspv2_3", + "type": "object" + }, + "_Rspv5": { + "description": "Model RSPv5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, ventral part, layer 5", + "default": "Retrosplenial area, ventral part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPv5", + "default": "RSPv5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "687", + "default": "687", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspv5", + "type": "object" + }, + "_Rspv6A": { + "description": "Model RSPv6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, ventral part, layer 6a", + "default": "Retrosplenial area, ventral part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPv6a", + "default": "RSPv6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "590", + "default": "590", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspv6A", + "type": "object" + }, + "_Rspv6B": { + "description": "Model RSPv6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, ventral part, layer 6b", + "default": "Retrosplenial area, ventral part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPv6b", + "default": "RSPv6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "622", + "default": "622", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspv6B", + "type": "object" + }, + "_Rt": { + "description": "Model RT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Reticular nucleus of the thalamus", + "default": "Reticular nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RT", + "default": "RT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "262", + "default": "262", + "title": "Id", + "type": "string" + } + }, + "title": "_Rt", + "type": "object" + }, + "_Rust": { + "description": "Model rust", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "rubrospinal tract", + "default": "rubrospinal tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "rust", + "default": "rust", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "863", + "default": "863", + "title": "Id", + "type": "string" + } + }, + "title": "_Rust", + "type": "object" + }, + "_Sag": { + "description": "Model SAG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus sagulum", + "default": "Nucleus sagulum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SAG", + "default": "SAG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "271", + "default": "271", + "title": "Id", + "type": "string" + } + }, + "title": "_Sag", + "type": "object" + }, + "_Same_Sky": { + "description": "Model Same Sky", + "properties": { + "name": { + "const": "Same Sky", + "default": "Same Sky", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Same_Sky", + "type": "object" + }, + "_Samy": { + "description": "Model sAMY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Striatum-like amygdalar nuclei", + "default": "Striatum-like amygdalar nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "sAMY", + "default": "sAMY", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "278", + "default": "278", + "title": "Id", + "type": "string" + } + }, + "title": "_Samy", + "type": "object" + }, + "_Sbpv": { + "description": "Model SBPV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subparaventricular zone", + "default": "Subparaventricular zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SBPV", + "default": "SBPV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "347", + "default": "347", + "title": "Id", + "type": "string" + } + }, + "title": "_Sbpv", + "type": "object" + }, + "_Scdg": { + "description": "Model SCdg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, motor related, deep gray layer", + "default": "Superior colliculus, motor related, deep gray layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCdg", + "default": "SCdg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "26", + "default": "26", + "title": "Id", + "type": "string" + } + }, + "title": "_Scdg", + "type": "object" + }, + "_Scdw": { + "description": "Model SCdw", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, motor related, deep white layer", + "default": "Superior colliculus, motor related, deep white layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCdw", + "default": "SCdw", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "42", + "default": "42", + "title": "Id", + "type": "string" + } + }, + "title": "_Scdw", + "type": "object" + }, + "_Sch": { + "description": "Model SCH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Suprachiasmatic nucleus", + "default": "Suprachiasmatic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCH", + "default": "SCH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "286", + "default": "286", + "title": "Id", + "type": "string" + } + }, + "title": "_Sch", + "type": "object" + }, + "_Schneider_Kreuznach": { + "description": "Model Schneider-Kreuznach", + "properties": { + "name": { + "const": "Schneider-Kreuznach", + "default": "Schneider-Kreuznach", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Schneider_Kreuznach", + "type": "object" + }, + "_Scig": { + "description": "Model SCig", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, motor related, intermediate gray layer", + "default": "Superior colliculus, motor related, intermediate gray layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCig", + "default": "SCig", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "10", + "default": "10", + "title": "Id", + "type": "string" + } + }, + "title": "_Scig", + "type": "object" + }, + "_Sciw": { + "description": "Model SCiw", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, motor related, intermediate white layer", + "default": "Superior colliculus, motor related, intermediate white layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCiw", + "default": "SCiw", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "17", + "default": "17", + "title": "Id", + "type": "string" + } + }, + "title": "_Sciw", + "type": "object" + }, + "_Scm": { + "description": "Model SCm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, motor related", + "default": "Superior colliculus, motor related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCm", + "default": "SCm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "294", + "default": "294", + "title": "Id", + "type": "string" + } + }, + "title": "_Scm", + "type": "object" + }, + "_Sco": { + "description": "Model SCO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subcommissural organ", + "default": "Subcommissural organ", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCO", + "default": "SCO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "599626923", + "default": "599626923", + "title": "Id", + "type": "string" + } + }, + "title": "_Sco", + "type": "object" + }, + "_Scop": { + "description": "Model SCop", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, optic layer", + "default": "Superior colliculus, optic layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCop", + "default": "SCop", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "851", + "default": "851", + "title": "Id", + "type": "string" + } + }, + "title": "_Scop", + "type": "object" + }, + "_Scp": { + "description": "Model scp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "superior cerebelar peduncles", + "default": "superior cerebelar peduncles", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "scp", + "default": "scp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "326", + "default": "326", + "title": "Id", + "type": "string" + } + }, + "title": "_Scp", + "type": "object" + }, + "_Scs": { + "description": "Model SCs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, sensory related", + "default": "Superior colliculus, sensory related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCs", + "default": "SCs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "302", + "default": "302", + "title": "Id", + "type": "string" + } + }, + "title": "_Scs", + "type": "object" + }, + "_Scsg": { + "description": "Model SCsg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, superficial gray layer", + "default": "Superior colliculus, superficial gray layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCsg", + "default": "SCsg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "842", + "default": "842", + "title": "Id", + "type": "string" + } + }, + "title": "_Scsg", + "type": "object" + }, + "_Sctd": { + "description": "Model sctd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal spinocerebellar tract", + "default": "dorsal spinocerebellar tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "sctd", + "default": "sctd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "553", + "default": "553", + "title": "Id", + "type": "string" + } + }, + "title": "_Sctd", + "type": "object" + }, + "_Sctv": { + "description": "Model sctv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "ventral spinocerebellar tract", + "default": "ventral spinocerebellar tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "sctv", + "default": "sctv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "866", + "default": "866", + "title": "Id", + "type": "string" + } + }, + "title": "_Sctv", + "type": "object" + }, + "_Scwm": { + "description": "Model scwm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "supra-callosal cerebral white matter", + "default": "supra-callosal cerebral white matter", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "scwm", + "default": "scwm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682512", + "default": "484682512", + "title": "Id", + "type": "string" + } + }, + "title": "_Scwm", + "type": "object" + }, + "_Sczo": { + "description": "Model SCzo", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, zonal layer", + "default": "Superior colliculus, zonal layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCzo", + "default": "SCzo", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "834", + "default": "834", + "title": "Id", + "type": "string" + } + }, + "title": "_Sczo", + "type": "object" + }, + "_Second_Order_Effects": { + "description": "Model Second Order Effects", + "properties": { + "name": { + "const": "Second Order Effects", + "default": "Second Order Effects", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Second_Order_Effects", + "type": "object" + }, + "_Semrock": { + "description": "Model Semrock", + "properties": { + "name": { + "const": "Semrock", + "default": "Semrock", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Semrock", + "type": "object" + }, + "_Sez": { + "description": "Model SEZ", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "subependymal zone", + "default": "subependymal zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SEZ", + "default": "SEZ", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "98", + "default": "98", + "title": "Id", + "type": "string" + } + }, + "title": "_Sez", + "type": "object" + }, + "_Sf": { + "description": "Model SF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Septofimbrial nucleus", + "default": "Septofimbrial nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SF", + "default": "SF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "310", + "default": "310", + "title": "Id", + "type": "string" + } + }, + "title": "_Sf", + "type": "object" + }, + "_Sfo": { + "description": "Model SFO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subfornical organ", + "default": "Subfornical organ", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SFO", + "default": "SFO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "338", + "default": "338", + "title": "Id", + "type": "string" + } + }, + "title": "_Sfo", + "type": "object" + }, + "_Sg": { + "description": "Model SG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Supragenual nucleus", + "default": "Supragenual nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SG", + "default": "SG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "318", + "default": "318", + "title": "Id", + "type": "string" + } + }, + "title": "_Sg", + "type": "object" + }, + "_Sgn": { + "description": "Model SGN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Suprageniculate nucleus", + "default": "Suprageniculate nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SGN", + "default": "SGN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "325", + "default": "325", + "title": "Id", + "type": "string" + } + }, + "title": "_Sgn", + "type": "object" + }, + "_Sh": { + "description": "Model SH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Septohippocampal nucleus", + "default": "Septohippocampal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SH", + "default": "SH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "333", + "default": "333", + "title": "Id", + "type": "string" + } + }, + "title": "_Sh", + "type": "object" + }, + "_Short_Head_Of_Biceps_Brachii": { + "description": "Model short head of biceps brachii", + "properties": { + "name": { + "const": "short head of biceps brachii", + "default": "short head of biceps brachii", + "title": "Name", + "type": "string" + }, + "registry": { + "default": { + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_Simons_Foundation" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Spinnaker" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Tamron" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Teledyne_Flir" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_The_Imaging_Source" + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "EMAPA_25055", + "default": "EMAPA_25055", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Short_Head_Of_Biceps_Brachii", + "type": "object" + }, + "_Si": { + "description": "Model SI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Substantia innominata", + "default": "Substantia innominata", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SI", + "default": "SI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "342", + "default": "342", + "title": "Id", + "type": "string" + } + }, + "title": "_Si", + "type": "object" + }, + "_Sicgen": { + "description": "Model SICGEN", + "properties": { + "name": { + "const": "SICGEN", + "default": "SICGEN", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Sicgen", + "type": "object" + }, + "_Sigma_Aldrich": { + "description": "Model Sigma-Aldrich", + "properties": { + "name": { + "const": "Sigma-Aldrich", + "default": "Sigma-Aldrich", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Sigma_Aldrich", + "type": "object" + }, + "_Sim": { + "description": "Model SIM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Simple lobule", + "default": "Simple lobule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SIM", + "default": "SIM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1007", + "default": "1007", + "title": "Id", + "type": "string" + } + }, + "title": "_Sim", + "type": "object" + }, + "_Simons_Foundation": { + "description": "Model Simons Foundation", + "properties": { + "name": { + "const": "Simons Foundation", + "default": "Simons Foundation", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" }, + "propertyName": "abbreviation" + }, + "oneOf": [ { - "$ref": "#/$defs/_The_Lee_Company" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" + "$ref": "#/$defs/_Emapa" }, { - "$ref": "#/$defs/_Thorlabs" + "$ref": "#/$defs/_Mgi" }, { - "$ref": "#/$defs/_Tymphany" + "$ref": "#/$defs/_Ncbi" }, { - "$ref": "#/$defs/_Vieworks" + "$ref": "#/$defs/_Orcid" }, { - "$ref": "#/$defs/_Vortran" + "$ref": "#/$defs/_Ror" }, { - "$ref": "#/$defs/_Ams_Osram" + "$ref": "#/$defs/_Rrid" } ], - "title": "Source" + "title": "Registry" + }, + "registry_identifier": { + "const": "01cmst727", + "default": "01cmst727", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Simons_Foundation", + "type": "object" + }, + "_Slc": { + "description": "Model SLC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subceruleus nucleus", + "default": "Subceruleus nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SLC", + "default": "SLC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "350", + "default": "350", + "title": "Id", + "type": "string" + } + }, + "title": "_Slc", + "type": "object" + }, + "_Sld": { + "description": "Model SLD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Sublaterodorsal nucleus", + "default": "Sublaterodorsal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SLD", + "default": "SLD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "358", + "default": "358", + "title": "Id", + "type": "string" + } + }, + "title": "_Sld", + "type": "object" + }, + "_Sm": { + "description": "Model sm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "stria medullaris", + "default": "stria medullaris", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "sm", + "default": "sm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "802", + "default": "802", + "title": "Id", + "type": "string" + } + }, + "title": "_Sm", + "type": "object" + }, + "_Smt": { + "description": "Model SMT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Submedial nucleus of the thalamus", + "default": "Submedial nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SMT", + "default": "SMT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "366", + "default": "366", + "title": "Id", + "type": "string" + } + }, + "title": "_Smt", + "type": "object" + }, + "_Snc": { + "description": "Model SNc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Substantia nigra, compact part", + "default": "Substantia nigra, compact part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SNc", + "default": "SNc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "374", + "default": "374", + "title": "Id", + "type": "string" + } + }, + "title": "_Snc", + "type": "object" + }, + "_Snr": { + "description": "Model SNr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Substantia nigra, reticular part", + "default": "Substantia nigra, reticular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SNr", + "default": "SNr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "381", + "default": "381", + "title": "Id", + "type": "string" + } + }, + "title": "_Snr", + "type": "object" + }, + "_So": { + "description": "Model SO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Supraoptic nucleus", + "default": "Supraoptic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SO", + "default": "SO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "390", + "default": "390", + "title": "Id", + "type": "string" + } + }, + "title": "_So", + "type": "object" + }, + "_Soc": { + "description": "Model SOC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior olivary complex", + "default": "Superior olivary complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SOC", + "default": "SOC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "398", + "default": "398", + "title": "Id", + "type": "string" + } + }, + "title": "_Soc", + "type": "object" + }, + "_Socl": { + "description": "Model SOCl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior olivary complex, lateral part", + "default": "Superior olivary complex, lateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SOCl", + "default": "SOCl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "114", + "default": "114", + "title": "Id", + "type": "string" + } + }, + "title": "_Socl", + "type": "object" + }, + "_Socm": { + "description": "Model SOCm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior olivary complex, medial part", + "default": "Superior olivary complex, medial part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SOCm", + "default": "SOCm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "105", + "default": "105", + "title": "Id", + "type": "string" + } + }, + "title": "_Socm", + "type": "object" + }, + "_Spa": { + "description": "Model SPA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subparafascicular area", + "default": "Subparafascicular area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPA", + "default": "SPA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "609", + "default": "609", + "title": "Id", + "type": "string" + } + }, + "title": "_Spa", + "type": "object" + }, + "_Spf": { + "description": "Model SPF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subparafascicular nucleus", + "default": "Subparafascicular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPF", + "default": "SPF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "406", + "default": "406", + "title": "Id", + "type": "string" + } + }, + "title": "_Spf", + "type": "object" + }, + "_Spfm": { + "description": "Model SPFm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subparafascicular nucleus, magnocellular part", + "default": "Subparafascicular nucleus, magnocellular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPFm", + "default": "SPFm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "414", + "default": "414", + "title": "Id", + "type": "string" + } + }, + "title": "_Spfm", + "type": "object" + }, + "_Spfp": { + "description": "Model SPFp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subparafascicular nucleus, parvicellular part", + "default": "Subparafascicular nucleus, parvicellular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPFp", + "default": "SPFp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "422", + "default": "422", + "title": "Id", + "type": "string" + } + }, + "title": "_Spfp", + "type": "object" + }, + "_Spinnaker": { + "description": "Model Spinnaker", + "properties": { + "name": { + "const": "Spinnaker", + "default": "Spinnaker", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Spinnaker", + "type": "object" + }, + "_Spiv": { + "description": "Model SPIV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Spinal vestibular nucleus", + "default": "Spinal vestibular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPIV", + "default": "SPIV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "225", + "default": "225", + "title": "Id", + "type": "string" + } + }, + "title": "_Spiv", + "type": "object" + }, + "_Sptv": { + "description": "Model sptV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "spinal tract of the trigeminal nerve", + "default": "spinal tract of the trigeminal nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "sptV", + "default": "sptV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "794", + "default": "794", + "title": "Id", + "type": "string" + } + }, + "title": "_Sptv", + "type": "object" + }, + "_Spvc": { + "description": "Model SPVC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Spinal nucleus of the trigeminal, caudal part", + "default": "Spinal nucleus of the trigeminal, caudal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPVC", + "default": "SPVC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "429", + "default": "429", + "title": "Id", + "type": "string" + } + }, + "title": "_Spvc", + "type": "object" + }, + "_Spvi": { + "description": "Model SPVI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Spinal nucleus of the trigeminal, interpolar part", + "default": "Spinal nucleus of the trigeminal, interpolar part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPVI", + "default": "SPVI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "437", + "default": "437", + "title": "Id", + "type": "string" + } + }, + "title": "_Spvi", + "type": "object" + }, + "_Spvo": { + "description": "Model SPVO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Spinal nucleus of the trigeminal, oral part", + "default": "Spinal nucleus of the trigeminal, oral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPVO", + "default": "SPVO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "445", + "default": "445", + "title": "Id", + "type": "string" + } + }, + "title": "_Spvo", + "type": "object" + }, + "_Ss": { + "description": "Model SS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Somatosensory areas", + "default": "Somatosensory areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SS", + "default": "SS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "453", + "default": "453", + "title": "Id", + "type": "string" + } + }, + "title": "_Ss", + "type": "object" + }, + "_Ssp": { + "description": "Model SSp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area", + "default": "Primary somatosensory area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp", + "default": "SSp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "322", + "default": "322", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp", + "type": "object" + }, + "_Ssp_Bfd": { + "description": "Model SSp-bfd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field", + "default": "Primary somatosensory area, barrel field", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd", + "default": "SSp-bfd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "329", + "default": "329", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd", + "type": "object" + }, + "_Ssp_Bfd1": { + "description": "Model SSp-bfd1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field, layer 1", + "default": "Primary somatosensory area, barrel field, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd1", + "default": "SSp-bfd1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "981", + "default": "981", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd1", + "type": "object" + }, + "_Ssp_Bfd2_3": { + "description": "Model SSp-bfd2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field, layer 2/3", + "default": "Primary somatosensory area, barrel field, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd2/3", + "default": "SSp-bfd2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "201", + "default": "201", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd2_3", + "type": "object" + }, + "_Ssp_Bfd4": { + "description": "Model SSp-bfd4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field, layer 4", + "default": "Primary somatosensory area, barrel field, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd4", + "default": "SSp-bfd4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1047", + "default": "1047", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd4", + "type": "object" + }, + "_Ssp_Bfd5": { + "description": "Model SSp-bfd5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field, layer 5", + "default": "Primary somatosensory area, barrel field, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd5", + "default": "SSp-bfd5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1070", + "default": "1070", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd5", + "type": "object" + }, + "_Ssp_Bfd6A": { + "description": "Model SSp-bfd6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field, layer 6a", + "default": "Primary somatosensory area, barrel field, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd6a", + "default": "SSp-bfd6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1038", + "default": "1038", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd6A", + "type": "object" + }, + "_Ssp_Bfd6B": { + "description": "Model SSp-bfd6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field, layer 6b", + "default": "Primary somatosensory area, barrel field, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd6b", + "default": "SSp-bfd6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1062", + "default": "1062", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd6B", + "type": "object" + }, + "_Ssp_Ll": { + "description": "Model SSp-ll", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, lower limb", + "default": "Primary somatosensory area, lower limb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ll", + "default": "SSp-ll", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "337", + "default": "337", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll", + "type": "object" + }, + "_Ssp_Ll1": { + "description": "Model SSp-ll1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, lower limb, layer 1", + "default": "Primary somatosensory area, lower limb, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ll1", + "default": "SSp-ll1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1030", + "default": "1030", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll1", + "type": "object" + }, + "_Ssp_Ll2_3": { + "description": "Model SSp-ll2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, lower limb, layer 2/3", + "default": "Primary somatosensory area, lower limb, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ll2/3", + "default": "SSp-ll2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "113", + "default": "113", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll2_3", + "type": "object" + }, + "_Ssp_Ll4": { + "description": "Model SSp-ll4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, lower limb, layer 4", + "default": "Primary somatosensory area, lower limb, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ll4", + "default": "SSp-ll4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1094", + "default": "1094", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll4", + "type": "object" + }, + "_Ssp_Ll5": { + "description": "Model SSp-ll5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, lower limb, layer 5", + "default": "Primary somatosensory area, lower limb, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ll5", + "default": "SSp-ll5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1128", + "default": "1128", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll5", + "type": "object" + }, + "_Ssp_Ll6A": { + "description": "Model SSp-ll6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, lower limb, layer 6a", + "default": "Primary somatosensory area, lower limb, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ll6a", + "default": "SSp-ll6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "478", + "default": "478", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll6A", + "type": "object" + }, + "_Ssp_Ll6B": { + "description": "Model SSp-ll6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, lower limb, layer 6b", + "default": "Primary somatosensory area, lower limb, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ll6b", + "default": "SSp-ll6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "510", + "default": "510", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll6B", + "type": "object" + }, + "_Ssp_M": { + "description": "Model SSp-m", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth", + "default": "Primary somatosensory area, mouth", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m", + "default": "SSp-m", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "345", + "default": "345", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M", + "type": "object" + }, + "_Ssp_M1": { + "description": "Model SSp-m1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth, layer 1", + "default": "Primary somatosensory area, mouth, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m1", + "default": "SSp-m1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "878", + "default": "878", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M1", + "type": "object" + }, + "_Ssp_M2_3": { + "description": "Model SSp-m2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth, layer 2/3", + "default": "Primary somatosensory area, mouth, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m2/3", + "default": "SSp-m2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "657", + "default": "657", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M2_3", + "type": "object" + }, + "_Ssp_M4": { + "description": "Model SSp-m4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth, layer 4", + "default": "Primary somatosensory area, mouth, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m4", + "default": "SSp-m4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "950", + "default": "950", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M4", + "type": "object" + }, + "_Ssp_M5": { + "description": "Model SSp-m5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth, layer 5", + "default": "Primary somatosensory area, mouth, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m5", + "default": "SSp-m5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "974", + "default": "974", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M5", + "type": "object" + }, + "_Ssp_M6A": { + "description": "Model SSp-m6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth, layer 6a", + "default": "Primary somatosensory area, mouth, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m6a", + "default": "SSp-m6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1102", + "default": "1102", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M6A", + "type": "object" + }, + "_Ssp_M6B": { + "description": "Model SSp-m6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth, layer 6b", + "default": "Primary somatosensory area, mouth, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m6b", + "default": "SSp-m6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "2", + "default": "2", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M6B", + "type": "object" + }, + "_Ssp_N": { + "description": "Model SSp-n", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose", + "default": "Primary somatosensory area, nose", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n", + "default": "SSp-n", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "353", + "default": "353", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N", + "type": "object" + }, + "_Ssp_N1": { + "description": "Model SSp-n1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 1", + "default": "Primary somatosensory area, nose, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n1", + "default": "SSp-n1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "558", + "default": "558", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N1", + "type": "object" + }, + "_Ssp_N2_3": { + "description": "Model SSp-n2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 2/3", + "default": "Primary somatosensory area, nose, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n2/3", + "default": "SSp-n2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "838", + "default": "838", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N2_3", + "type": "object" + }, + "_Ssp_N4": { + "description": "Model SSp-n4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 4", + "default": "Primary somatosensory area, nose, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n4", + "default": "SSp-n4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "654", + "default": "654", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N4", + "type": "object" + }, + "_Ssp_N5": { + "description": "Model SSp-n5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 5", + "default": "Primary somatosensory area, nose, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n5", + "default": "SSp-n5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "702", + "default": "702", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N5", + "type": "object" + }, + "_Ssp_N6A": { + "description": "Model SSp-n6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 6a", + "default": "Primary somatosensory area, nose, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n6a", + "default": "SSp-n6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "889", + "default": "889", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N6A", + "type": "object" + }, + "_Ssp_N6B": { + "description": "Model SSp-n6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 6b", + "default": "Primary somatosensory area, nose, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n6b", + "default": "SSp-n6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "929", + "default": "929", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N6B", + "type": "object" + }, + "_Ssp_Tr": { + "description": "Model SSp-tr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "rrid": { - "anyOf": [ - { - "$ref": "#/$defs/PIDName" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Research Resource ID" + "name": { + "const": "Primary somatosensory area, trunk", + "default": "Primary somatosensory area, trunk", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr", + "default": "SSp-tr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "361", + "default": "361", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr", + "type": "object" + }, + "_Ssp_Tr1": { + "description": "Model SSp-tr1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 1", + "default": "Primary somatosensory area, trunk, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr1", + "default": "SSp-tr1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1006", + "default": "1006", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr1", + "type": "object" + }, + "_Ssp_Tr2_3": { + "description": "Model SSp-tr2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 2/3", + "default": "Primary somatosensory area, trunk, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr2/3", + "default": "SSp-tr2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "670", + "default": "670", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr2_3", + "type": "object" + }, + "_Ssp_Tr4": { + "description": "Model SSp-tr4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 4", + "default": "Primary somatosensory area, trunk, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr4", + "default": "SSp-tr4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1086", + "default": "1086", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr4", + "type": "object" + }, + "_Ssp_Tr5": { + "description": "Model SSp-tr5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 5", + "default": "Primary somatosensory area, trunk, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr5", + "default": "SSp-tr5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1111", + "default": "1111", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr5", + "type": "object" + }, + "_Ssp_Tr6A": { + "description": "Model SSp-tr6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 6a", + "default": "Primary somatosensory area, trunk, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr6a", + "default": "SSp-tr6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "9", + "default": "9", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr6A", + "type": "object" + }, + "_Ssp_Tr6B": { + "description": "Model SSp-tr6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 6b", + "default": "Primary somatosensory area, trunk, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr6b", + "default": "SSp-tr6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "461", + "default": "461", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr6B", + "type": "object" + }, + "_Ssp_Ul": { + "description": "Model SSp-ul", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, upper limb", + "default": "Primary somatosensory area, upper limb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ul", + "default": "SSp-ul", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "369", + "default": "369", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ul", + "type": "object" + }, + "_Ssp_Ul1": { + "description": "Model SSp-ul1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, upper limb, layer 1", + "default": "Primary somatosensory area, upper limb, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ul1", + "default": "SSp-ul1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "450", + "default": "450", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ul1", + "type": "object" + }, + "_Ssp_Ul2_3": { + "description": "Model SSp-ul2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, upper limb, layer 2/3", + "default": "Primary somatosensory area, upper limb, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ul2/3", + "default": "SSp-ul2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "854", + "default": "854", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ul2_3", + "type": "object" + }, + "_Ssp_Ul4": { + "description": "Model SSp-ul4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, upper limb, layer 4", + "default": "Primary somatosensory area, upper limb, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ul4", + "default": "SSp-ul4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "577", + "default": "577", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ul4", + "type": "object" + }, + "_Ssp_Ul5": { + "description": "Model SSp-ul5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, upper limb, layer 5", + "default": "Primary somatosensory area, upper limb, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ul5", + "default": "SSp-ul5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "625", + "default": "625", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ul5", + "type": "object" + }, + "_Ssp_Ul6A": { + "description": "Model SSp-ul6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, upper limb, layer 6a", + "default": "Primary somatosensory area, upper limb, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ul6a", + "default": "SSp-ul6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "945", + "default": "945", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ul6A", + "type": "object" + }, + "_Ssp_Ul6B": { + "description": "Model SSp-ul6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, upper limb, layer 6b", + "default": "Primary somatosensory area, upper limb, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ul6b", + "default": "SSp-ul6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1026", + "default": "1026", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ul6B", + "type": "object" + }, + "_Ssp_Un": { + "description": "Model SSp-un", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, unassigned", + "default": "Primary somatosensory area, unassigned", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-un", + "default": "SSp-un", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "182305689", + "default": "182305689", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Un", + "type": "object" + }, + "_Ssp_Un1": { + "description": "Model SSp-un1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, unassigned, layer 1", + "default": "Primary somatosensory area, unassigned, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-un1", + "default": "SSp-un1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "182305693", + "default": "182305693", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Un1", + "type": "object" + }, + "_Ssp_Un2_3": { + "description": "Model SSp-un2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, unassigned, layer 2/3", + "default": "Primary somatosensory area, unassigned, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-un2/3", + "default": "SSp-un2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "182305697", + "default": "182305697", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Un2_3", + "type": "object" + }, + "_Ssp_Un4": { + "description": "Model SSp-un4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, unassigned, layer 4", + "default": "Primary somatosensory area, unassigned, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-un4", + "default": "SSp-un4", + "title": "Acronym", + "type": "string" }, - "lot_number": { - "title": "Lot number", + "id": { + "const": "182305701", + "default": "182305701", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Un4", + "type": "object" + }, + "_Ssp_Un5": { + "description": "Model SSp-un5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "expiration_date": { - "anyOf": [ - { - "format": "date", - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lot expiration date" + "name": { + "const": "Primary somatosensory area, unassigned, layer 5", + "default": "Primary somatosensory area, unassigned, layer 5", + "title": "Name", + "type": "string" }, - "stain_type": { - "$ref": "#/$defs/StainType", - "title": "Stain type" + "acronym": { + "const": "SSp-un5", + "default": "SSp-un5", + "title": "Acronym", + "type": "string" }, - "concentration": { - "$ref": "#/$defs/concentration", - "title": "Concentration (uM)" + "id": { + "const": "182305705", + "default": "182305705", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "source", - "lot_number", - "stain_type", - "concentration" - ], - "title": "Stain", + "title": "_Ssp_Un5", "type": "object" }, - "StainType": { - "description": "Stain types for probes describing what is being labeled", - "enum": [ - "RNA", - "Nuclear", - "Fill" - ], - "title": "StainType", - "type": "string" - }, - "Surgery": { - "additionalProperties": false, - "description": "Description of subject procedures performed at one time", + "_Ssp_Un6A": { + "description": "Model SSp-un6a", "properties": { - "procedure_type": { - "const": "Surgery", - "default": "Surgery", - "enum": [ - "Surgery" - ], - "title": "Procedure Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "protocol_id": { - "description": "DOI for protocols.io", - "title": "Protocol ID", + "name": { + "const": "Primary somatosensory area, unassigned, layer 6a", + "default": "Primary somatosensory area, unassigned, layer 6a", + "title": "Name", "type": "string" }, - "start_date": { - "format": "date", - "title": "Start date", + "acronym": { + "const": "SSp-un6a", + "default": "SSp-un6a", + "title": "Acronym", "type": "string" }, - "experimenter_full_name": { - "description": "First and last name of the experimenter.", - "title": "Experimenter full name", + "id": { + "const": "182305709", + "default": "182305709", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Un6A", + "type": "object" + }, + "_Ssp_Un6B": { + "description": "Model SSp-un6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "iacuc_protocol": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "IACUC protocol" + "name": { + "const": "Primary somatosensory area, unassigned, layer 6b", + "default": "Primary somatosensory area, unassigned, layer 6b", + "title": "Name", + "type": "string" }, - "animal_weight_prior": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Animal weight before procedure", - "title": "Animal weight (g)" + "acronym": { + "const": "SSp-un6b", + "default": "SSp-un6b", + "title": "Acronym", + "type": "string" }, - "animal_weight_post": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Animal weight after procedure", - "title": "Animal weight (g)" + "id": { + "const": "182305713", + "default": "182305713", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Un6B", + "type": "object" + }, + "_Sss": { + "description": "Model SSs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "weight_unit": { - "$ref": "#/$defs/MassUnit", - "default": "gram", - "title": "Weight unit" + "name": { + "const": "Supplemental somatosensory area", + "default": "Supplemental somatosensory area", + "title": "Name", + "type": "string" }, - "anaesthesia": { - "anyOf": [ - { - "$ref": "#/$defs/Anaesthetic" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Anaesthesia" + "acronym": { + "const": "SSs", + "default": "SSs", + "title": "Acronym", + "type": "string" }, - "workstation_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Workstation ID" + "id": { + "const": "378", + "default": "378", + "title": "Id", + "type": "string" + } + }, + "title": "_Sss", + "type": "object" + }, + "_Sss1": { + "description": "Model SSs1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "procedures": { - "items": { - "discriminator": { - "mapping": { - "Craniotomy": "#/$defs/Craniotomy", - "Fiber implant": "#/$defs/FiberImplant", - "Ground wire": "#/$defs/ProtectiveMaterialReplacement", - "Headframe": "#/$defs/Headframe", - "ICM injection": "#/$defs/IntraCisternalMagnaInjection", - "ICV injection": "#/$defs/IntraCerebellarVentricleInjection", - "Intraperitoneal injection": "#/$defs/IntraperitonealInjection", - "Iontophoresis injection": "#/$defs/IontophoresisInjection", - "Myomatrix_Insertion": "#/$defs/MyomatrixInsertion", - "Nanoject injection": "#/$defs/NanojectInjection", - "Other Subject Procedure": "#/$defs/OtherSubjectProcedure", - "Perfusion": "#/$defs/Perfusion", - "Retro-orbital injection": "#/$defs/RetroOrbitalInjection" - }, - "propertyName": "procedure_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/Craniotomy" - }, - { - "$ref": "#/$defs/FiberImplant" - }, - { - "$ref": "#/$defs/Headframe" - }, - { - "$ref": "#/$defs/IntraCerebellarVentricleInjection" - }, - { - "$ref": "#/$defs/IntraCisternalMagnaInjection" - }, - { - "$ref": "#/$defs/IntraperitonealInjection" - }, - { - "$ref": "#/$defs/IontophoresisInjection" - }, - { - "$ref": "#/$defs/MyomatrixInsertion" - }, - { - "$ref": "#/$defs/NanojectInjection" - }, - { - "$ref": "#/$defs/OtherSubjectProcedure" - }, - { - "$ref": "#/$defs/Perfusion" - }, - { - "$ref": "#/$defs/ProtectiveMaterialReplacement" - }, - { - "$ref": "#/$defs/RetroOrbitalInjection" - } - ] - }, - "minItems": 1, - "title": "Procedures", - "type": "array" + "name": { + "const": "Supplemental somatosensory area, layer 1", + "default": "Supplemental somatosensory area, layer 1", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "SSs1", + "default": "SSs1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "873", + "default": "873", + "title": "Id", + "type": "string" + } + }, + "title": "_Sss1", + "type": "object" + }, + "_Sss2_3": { + "description": "Model SSs2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Supplemental somatosensory area, layer 2/3", + "default": "Supplemental somatosensory area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSs2/3", + "default": "SSs2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "806", + "default": "806", + "title": "Id", + "type": "string" } }, - "required": [ - "protocol_id", - "start_date", - "experimenter_full_name", - "procedures" - ], - "title": "Surgery", + "title": "_Sss2_3", "type": "object" }, - "TarsVirusIdentifiers": { - "additionalProperties": false, - "description": "TARS data for a viral prep", + "_Sss4": { + "description": "Model SSs4", "properties": { - "virus_tars_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Virus ID, usually begins 'AiV'" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "plasmid_tars_alias": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Alias used to reference the plasmid, usually begins 'AiP'", - "title": "Plasmid alias" + "name": { + "const": "Supplemental somatosensory area, layer 4", + "default": "Supplemental somatosensory area, layer 4", + "title": "Name", + "type": "string" }, - "prep_lot_number": { - "title": "Preparation lot number", + "acronym": { + "const": "SSs4", + "default": "SSs4", + "title": "Acronym", "type": "string" }, - "prep_date": { - "anyOf": [ - { - "format": "date", - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Date this prep lot was titered", - "title": "Preparation lot date" + "id": { + "const": "1035", + "default": "1035", + "title": "Id", + "type": "string" + } + }, + "title": "_Sss4", + "type": "object" + }, + "_Sss5": { + "description": "Model SSs5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "prep_type": { - "anyOf": [ - { - "$ref": "#/$defs/VirusPrepType" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Viral prep type" + "name": { + "const": "Supplemental somatosensory area, layer 5", + "default": "Supplemental somatosensory area, layer 5", + "title": "Name", + "type": "string" }, - "prep_protocol": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Prep protocol" + "acronym": { + "const": "SSs5", + "default": "SSs5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1090", + "default": "1090", + "title": "Id", + "type": "string" } }, - "required": [ - "prep_lot_number" - ], - "title": "TarsVirusIdentifiers", + "title": "_Sss5", "type": "object" }, - "TimeUnit": { - "description": "Enumeration of Time Measurements", - "enum": [ - "hour", - "minute", - "second", - "millisecond", - "microsecond", - "nanosecond" - ], - "title": "TimeUnit", - "type": "string" + "_Sss6A": { + "description": "Model SSs6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Supplemental somatosensory area, layer 6a", + "default": "Supplemental somatosensory area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSs6a", + "default": "SSs6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "862", + "default": "862", + "title": "Id", + "type": "string" + } + }, + "title": "_Sss6A", + "type": "object" }, - "TrainingProtocol": { - "additionalProperties": false, - "description": "Description of an animal training protocol", + "_Sss6B": { + "description": "Model SSs6b", "properties": { - "procedure_type": { - "const": "Training", - "default": "Training", - "enum": [ - "Training" - ], - "title": "Procedure Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "training_name": { - "title": "Training protocol name", + "name": { + "const": "Supplemental somatosensory area, layer 6b", + "default": "Supplemental somatosensory area, layer 6b", + "title": "Name", "type": "string" }, - "protocol_id": { - "title": "Training protocol ID", + "acronym": { + "const": "SSs6b", + "default": "SSs6b", + "title": "Acronym", "type": "string" }, - "start_date": { - "format": "date", - "title": "Training protocol start date", + "id": { + "const": "893", + "default": "893", + "title": "Id", + "type": "string" + } + }, + "title": "_Sss6B", + "type": "object" + }, + "_St": { + "description": "Model st", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "end_date": { - "anyOf": [ - { - "format": "date", - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Training protocol end date" + "name": { + "const": "stria terminalis", + "default": "stria terminalis", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "st", + "default": "st", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "301", + "default": "301", + "title": "Id", + "type": "string" } }, - "required": [ - "training_name", - "protocol_id", - "start_date" - ], - "title": "TrainingProtocol", + "title": "_St", "type": "object" }, - "UnitlessUnit": { - "description": "Unitless options", - "enum": [ - "percent", - "fraction of cycle" - ], - "title": "UnitlessUnit", - "type": "string" + "_Stc": { + "description": "Model stc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "commissural branch of stria terminalis", + "default": "commissural branch of stria terminalis", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "stc", + "default": "stc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682528", + "default": "484682528", + "title": "Id", + "type": "string" + } + }, + "title": "_Stc", + "type": "object" }, - "ViralMaterial": { - "additionalProperties": false, - "description": "Description of viral material for injections", + "_Stn": { + "description": "Model STN", "properties": { - "material_type": { - "const": "Virus", - "default": "Virus", - "enum": [ - "Virus" - ], - "title": "Injection material type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, "name": { - "description": "Full genome for virus construct", - "title": "Full genome name", + "const": "Subthalamic nucleus", + "default": "Subthalamic nucleus", + "title": "Name", "type": "string" }, - "tars_identifiers": { - "anyOf": [ - { - "$ref": "#/$defs/TarsVirusIdentifiers" - }, - { - "type": "null" - } - ], - "default": null, - "description": "TARS database identifiers", - "title": "TARS IDs" + "acronym": { + "const": "STN", + "default": "STN", + "title": "Acronym", + "type": "string" }, - "addgene_id": { - "anyOf": [ - { - "$ref": "#/$defs/PIDName" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Registry must be Addgene", - "title": "Addgene id" + "id": { + "const": "470", + "default": "470", + "title": "Id", + "type": "string" + } + }, + "title": "_Stn", + "type": "object" + }, + "_Str": { + "description": "Model STR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "titer": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Final titer of viral material, accounting for mixture/diliution", - "title": "Effective titer (gc/mL)" + "name": { + "const": "Striatum", + "default": "Striatum", + "title": "Name", + "type": "string" }, - "titer_unit": { - "default": "gc/mL", - "title": "Titer unit", + "acronym": { + "const": "STR", + "default": "STR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "477", + "default": "477", + "title": "Id", "type": "string" } }, - "required": [ - "name" - ], - "title": "ViralMaterial", + "title": "_Str", "type": "object" }, - "VirusPrepType": { - "description": "Type of virus preparation", - "enum": [ - "Crude", - "Purified" - ], - "title": "VirusPrepType", - "type": "string" - }, - "VolumeUnit": { - "description": "Enumeration of Volume Measurements", - "enum": [ - "liter", - "milliliter", - "microliter", - "nanoliter" - ], - "title": "VolumeUnit", - "type": "string" - }, - "WaterRestriction": { - "additionalProperties": false, - "description": "Description of a water restriction procedure", + "_Strd": { + "description": "Model STRd", "properties": { - "procedure_type": { - "const": "Water restriction", - "default": "Water restriction", - "enum": [ - "Water restriction" - ], - "title": "Procedure Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "iacuc_protocol": { - "title": "IACUC protocol", + "name": { + "const": "Striatum dorsal region", + "default": "Striatum dorsal region", + "title": "Name", "type": "string" }, - "target_fraction_weight": { - "title": "Target fraction weight (%)", - "type": "integer" + "acronym": { + "const": "STRd", + "default": "STRd", + "title": "Acronym", + "type": "string" }, - "target_fraction_weight_unit": { - "$ref": "#/$defs/UnitlessUnit", - "default": "percent", - "title": "Target fraction weight unit" + "id": { + "const": "485", + "default": "485", + "title": "Id", + "type": "string" + } + }, + "title": "_Strd", + "type": "object" + }, + "_Strv": { + "description": "Model STRv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "minimum_water_per_day": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Minimum water per day (mL)" + "name": { + "const": "Striatum ventral region", + "default": "Striatum ventral region", + "title": "Name", + "type": "string" }, - "minimum_water_per_day_unit": { - "$ref": "#/$defs/VolumeUnit", - "default": "milliliter", - "title": "Minimum water per day unit" + "acronym": { + "const": "STRv", + "default": "STRv", + "title": "Acronym", + "type": "string" }, - "baseline_weight": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "description": "Weight at start of water restriction", - "title": "Baseline weight (g)" + "id": { + "const": "493", + "default": "493", + "title": "Id", + "type": "string" + } + }, + "title": "_Strv", + "type": "object" + }, + "_Su3": { + "description": "Model Su3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "weight_unit": { - "$ref": "#/$defs/MassUnit", - "default": "gram", - "title": "Weight unit" + "name": { + "const": "Supraoculomotor periaqueductal gray", + "default": "Supraoculomotor periaqueductal gray", + "title": "Name", + "type": "string" }, - "start_date": { - "format": "date", - "title": "Water restriction start date", + "acronym": { + "const": "Su3", + "default": "Su3", + "title": "Acronym", "type": "string" }, - "end_date": { - "anyOf": [ - { - "format": "date", - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Water restriction end date" + "id": { + "const": "614454277", + "default": "614454277", + "title": "Id", + "type": "string" } }, - "required": [ - "iacuc_protocol", - "target_fraction_weight", - "minimum_water_per_day", - "baseline_weight", - "start_date" - ], - "title": "WaterRestriction", + "title": "_Su3", "type": "object" }, - "_Aa_Opto_Electronic": { - "description": "Model AA Opto Electronic", + "_Sub": { + "description": "Model SUB", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "AA Opto Electronic", - "default": "AA Opto Electronic", - "enum": [ - "AA Opto Electronic" - ], + "const": "Subiculum", + "default": "Subiculum", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "SUB", + "default": "SUB", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "502", + "default": "502", + "title": "Id", + "type": "string" } }, - "title": "_Aa_Opto_Electronic", + "title": "_Sub", "type": "object" }, - "_Abcam": { - "description": "Model Abcam", + "_Subg": { + "description": "Model SubG", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Abcam", - "default": "Abcam", - "enum": [ - "Abcam" - ], + "const": "Subgeniculate nucleus", + "default": "Subgeniculate nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "SubG", + "default": "SubG", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "321", + "default": "321", + "title": "Id", + "type": "string" + } + }, + "title": "_Subg", + "type": "object" + }, + "_Sum": { + "description": "Model SUM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "02e1wjw63", - "default": "02e1wjw63", - "enum": [ - "02e1wjw63" - ], - "title": "Registry Identifier", + "name": { + "const": "Supramammillary nucleus", + "default": "Supramammillary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SUM", + "default": "SUM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "525", + "default": "525", + "title": "Id", "type": "string" } }, - "title": "_Abcam", + "title": "_Sum", "type": "object" }, - "_Ailipu_Technology_Co": { - "description": "Model Ailipu Technology Co", + "_Sup": { + "description": "Model sup", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Ailipu Technology Co", - "default": "Ailipu Technology Co", - "enum": [ - "Ailipu Technology Co" - ], + "const": "supraoptic commissures", + "default": "supraoptic commissures", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "Ailipu", - "default": "Ailipu", - "enum": [ - "Ailipu" - ], - "title": "Abbreviation", + "acronym": { + "const": "sup", + "default": "sup", + "title": "Acronym", "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "349", + "default": "349", + "title": "Id", + "type": "string" + } + }, + "title": "_Sup", + "type": "object" + }, + "_Sut": { + "description": "Model SUT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Supratrigeminal nucleus", + "default": "Supratrigeminal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SUT", + "default": "SUT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "534", + "default": "534", + "title": "Id", + "type": "string" } }, - "title": "_Ailipu_Technology_Co", + "title": "_Sut", "type": "object" }, - "_Allen_Institute": { - "description": "Model Allen Institute", + "_Suv": { + "description": "Model SUV", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Allen Institute", - "default": "Allen Institute", - "enum": [ - "Allen Institute" - ], + "const": "Superior vestibular nucleus", + "default": "Superior vestibular nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "AI", - "default": "AI", - "enum": [ - "AI" - ], - "title": "Abbreviation", + "acronym": { + "const": "SUV", + "default": "SUV", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "03cpe7c52", - "default": "03cpe7c52", - "enum": [ - "03cpe7c52" - ], - "title": "Registry Identifier", + "id": { + "const": "217", + "default": "217", + "title": "Id", "type": "string" } }, - "title": "_Allen_Institute", + "title": "_Suv", "type": "object" }, - "_Allen_Institute_For_Brain_Science": { - "description": "Model Allen Institute for Brain Science", + "_Sv": { + "description": "Model sV", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Allen Institute for Brain Science", - "default": "Allen Institute for Brain Science", - "enum": [ - "Allen Institute for Brain Science" - ], + "const": "sensory root of the trigeminal nerve", + "default": "sensory root of the trigeminal nerve", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "AIBS", - "default": "AIBS", - "enum": [ - "AIBS" - ], - "title": "Abbreviation", + "acronym": { + "const": "sV", + "default": "sV", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "00dcv1019", - "default": "00dcv1019", - "enum": [ - "00dcv1019" - ], - "title": "Registry Identifier", + "id": { + "const": "229", + "default": "229", + "title": "Id", "type": "string" } }, - "title": "_Allen_Institute_For_Brain_Science", + "title": "_Sv", "type": "object" }, - "_Allen_Institute_For_Neural_Dynamics": { - "description": "Model Allen Institute for Neural Dynamics", + "_Tail": { + "description": "Model tail", "properties": { "name": { - "const": "Allen Institute for Neural Dynamics", - "default": "Allen Institute for Neural Dynamics", - "enum": [ - "Allen Institute for Neural Dynamics" - ], + "const": "tail", + "default": "tail", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "AIND", - "default": "AIND", - "enum": [ - "AIND" - ], - "title": "Abbreviation", - "type": "string" - }, "registry": { "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" }, "discriminator": { "mapping": { @@ -8055,36 +55283,27 @@ "title": "Registry" }, "registry_identifier": { - "const": "04szwah67", - "default": "04szwah67", - "enum": [ - "04szwah67" - ], + "const": "EMAPA_16748", + "default": "EMAPA_16748", "title": "Registry Identifier", "type": "string" } }, - "title": "_Allen_Institute_For_Neural_Dynamics", + "title": "_Tail", "type": "object" }, - "_Allied": { - "description": "Model Allied", + "_Tamron": { + "description": "Model Tamron", "properties": { "name": { - "const": "Allied", - "default": "Allied", - "enum": [ - "Allied" - ], + "const": "Tamron", + "default": "Tamron", "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -8099,140 +55318,271 @@ "type": "null" } }, - "title": "_Allied", + "title": "_Tamron", "type": "object" }, - "_Ams_Osram": { - "description": "Model ams OSRAM", + "_Tb": { + "description": "Model tb", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "ams OSRAM", - "default": "ams OSRAM", - "enum": [ - "ams OSRAM" - ], + "const": "trapezoid body", + "default": "trapezoid body", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "tb", + "default": "tb", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "841", + "default": "841", + "title": "Id", + "type": "string" + } + }, + "title": "_Tb", + "type": "object" + }, + "_Tea": { + "description": "Model TEa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Temporal association areas", + "default": "Temporal association areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TEa", + "default": "TEa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "541", + "default": "541", + "title": "Id", + "type": "string" + } + }, + "title": "_Tea", + "type": "object" + }, + "_Tea1": { + "description": "Model TEa1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Temporal association areas, layer 1", + "default": "Temporal association areas, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TEa1", + "default": "TEa1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "97", + "default": "97", + "title": "Id", + "type": "string" + } + }, + "title": "_Tea1", + "type": "object" + }, + "_Tea2_3": { + "description": "Model TEa2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Temporal association areas, layer 2/3", + "default": "Temporal association areas, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TEa2/3", + "default": "TEa2/3", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "045d0h266", - "default": "045d0h266", - "enum": [ - "045d0h266" - ], - "title": "Registry Identifier", + "id": { + "const": "1127", + "default": "1127", + "title": "Id", "type": "string" } }, - "title": "_Ams_Osram", + "title": "_Tea2_3", "type": "object" }, - "_Applied_Scientific_Instrumentation": { - "description": "Model Applied Scientific Instrumentation", + "_Tea4": { + "description": "Model TEa4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Applied Scientific Instrumentation", - "default": "Applied Scientific Instrumentation", - "enum": [ - "Applied Scientific Instrumentation" - ], + "const": "Temporal association areas, layer 4", + "default": "Temporal association areas, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "ASI", - "default": "ASI", - "enum": [ - "ASI" - ], - "title": "Abbreviation", + "acronym": { + "const": "TEa4", + "default": "TEa4", + "title": "Acronym", "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "234", + "default": "234", + "title": "Id", + "type": "string" + } + }, + "title": "_Tea4", + "type": "object" + }, + "_Tea5": { + "description": "Model TEa5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Temporal association areas, layer 5", + "default": "Temporal association areas, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TEa5", + "default": "TEa5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "289", + "default": "289", + "title": "Id", + "type": "string" } }, - "title": "_Applied_Scientific_Instrumentation", + "title": "_Tea5", "type": "object" }, - "_Arecont_Vision_Costar": { - "description": "Model Arecont Vision Costar", + "_Tea6A": { + "description": "Model TEa6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Arecont Vision Costar", - "default": "Arecont Vision Costar", - "enum": [ - "Arecont Vision Costar" - ], + "const": "Temporal association areas, layer 6a", + "default": "Temporal association areas, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TEa6a", + "default": "TEa6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "729", + "default": "729", + "title": "Id", + "type": "string" + } + }, + "title": "_Tea6A", + "type": "object" + }, + "_Tea6B": { + "description": "Model TEa6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Temporal association areas, layer 6b", + "default": "Temporal association areas, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TEa6b", + "default": "TEa6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "786", + "default": "786", + "title": "Id", + "type": "string" + } + }, + "title": "_Tea6B", + "type": "object" + }, + "_Technical_Manufacturing_Corporation": { + "description": "Model Technical Manufacturing Corporation", + "properties": { + "name": { + "const": "Technical Manufacturing Corporation", + "default": "Technical Manufacturing Corporation", "title": "Name", "type": "string" }, "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], + "const": "TMC", + "default": "TMC", "title": "Abbreviation", - "type": "null" + "type": "string" }, "registry": { "default": null, @@ -8245,29 +55595,23 @@ "type": "null" } }, - "title": "_Arecont_Vision_Costar", + "title": "_Technical_Manufacturing_Corporation", "type": "object" }, - "_Asus": { - "description": "Model ASUS", + "_Teledyne_Flir": { + "description": "Model Teledyne FLIR", "properties": { "name": { - "const": "ASUS", - "default": "ASUS", - "enum": [ - "ASUS" - ], + "const": "Teledyne FLIR", + "default": "Teledyne FLIR", "title": "Name", "type": "string" }, "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], + "const": "FLIR", + "default": "FLIR", "title": "Abbreviation", - "type": "null" + "type": "string" }, "registry": { "default": { @@ -8312,69 +55656,34 @@ "title": "Registry" }, "registry_identifier": { - "const": "00bxkz165", - "default": "00bxkz165", - "enum": [ - "00bxkz165" - ], + "const": "01j1gwp17", + "default": "01j1gwp17", "title": "Registry Identifier", "type": "string" } }, - "title": "_Asus", + "title": "_Teledyne_Flir", "type": "object" }, - "_Basler": { - "description": "Model Basler", + "_Templeton_World_Charity_Foundation": { + "description": "Model Templeton World Charity Foundation", "properties": { "name": { - "const": "Basler", - "default": "Basler", - "enum": [ - "Basler" - ], + "const": "Templeton World Charity Foundation", + "default": "Templeton World Charity Foundation", "title": "Name", "type": "string" }, "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], + "const": "TWCF", + "default": "TWCF", "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" - }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" - } - }, - "title": "_Basler", - "type": "object" - }, - "_Biceps_Brachii": { - "description": "Model biceps brachii", - "properties": { - "name": { - "const": "biceps brachii", - "default": "biceps brachii", - "enum": [ - "biceps brachii" - ], - "title": "Name", "type": "string" }, "registry": { "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" + "name": "Research Organization Registry", + "abbreviation": "ROR" }, "discriminator": { "mapping": { @@ -8414,34 +55723,28 @@ "title": "Registry" }, "registry_identifier": { - "const": "EMAPA_19108", - "default": "EMAPA_19108", - "enum": [ - "EMAPA_19108" - ], + "const": "00x0z1472", + "default": "00x0z1472", "title": "Registry Identifier", "type": "string" } }, - "title": "_Biceps_Brachii", + "title": "_Templeton_World_Charity_Foundation", "type": "object" }, - "_Callithrix_Jacchus": { - "description": "Model Callithrix jacchus", + "_Tendon_Of_Biceps_Brachii": { + "description": "Model tendon of biceps brachii", "properties": { "name": { - "const": "Callithrix jacchus", - "default": "Callithrix jacchus", - "enum": [ - "Callithrix jacchus" - ], + "const": "tendon of biceps brachii", + "default": "tendon of biceps brachii", "title": "Name", "type": "string" }, "registry": { "default": { - "name": "National Center for Biotechnology Information", - "abbreviation": "NCBI" + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" }, "discriminator": { "mapping": { @@ -8481,36 +55784,58 @@ "title": "Registry" }, "registry_identifier": { - "const": "NCBI:txid9483", - "default": "NCBI:txid9483", - "enum": [ - "NCBI:txid9483" - ], + "const": "EMAPA_25053", + "default": "EMAPA_25053", "title": "Registry Identifier", "type": "string" } }, - "title": "_Callithrix_Jacchus", + "title": "_Tendon_Of_Biceps_Brachii", "type": "object" }, - "_Cambridge_Technology": { - "description": "Model Cambridge Technology", + "_Th": { + "description": "Model TH", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Cambridge Technology", - "default": "Cambridge Technology", - "enum": [ - "Cambridge Technology" - ], + "const": "Thalamus", + "default": "Thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TH", + "default": "TH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "549", + "default": "549", + "title": "Id", + "type": "string" + } + }, + "title": "_Th", + "type": "object" + }, + "_The_Imaging_Source": { + "description": "Model The Imaging Source", + "properties": { + "name": { + "const": "The Imaging Source", + "default": "The Imaging Source", "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -8525,27 +55850,50 @@ "type": "null" } }, - "title": "_Cambridge_Technology", + "title": "_The_Imaging_Source", "type": "object" }, - "_Carl_Zeiss": { - "description": "Model Carl Zeiss", + "_The_Lee_Company": { + "description": "Model The Lee Company", "properties": { "name": { - "const": "Carl Zeiss", - "default": "Carl Zeiss", - "enum": [ - "Carl Zeiss" - ], + "const": "The Lee Company", + "default": "The Lee Company", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_The_Lee_Company", + "type": "object" + }, + "_Thermo_Fisher_Scientific": { + "description": "Model Thermo Fisher Scientific", + "properties": { + "name": { + "const": "Thermo Fisher Scientific", + "default": "Thermo Fisher Scientific", "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -8592,38 +55940,29 @@ "title": "Registry" }, "registry_identifier": { - "const": "01xk5xs43", - "default": "01xk5xs43", - "enum": [ - "01xk5xs43" - ], + "const": "03x1ewr52", + "default": "03x1ewr52", "title": "Registry Identifier", "type": "string" } }, - "title": "_Carl_Zeiss", + "title": "_Thermo_Fisher_Scientific", "type": "object" }, - "_Champalimaud_Foundation": { - "description": "Model Champalimaud Foundation", + "_Thorlabs": { + "description": "Model Thorlabs", "properties": { "name": { - "const": "Champalimaud Foundation", - "default": "Champalimaud Foundation", - "enum": [ - "Champalimaud Foundation" - ], + "const": "Thorlabs", + "default": "Thorlabs", "title": "Name", "type": "string" }, "abbreviation": { - "const": "Champalimaud", - "default": "Champalimaud", - "enum": [ - "Champalimaud" - ], + "const": null, + "default": null, "title": "Abbreviation", - "type": "string" + "type": "null" }, "registry": { "default": { @@ -8668,43 +56007,181 @@ "title": "Registry" }, "registry_identifier": { - "const": "03g001n57", - "default": "03g001n57", - "enum": [ - "03g001n57" - ], + "const": "04gsnvb07", + "default": "04gsnvb07", "title": "Registry Identifier", "type": "string" } }, - "title": "_Champalimaud_Foundation", + "title": "_Thorlabs", "type": "object" }, - "_Chan_Zuckerberg_Initiative": { - "description": "Model Chan Zuckerberg Initiative", + "_Tm": { + "description": "Model TM", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Chan Zuckerberg Initiative", - "default": "Chan Zuckerberg Initiative", - "enum": [ - "Chan Zuckerberg Initiative" - ], + "const": "Tuberomammillary nucleus", + "default": "Tuberomammillary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TM", + "default": "TM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "557", + "default": "557", + "title": "Id", + "type": "string" + } + }, + "title": "_Tm", + "type": "object" + }, + "_Tmd": { + "description": "Model TMd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Tuberomammillary nucleus, dorsal part", + "default": "Tuberomammillary nucleus, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TMd", + "default": "TMd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1126", + "default": "1126", + "title": "Id", + "type": "string" + } + }, + "title": "_Tmd", + "type": "object" + }, + "_Tmv": { + "description": "Model TMv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Tuberomammillary nucleus, ventral part", + "default": "Tuberomammillary nucleus, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TMv", + "default": "TMv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1", + "default": "1", + "title": "Id", + "type": "string" + } + }, + "title": "_Tmv", + "type": "object" + }, + "_Tr": { + "description": "Model TR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Postpiriform transition area", + "default": "Postpiriform transition area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TR", + "default": "TR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "566", + "default": "566", + "title": "Id", + "type": "string" + } + }, + "title": "_Tr", + "type": "object" + }, + "_Transducer_Techniques": { + "description": "Model Transducer Techniques", + "properties": { + "name": { + "const": "Transducer Techniques", + "default": "Transducer Techniques", "title": "Name", "type": "string" }, "abbreviation": { - "const": "CZI", - "default": "CZI", - "enum": [ - "CZI" - ], + "const": null, + "default": null, "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Transducer_Techniques", + "type": "object" + }, + "_Triceps_Brachii": { + "description": "Model triceps brachii", + "properties": { + "name": { + "const": "triceps brachii", + "default": "triceps brachii", + "title": "Name", "type": "string" }, "registry": { "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" }, "discriminator": { "mapping": { @@ -8744,78 +56221,90 @@ "title": "Registry" }, "registry_identifier": { - "const": "02qenvm24", - "default": "02qenvm24", - "enum": [ - "02qenvm24" - ], + "const": "EMAPA_19111", + "default": "EMAPA_19111", "title": "Registry Identifier", "type": "string" } }, - "title": "_Chan_Zuckerberg_Initiative", + "title": "_Triceps_Brachii", "type": "object" }, - "_Chroma": { - "description": "Model Chroma", + "_Trn": { + "description": "Model TRN", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Chroma", - "default": "Chroma", - "enum": [ - "Chroma" - ], + "const": "Tegmental reticular nucleus", + "default": "Tegmental reticular nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "TRN", + "default": "TRN", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "574", + "default": "574", + "title": "Id", + "type": "string" } }, - "title": "_Chroma", + "title": "_Trn", "type": "object" }, - "_Coherent_Scientific": { - "description": "Model Coherent Scientific", + "_Trs": { + "description": "Model TRS", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Coherent Scientific", - "default": "Coherent Scientific", - "enum": [ - "Coherent Scientific" - ], + "const": "Triangular nucleus of septum", + "default": "Triangular nucleus of septum", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "TRS", + "default": "TRS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "581", + "default": "581", + "title": "Id", + "type": "string" + } + }, + "title": "_Trs", + "type": "object" + }, + "_Trunk": { + "description": "Model trunk", + "properties": { + "name": { + "const": "trunk", + "default": "trunk", + "title": "Name", + "type": "string" }, "registry": { "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" + "name": "Edinburgh Mouse Atlas Project", + "abbreviation": "EMAPA" }, "discriminator": { "mapping": { @@ -8854,113 +56343,276 @@ ], "title": "Registry" }, - "registry_identifier": { - "const": "031tysd23", - "default": "031tysd23", - "enum": [ - "031tysd23" - ], - "title": "Registry Identifier", + "registry_identifier": { + "const": "EMAPA_31857", + "default": "EMAPA_31857", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Trunk", + "type": "object" + }, + "_Ts": { + "description": "Model ts", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "solitary tract", + "default": "solitary tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ts", + "default": "ts", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "237", + "default": "237", + "title": "Id", + "type": "string" + } + }, + "title": "_Ts", + "type": "object" + }, + "_Tsp": { + "description": "Model tsp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "tectospinal pathway", + "default": "tectospinal pathway", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "tsp", + "default": "tsp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "877", + "default": "877", + "title": "Id", + "type": "string" + } + }, + "title": "_Tsp", + "type": "object" + }, + "_Tspc": { + "description": "Model tspc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "crossed tectospinal pathway", + "default": "crossed tectospinal pathway", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "tspc", + "default": "tspc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1043", + "default": "1043", + "title": "Id", + "type": "string" + } + }, + "title": "_Tspc", + "type": "object" + }, + "_Tspd": { + "description": "Model tspd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "direct tectospinal pathway", + "default": "direct tectospinal pathway", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "tspd", + "default": "tspd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1051", + "default": "1051", + "title": "Id", + "type": "string" + } + }, + "title": "_Tspd", + "type": "object" + }, + "_Tt": { + "description": "Model TT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Taenia tecta", + "default": "Taenia tecta", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TT", + "default": "TT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "589", + "default": "589", + "title": "Id", + "type": "string" + } + }, + "title": "_Tt", + "type": "object" + }, + "_Ttd": { + "description": "Model TTd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Taenia tecta, dorsal part", + "default": "Taenia tecta, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TTd", + "default": "TTd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "597", + "default": "597", + "title": "Id", "type": "string" } }, - "title": "_Coherent_Scientific", + "title": "_Ttd", "type": "object" }, - "_Columbia_University": { - "description": "Model Columbia University", + "_Ttv": { + "description": "Model TTv", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Columbia University", - "default": "Columbia University", - "enum": [ - "Columbia University" - ], + "const": "Taenia tecta, ventral part", + "default": "Taenia tecta, ventral part", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "Columbia", - "default": "Columbia", - "enum": [ - "Columbia" - ], - "title": "Abbreviation", + "acronym": { + "const": "TTv", + "default": "TTv", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "605", + "default": "605", + "title": "Id", + "type": "string" + } + }, + "title": "_Ttv", + "type": "object" + }, + "_Tu": { + "description": "Model TU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "00hj8s172", - "default": "00hj8s172", - "enum": [ - "00hj8s172" - ], - "title": "Registry Identifier", + "name": { + "const": "Tuberal nucleus", + "default": "Tuberal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TU", + "default": "TU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "614", + "default": "614", + "title": "Id", "type": "string" } }, - "title": "_Columbia_University", + "title": "_Tu", "type": "object" }, - "_Computar": { - "description": "Model Computar", + "_Tymphany": { + "description": "Model Tymphany", "properties": { "name": { - "const": "Computar", - "default": "Computar", - "enum": [ - "Computar" - ], + "const": "Tymphany", + "default": "Tymphany", "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -8975,488 +56627,424 @@ "type": "null" } }, - "title": "_Computar", + "title": "_Tymphany", "type": "object" }, - "_Conoptics": { - "description": "Model Conoptics", + "_Uf": { + "description": "Model uf", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Conoptics", - "default": "Conoptics", - "enum": [ - "Conoptics" - ], + "const": "uncinate fascicle", + "default": "uncinate fascicle", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "uf", + "default": "uf", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "850", + "default": "850", + "title": "Id", + "type": "string" + } + }, + "title": "_Uf", + "type": "object" + }, + "_Uvu": { + "description": "Model UVU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Uvula (IX)", + "default": "Uvula (IX)", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "UVU", + "default": "UVU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "957", + "default": "957", + "title": "Id", + "type": "string" } }, - "title": "_Conoptics", + "title": "_Uvu", "type": "object" }, - "_Custom": { - "description": "Model Custom", + "_V": { + "description": "Model V", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Custom", - "default": "Custom", - "enum": [ - "Custom" - ], + "const": "Motor nucleus of trigeminal", + "default": "Motor nucleus of trigeminal", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "V", + "default": "V", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "621", + "default": "621", + "title": "Id", + "type": "string" + } + }, + "title": "_V", + "type": "object" + }, + "_V3": { + "description": "Model V3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "third ventricle", + "default": "third ventricle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "V3", + "default": "V3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "129", + "default": "129", + "title": "Id", + "type": "string" } }, - "title": "_Custom", + "title": "_V3", "type": "object" }, - "_Deltoid": { - "description": "Model deltoid", + "_V4": { + "description": "Model V4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "deltoid", - "default": "deltoid", - "enum": [ - "deltoid" - ], + "const": "fourth ventricle", + "default": "fourth ventricle", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "V4", + "default": "V4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_18177", - "default": "EMAPA_18177", - "enum": [ - "EMAPA_18177" - ], - "title": "Registry Identifier", + "id": { + "const": "145", + "default": "145", + "title": "Id", "type": "string" } }, - "title": "_Deltoid", + "title": "_V4", "type": "object" }, - "_Dodotronic": { - "description": "Model Dodotronic", + "_V4R": { + "description": "Model V4r", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "lateral recess", + "default": "lateral recess", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "V4r", + "default": "V4r", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "153", + "default": "153", + "title": "Id", + "type": "string" + } + }, + "title": "_V4R", + "type": "object" + }, + "_Val": { + "description": "Model VAL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral anterior-lateral complex of the thalamus", + "default": "Ventral anterior-lateral complex of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VAL", + "default": "VAL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "629", + "default": "629", + "title": "Id", + "type": "string" + } + }, + "title": "_Val", + "type": "object" + }, + "_Vco": { + "description": "Model VCO", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Dodotronic", - "default": "Dodotronic", - "enum": [ - "Dodotronic" - ], + "const": "Ventral cochlear nucleus", + "default": "Ventral cochlear nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VCO", + "default": "VCO", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "101", + "default": "101", + "title": "Id", + "type": "string" } }, - "title": "_Dodotronic", + "title": "_Vco", "type": "object" }, - "_Doric": { - "description": "Model Doric", + "_Vecb": { + "description": "Model VeCB", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Doric", - "default": "Doric", - "enum": [ - "Doric" - ], + "const": "Vestibulocerebellar nucleus", + "default": "Vestibulocerebellar nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VeCB", + "default": "VeCB", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "059n53q30", - "default": "059n53q30", - "enum": [ - "059n53q30" - ], - "title": "Registry Identifier", + "id": { + "const": "589508455", + "default": "589508455", + "title": "Id", "type": "string" } }, - "title": "_Doric", + "title": "_Vecb", "type": "object" }, - "_Ealing": { - "description": "Model Ealing", + "_Vent": { + "description": "Model VENT", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Ealing", - "default": "Ealing", - "enum": [ - "Ealing" - ], + "const": "Ventral group of the dorsal thalamus", + "default": "Ventral group of the dorsal thalamus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VENT", + "default": "VENT", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "637", + "default": "637", + "title": "Id", + "type": "string" } }, - "title": "_Ealing", + "title": "_Vent", "type": "object" }, - "_Edmund_Optics": { - "description": "Model Edmund Optics", + "_Verm": { + "description": "Model VERM", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Edmund Optics", - "default": "Edmund Optics", - "enum": [ - "Edmund Optics" - ], + "const": "Vermal regions", + "default": "Vermal regions", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VERM", + "default": "VERM", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "01j1gwp17", - "default": "01j1gwp17", - "enum": [ - "01j1gwp17" - ], - "title": "Registry Identifier", + "id": { + "const": "645", + "default": "645", + "title": "Id", "type": "string" } }, - "title": "_Edmund_Optics", + "title": "_Verm", "type": "object" }, - "_Emapa": { - "additionalProperties": false, - "description": "Model EMAPA", + "_Vhc": { + "description": "Model vhc", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Edinburgh Mouse Atlas Project", - "default": "Edinburgh Mouse Atlas Project", - "enum": [ - "Edinburgh Mouse Atlas Project" - ], + "const": "ventral hippocampal commissure", + "default": "ventral hippocampal commissure", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "EMAPA", - "default": "EMAPA", - "enum": [ - "EMAPA" - ], - "title": "Abbreviation", + "acronym": { + "const": "vhc", + "default": "vhc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "449", + "default": "449", + "title": "Id", "type": "string" } }, - "title": "_Emapa", + "title": "_Vhc", "type": "object" }, - "_Emory_University": { - "description": "Model Emory University", + "_Vi": { + "description": "Model VI", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Emory University", - "default": "Emory University", - "enum": [ - "Emory University" - ], + "const": "Abducens nucleus", + "default": "Abducens nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "Emory", - "default": "Emory", - "enum": [ - "Emory" - ], - "title": "Abbreviation", + "acronym": { + "const": "VI", + "default": "VI", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "03czfpz43", - "default": "03czfpz43", - "enum": [ - "03czfpz43" - ], - "title": "Registry Identifier", + "id": { + "const": "653", + "default": "653", + "title": "Id", "type": "string" } }, - "title": "_Emory_University", + "title": "_Vi", "type": "object" }, - "_Euresys": { - "description": "Model Euresys", + "_Vieworks": { + "description": "Model Vieworks", "properties": { "name": { - "const": "Euresys", - "default": "Euresys", - "enum": [ - "Euresys" - ], + "const": "Vieworks", + "default": "Vieworks", "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9471,4274 +57059,2780 @@ "type": "null" } }, - "title": "_Euresys", + "title": "_Vieworks", "type": "object" }, - "_Extensor_Carpi_Radialis_Longus": { - "description": "Model extensor carpi radialis longus", + "_Vii": { + "description": "Model VII", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "extensor carpi radialis longus", - "default": "extensor carpi radialis longus", - "enum": [ - "extensor carpi radialis longus" - ], + "const": "Facial motor nucleus", + "default": "Facial motor nucleus", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VII", + "default": "VII", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_36189", - "default": "EMAPA_36189", - "enum": [ - "EMAPA_36189" - ], - "title": "Registry Identifier", + "id": { + "const": "661", + "default": "661", + "title": "Id", "type": "string" } }, - "title": "_Extensor_Carpi_Radialis_Longus", + "title": "_Vii", "type": "object" }, - "_Extensor_Carpi_Ulnaris": { - "description": "Model extensor carpi ulnaris", + "_Viiin": { + "description": "Model VIIIn", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "extensor carpi ulnaris", - "default": "extensor carpi ulnaris", - "enum": [ - "extensor carpi ulnaris" - ], + "const": "vestibulocochlear nerve", + "default": "vestibulocochlear nerve", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VIIIn", + "default": "VIIIn", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_36190", - "default": "EMAPA_36190", - "enum": [ - "EMAPA_36190" - ], - "title": "Registry Identifier", + "id": { + "const": "933", + "default": "933", + "title": "Id", "type": "string" } }, - "title": "_Extensor_Carpi_Ulnaris", + "title": "_Viiin", "type": "object" }, - "_Extensor_Digitorum_Communis": { - "description": "Model extensor digitorum communis", + "_Viin": { + "description": "Model VIIn", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "extensor digitorum communis", - "default": "extensor digitorum communis", - "enum": [ - "extensor digitorum communis" - ], + "const": "facial nerve", + "default": "facial nerve", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VIIn", + "default": "VIIn", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_36191", - "default": "EMAPA_36191", - "enum": [ - "EMAPA_36191" - ], - "title": "Registry Identifier", + "id": { + "const": "798", + "default": "798", + "title": "Id", "type": "string" } }, - "title": "_Extensor_Digitorum_Communis", + "title": "_Viin", "type": "object" }, - "_Extensor_Digitorum_Lateralis": { - "description": "Model extensor digitorum lateralis", + "_Vis": { + "description": "Model VIS", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "extensor digitorum lateralis", - "default": "extensor digitorum lateralis", - "enum": [ - "extensor digitorum lateralis" - ], + "const": "Visual areas", + "default": "Visual areas", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VIS", + "default": "VIS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "669", + "default": "669", + "title": "Id", + "type": "string" + } + }, + "title": "_Vis", + "type": "object" + }, + "_Visa": { + "description": "Model VISa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior area", + "default": "Anterior area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISa", + "default": "VISa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782546", + "default": "312782546", + "title": "Id", + "type": "string" + } + }, + "title": "_Visa", + "type": "object" + }, + "_Visa1": { + "description": "Model VISa1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior area, layer 1", + "default": "Anterior area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISa1", + "default": "VISa1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782550", + "default": "312782550", + "title": "Id", + "type": "string" + } + }, + "title": "_Visa1", + "type": "object" + }, + "_Visa2_3": { + "description": "Model VISa2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior area, layer 2/3", + "default": "Anterior area, layer 2/3", + "title": "Name", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_36192", - "default": "EMAPA_36192", - "enum": [ - "EMAPA_36192" - ], - "title": "Registry Identifier", + "acronym": { + "const": "VISa2/3", + "default": "VISa2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782554", + "default": "312782554", + "title": "Id", "type": "string" } }, - "title": "_Extensor_Digitorum_Lateralis", + "title": "_Visa2_3", "type": "object" }, - "_Flexor_Carpi_Radialis": { - "description": "Model flexor carpi radialis", + "_Visa4": { + "description": "Model VISa4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "flexor carpi radialis", - "default": "flexor carpi radialis", - "enum": [ - "flexor carpi radialis" - ], + "const": "Anterior area, layer 4", + "default": "Anterior area, layer 4", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISa4", + "default": "VISa4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_36197", - "default": "EMAPA_36197", - "enum": [ - "EMAPA_36197" - ], - "title": "Registry Identifier", + "id": { + "const": "312782558", + "default": "312782558", + "title": "Id", "type": "string" } }, - "title": "_Flexor_Carpi_Radialis", + "title": "_Visa4", "type": "object" }, - "_Flexor_Carpi_Ulnaris": { - "description": "Model flexor carpi ulnaris", + "_Visa5": { + "description": "Model VISa5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "flexor carpi ulnaris", - "default": "flexor carpi ulnaris", - "enum": [ - "flexor carpi ulnaris" - ], + "const": "Anterior area, layer 5", + "default": "Anterior area, layer 5", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISa5", + "default": "VISa5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_36198", - "default": "EMAPA_36198", - "enum": [ - "EMAPA_36198" - ], - "title": "Registry Identifier", + "id": { + "const": "312782562", + "default": "312782562", + "title": "Id", "type": "string" } }, - "title": "_Flexor_Carpi_Ulnaris", + "title": "_Visa5", "type": "object" }, - "_Flexor_Digitorum_Profundus": { - "description": "Model flexor digitorum profundus", + "_Visa6A": { + "description": "Model VISa6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "flexor digitorum profundus", - "default": "flexor digitorum profundus", - "enum": [ - "flexor digitorum profundus" - ], + "const": "Anterior area, layer 6a", + "default": "Anterior area, layer 6a", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISa6a", + "default": "VISa6a", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_19319", - "default": "EMAPA_19319", - "enum": [ - "EMAPA_19319" - ], - "title": "Registry Identifier", + "id": { + "const": "312782566", + "default": "312782566", + "title": "Id", "type": "string" } }, - "title": "_Flexor_Digitorum_Profundus", + "title": "_Visa6A", "type": "object" }, - "_Forelimb": { - "description": "Model forelimb", + "_Visa6B": { + "description": "Model VISa6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "forelimb", - "default": "forelimb", - "enum": [ - "forelimb" - ], + "const": "Anterior area, layer 6b", + "default": "Anterior area, layer 6b", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISa6b", + "default": "VISa6b", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_17412", - "default": "EMAPA_17412", - "enum": [ - "EMAPA_17412" - ], - "title": "Registry Identifier", + "id": { + "const": "312782570", + "default": "312782570", + "title": "Id", "type": "string" } }, - "title": "_Forelimb", + "title": "_Visa6B", "type": "object" }, - "_Fujinon": { - "description": "Model Fujinon", + "_Visal": { + "description": "Model VISal", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Fujinon", - "default": "Fujinon", - "enum": [ - "Fujinon" - ], + "const": "Anterolateral visual area", + "default": "Anterolateral visual area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISal", + "default": "VISal", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "402", + "default": "402", + "title": "Id", + "type": "string" } }, - "title": "_Fujinon", + "title": "_Visal", "type": "object" }, - "_Hamamatsu": { - "description": "Model Hamamatsu", + "_Visal1": { + "description": "Model VISal1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Hamamatsu", - "default": "Hamamatsu", - "enum": [ - "Hamamatsu" - ], + "const": "Anterolateral visual area, layer 1", + "default": "Anterolateral visual area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISal1", + "default": "VISal1", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "03natb733", - "default": "03natb733", - "enum": [ - "03natb733" - ], - "title": "Registry Identifier", + "id": { + "const": "1074", + "default": "1074", + "title": "Id", "type": "string" } }, - "title": "_Hamamatsu", + "title": "_Visal1", "type": "object" }, - "_Hamilton": { - "description": "Model Hamilton", + "_Visal2_3": { + "description": "Model VISal2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Hamilton", - "default": "Hamilton", - "enum": [ - "Hamilton" - ], + "const": "Anterolateral visual area, layer 2/3", + "default": "Anterolateral visual area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISal2/3", + "default": "VISal2/3", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "905", + "default": "905", + "title": "Id", + "type": "string" } }, - "title": "_Hamilton", + "title": "_Visal2_3", "type": "object" }, - "_Head": { - "description": "Model head", + "_Visal4": { + "description": "Model VISal4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "head", - "default": "head", - "enum": [ - "head" - ], + "const": "Anterolateral visual area, layer 4", + "default": "Anterolateral visual area, layer 4", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISal4", + "default": "VISal4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_31858", - "default": "EMAPA_31858", - "enum": [ - "EMAPA_31858" - ], - "title": "Registry Identifier", + "id": { + "const": "1114", + "default": "1114", + "title": "Id", "type": "string" } }, - "title": "_Head", + "title": "_Visal4", "type": "object" }, - "_Hindlimb": { - "description": "Model hindlimb", + "_Visal5": { + "description": "Model VISal5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "hindlimb", - "default": "hindlimb", - "enum": [ - "hindlimb" - ], + "const": "Anterolateral visual area, layer 5", + "default": "Anterolateral visual area, layer 5", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISal5", + "default": "VISal5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_17458", - "default": "EMAPA_17458", - "enum": [ - "EMAPA_17458" - ], - "title": "Registry Identifier", + "id": { + "const": "233", + "default": "233", + "title": "Id", "type": "string" } }, - "title": "_Hindlimb", + "title": "_Visal5", "type": "object" }, - "_Homo_Sapiens": { - "description": "Model Homo sapiens", + "_Visal6A": { + "description": "Model VISal6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Homo sapiens", - "default": "Homo sapiens", - "enum": [ - "Homo sapiens" - ], + "const": "Anterolateral visual area, layer 6a", + "default": "Anterolateral visual area, layer 6a", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "National Center for Biotechnology Information", - "abbreviation": "NCBI" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISal6a", + "default": "VISal6a", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "NCBI:txid9606", - "default": "NCBI:txid9606", - "enum": [ - "NCBI:txid9606" - ], - "title": "Registry Identifier", + "id": { + "const": "601", + "default": "601", + "title": "Id", "type": "string" } }, - "title": "_Homo_Sapiens", + "title": "_Visal6A", "type": "object" }, - "_Huazhong_University_Of_Science_And_Technology": { - "description": "Model Huazhong University of Science and Technology", + "_Visal6B": { + "description": "Model VISal6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Huazhong University of Science and Technology", - "default": "Huazhong University of Science and Technology", - "enum": [ - "Huazhong University of Science and Technology" - ], + "const": "Anterolateral visual area, layer 6b", + "default": "Anterolateral visual area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "HUST", - "default": "HUST", - "enum": [ - "HUST" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISal6b", + "default": "VISal6b", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "00p991c53", - "default": "00p991c53", - "enum": [ - "00p991c53" - ], - "title": "Registry Identifier", + "id": { + "const": "649", + "default": "649", + "title": "Id", "type": "string" } }, - "title": "_Huazhong_University_Of_Science_And_Technology", + "title": "_Visal6B", "type": "object" }, - "_Infinity_Photo_Optical": { - "description": "Model Infinity Photo-Optical", + "_Visam": { + "description": "Model VISam", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Infinity Photo-Optical", - "default": "Infinity Photo-Optical", - "enum": [ - "Infinity Photo-Optical" - ], + "const": "Anteromedial visual area", + "default": "Anteromedial visual area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISam", + "default": "VISam", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "394", + "default": "394", + "title": "Id", + "type": "string" } }, - "title": "_Infinity_Photo_Optical", + "title": "_Visam", "type": "object" }, - "_Integrated_Dna_Technologies": { - "description": "Model Integrated DNA Technologies", + "_Visam1": { + "description": "Model VISam1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Integrated DNA Technologies", - "default": "Integrated DNA Technologies", - "enum": [ - "Integrated DNA Technologies" - ], + "const": "Anteromedial visual area, layer 1", + "default": "Anteromedial visual area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "IDT", - "default": "IDT", - "enum": [ - "IDT" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISam1", + "default": "VISam1", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "009jvpf03", - "default": "009jvpf03", - "enum": [ - "009jvpf03" - ], - "title": "Registry Identifier", + "id": { + "const": "281", + "default": "281", + "title": "Id", "type": "string" } }, - "title": "_Integrated_Dna_Technologies", + "title": "_Visam1", "type": "object" }, - "_Interuniversity_Microelectronics_Center": { - "description": "Model Interuniversity Microelectronics Center", + "_Visam2_3": { + "description": "Model VISam2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Interuniversity Microelectronics Center", - "default": "Interuniversity Microelectronics Center", - "enum": [ - "Interuniversity Microelectronics Center" - ], + "const": "Anteromedial visual area, layer 2/3", + "default": "Anteromedial visual area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "IMEC", - "default": "IMEC", - "enum": [ - "IMEC" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISam2/3", + "default": "VISam2/3", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "02kcbn207", - "default": "02kcbn207", - "enum": [ - "02kcbn207" - ], - "title": "Registry Identifier", + "id": { + "const": "1066", + "default": "1066", + "title": "Id", "type": "string" } }, - "title": "_Interuniversity_Microelectronics_Center", + "title": "_Visam2_3", "type": "object" }, - "_Invitrogen": { - "description": "Model Invitrogen", + "_Visam4": { + "description": "Model VISam4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Invitrogen", - "default": "Invitrogen", - "enum": [ - "Invitrogen" - ], + "const": "Anteromedial visual area, layer 4", + "default": "Anteromedial visual area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISam4", + "default": "VISam4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "03x1ewr52", - "default": "03x1ewr52", - "enum": [ - "03x1ewr52" - ], - "title": "Registry Identifier", + "id": { + "const": "401", + "default": "401", + "title": "Id", "type": "string" } }, - "title": "_Invitrogen", + "title": "_Visam4", "type": "object" }, - "_Ir_Robot_Co": { - "description": "Model IR Robot Co", + "_Visam5": { + "description": "Model VISam5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "IR Robot Co", - "default": "IR Robot Co", - "enum": [ - "IR Robot Co" - ], + "const": "Anteromedial visual area, layer 5", + "default": "Anteromedial visual area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISam5", + "default": "VISam5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "433", + "default": "433", + "title": "Id", + "type": "string" } }, - "title": "_Ir_Robot_Co", + "title": "_Visam5", "type": "object" }, - "_Isl_Products_International": { - "description": "Model ISL Products International", + "_Visam6A": { + "description": "Model VISam6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "ISL Products International", - "default": "ISL Products International", - "enum": [ - "ISL Products International" - ], + "const": "Anteromedial visual area, layer 6a", + "default": "Anteromedial visual area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "ISL", - "default": "ISL", - "enum": [ - "ISL" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISam6a", + "default": "VISam6a", + "title": "Acronym", "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" - }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "1046", + "default": "1046", + "title": "Id", + "type": "string" } }, - "title": "_Isl_Products_International", + "title": "_Visam6A", "type": "object" }, - "_Jackson_Laboratory": { - "description": "Model Jackson Laboratory", + "_Visam6B": { + "description": "Model VISam6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Jackson Laboratory", - "default": "Jackson Laboratory", - "enum": [ - "Jackson Laboratory" - ], + "const": "Anteromedial visual area, layer 6b", + "default": "Anteromedial visual area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "JAX", - "default": "JAX", - "enum": [ - "JAX" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISam6b", + "default": "VISam6b", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "021sy4w91", - "default": "021sy4w91", - "enum": [ - "021sy4w91" - ], - "title": "Registry Identifier", + "id": { + "const": "441", + "default": "441", + "title": "Id", "type": "string" } }, - "title": "_Jackson_Laboratory", + "title": "_Visam6B", "type": "object" }, - "_Janelia_Research_Campus": { - "description": "Model Janelia Research Campus", + "_Visc": { + "description": "Model VISC", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Janelia Research Campus", - "default": "Janelia Research Campus", - "enum": [ - "Janelia Research Campus" - ], + "const": "Visceral area", + "default": "Visceral area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "Janelia", - "default": "Janelia", - "enum": [ - "Janelia" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISC", + "default": "VISC", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "013sk6x84", - "default": "013sk6x84", - "enum": [ - "013sk6x84" - ], - "title": "Registry Identifier", + "id": { + "const": "677", + "default": "677", + "title": "Id", "type": "string" } }, - "title": "_Janelia_Research_Campus", + "title": "_Visc", "type": "object" }, - "_Julabo": { - "description": "Model Julabo", + "_Visc1": { + "description": "Model VISC1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Julabo", - "default": "Julabo", - "enum": [ - "Julabo" - ], + "const": "Visceral area, layer 1", + "default": "Visceral area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISC1", + "default": "VISC1", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "897", + "default": "897", + "title": "Id", + "type": "string" } }, - "title": "_Julabo", + "title": "_Visc1", "type": "object" }, - "_Lateral_Head_Of_Triceps_Brachii": { - "description": "Model lateral head of triceps brachii", + "_Visc2_3": { + "description": "Model VISC2/3", "properties": { - "name": { - "const": "lateral head of triceps brachii", - "default": "lateral head of triceps brachii", - "enum": [ - "lateral head of triceps brachii" - ], - "title": "Name", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "EMAPA_36184", - "default": "EMAPA_36184", - "enum": [ - "EMAPA_36184" - ], - "title": "Registry Identifier", + "name": { + "const": "Visceral area, layer 2/3", + "default": "Visceral area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISC2/3", + "default": "VISC2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1106", + "default": "1106", + "title": "Id", "type": "string" } }, - "title": "_Lateral_Head_Of_Triceps_Brachii", + "title": "_Visc2_3", "type": "object" }, - "_Leica": { - "description": "Model Leica", + "_Visc4": { + "description": "Model VISC4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Leica", - "default": "Leica", - "enum": [ - "Leica" - ], + "const": "Visceral area, layer 4", + "default": "Visceral area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISC4", + "default": "VISC4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "1010", + "default": "1010", + "title": "Id", + "type": "string" } }, - "title": "_Leica", + "title": "_Visc4", "type": "object" }, - "_Lg": { - "description": "Model LG", + "_Visc5": { + "description": "Model VISC5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "LG", - "default": "LG", - "enum": [ - "LG" - ], + "const": "Visceral area, layer 5", + "default": "Visceral area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISC5", + "default": "VISC5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "02b948n83", - "default": "02b948n83", - "enum": [ - "02b948n83" - ], - "title": "Registry Identifier", + "id": { + "const": "1058", + "default": "1058", + "title": "Id", "type": "string" } }, - "title": "_Lg", + "title": "_Visc5", "type": "object" }, - "_Lifecanvas": { - "description": "Model LifeCanvas", + "_Visc6A": { + "description": "Model VISC6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "LifeCanvas", - "default": "LifeCanvas", - "enum": [ - "LifeCanvas" - ], + "const": "Visceral area, layer 6a", + "default": "Visceral area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISC6a", + "default": "VISC6a", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "857", + "default": "857", + "title": "Id", + "type": "string" + } + }, + "title": "_Visc6A", + "type": "object" + }, + "_Visc6B": { + "description": "Model VISC6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Visceral area, layer 6b", + "default": "Visceral area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISC6b", + "default": "VISC6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "849", + "default": "849", + "title": "Id", + "type": "string" } }, - "title": "_Lifecanvas", + "title": "_Visc6B", "type": "object" }, - "_Long_Head_Of_Biceps_Brachii": { - "description": "Model long head of biceps brachii", + "_Visl": { + "description": "Model VISl", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "long head of biceps brachii", - "default": "long head of biceps brachii", - "enum": [ - "long head of biceps brachii" - ], + "const": "Lateral visual area", + "default": "Lateral visual area", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISl", + "default": "VISl", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_25054", - "default": "EMAPA_25054", - "enum": [ - "EMAPA_25054" - ], - "title": "Registry Identifier", + "id": { + "const": "409", + "default": "409", + "title": "Id", "type": "string" } }, - "title": "_Long_Head_Of_Biceps_Brachii", + "title": "_Visl", "type": "object" }, - "_Long_Head_Of_Triceps_Brachii": { - "description": "Model long head of triceps brachii", + "_Visl1": { + "description": "Model VISl1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "long head of triceps brachii", - "default": "long head of triceps brachii", - "enum": [ - "long head of triceps brachii" - ], + "const": "Lateral visual area, layer 1", + "default": "Lateral visual area, layer 1", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISl1", + "default": "VISl1", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_36185", - "default": "EMAPA_36185", - "enum": [ - "EMAPA_36185" - ], - "title": "Registry Identifier", + "id": { + "const": "421", + "default": "421", + "title": "Id", "type": "string" } }, - "title": "_Long_Head_Of_Triceps_Brachii", + "title": "_Visl1", "type": "object" }, - "_Lumen_Dynamics": { - "description": "Model Lumen Dynamics", + "_Visl2_3": { + "description": "Model VISl2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Lumen Dynamics", - "default": "Lumen Dynamics", - "enum": [ - "Lumen Dynamics" - ], + "const": "Lateral visual area, layer 2/3", + "default": "Lateral visual area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISl2/3", + "default": "VISl2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "973", + "default": "973", + "title": "Id", + "type": "string" + } + }, + "title": "_Visl2_3", + "type": "object" + }, + "_Visl4": { + "description": "Model VISl4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral visual area, layer 4", + "default": "Lateral visual area, layer 4", + "title": "Name", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISl4", + "default": "VISl4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "573", + "default": "573", + "title": "Id", + "type": "string" } }, - "title": "_Lumen_Dynamics", + "title": "_Visl4", "type": "object" }, - "_Macaca_Mulatta": { - "description": "Model Macaca mulatta", + "_Visl5": { + "description": "Model VISl5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Macaca mulatta", - "default": "Macaca mulatta", - "enum": [ - "Macaca mulatta" - ], + "const": "Lateral visual area, layer 5", + "default": "Lateral visual area, layer 5", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "National Center for Biotechnology Information", - "abbreviation": "NCBI" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISl5", + "default": "VISl5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "NCBI:txid9544", - "default": "NCBI:txid9544", - "enum": [ - "NCBI:txid9544" - ], - "title": "Registry Identifier", + "id": { + "const": "613", + "default": "613", + "title": "Id", "type": "string" } }, - "title": "_Macaca_Mulatta", + "title": "_Visl5", "type": "object" }, - "_Mbf_Bioscience": { - "description": "Model MBF Bioscience", + "_Visl6A": { + "description": "Model VISl6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "MBF Bioscience", - "default": "MBF Bioscience", - "enum": [ - "MBF Bioscience" - ], + "const": "Lateral visual area, layer 6a", + "default": "Lateral visual area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "MBF", - "default": "MBF", - "enum": [ - "MBF" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISl6a", + "default": "VISl6a", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "02zynam48", - "default": "02zynam48", - "enum": [ - "02zynam48" - ], - "title": "Registry Identifier", + "id": { + "const": "74", + "default": "74", + "title": "Id", "type": "string" } }, - "title": "_Mbf_Bioscience", + "title": "_Visl6A", "type": "object" }, - "_Meadowlark_Optics": { - "description": "Model Meadowlark Optics", + "_Visl6B": { + "description": "Model VISl6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Meadowlark Optics", - "default": "Meadowlark Optics", - "enum": [ - "Meadowlark Optics" - ], + "const": "Lateral visual area, layer 6b", + "default": "Lateral visual area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISl6b", + "default": "VISl6b", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "00n8qbq54", - "default": "00n8qbq54", - "enum": [ - "00n8qbq54" - ], - "title": "Registry Identifier", + "id": { + "const": "121", + "default": "121", + "title": "Id", "type": "string" } }, - "title": "_Meadowlark_Optics", + "title": "_Visl6B", "type": "object" }, - "_Medial_Head_Of_Triceps_Brachii": { - "description": "Model medial head of triceps brachii", + "_Visli": { + "description": "Model VISli", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "medial head of triceps brachii", - "default": "medial head of triceps brachii", - "enum": [ - "medial head of triceps brachii" - ], + "const": "Laterointermediate area", + "default": "Laterointermediate area", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISli", + "default": "VISli", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_36186", - "default": "EMAPA_36186", - "enum": [ - "EMAPA_36186" - ], - "title": "Registry Identifier", + "id": { + "const": "312782574", + "default": "312782574", + "title": "Id", "type": "string" } }, - "title": "_Medial_Head_Of_Triceps_Brachii", + "title": "_Visli", "type": "object" - }, - "_Mgi": { - "additionalProperties": false, - "description": "Model MGI", + }, + "_Visli1": { + "description": "Model VISli1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Mouse Genome Informatics", - "default": "Mouse Genome Informatics", - "enum": [ - "Mouse Genome Informatics" - ], + "const": "Laterointermediate area, layer 1", + "default": "Laterointermediate area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "MGI", - "default": "MGI", - "enum": [ - "MGI" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISli1", + "default": "VISli1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782578", + "default": "312782578", + "title": "Id", "type": "string" } }, - "title": "_Mgi", + "title": "_Visli1", "type": "object" }, - "_Michael_J_Fox_Foundation_For_Parkinson_S_Research": { - "description": "Model Michael J. Fox Foundation for Parkinson's Research", + "_Visli2_3": { + "description": "Model VISli2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Michael J. Fox Foundation for Parkinson's Research", - "default": "Michael J. Fox Foundation for Parkinson's Research", - "enum": [ - "Michael J. Fox Foundation for Parkinson's Research" - ], + "const": "Laterointermediate area, layer 2/3", + "default": "Laterointermediate area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "MJFF", - "default": "MJFF", - "enum": [ - "MJFF" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISli2/3", + "default": "VISli2/3", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "03arq3225", - "default": "03arq3225", - "enum": [ - "03arq3225" - ], - "title": "Registry Identifier", + "id": { + "const": "312782582", + "default": "312782582", + "title": "Id", "type": "string" } }, - "title": "_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "title": "_Visli2_3", "type": "object" }, - "_Midwest_Optical_Systems_Inc_": { - "description": "Model Midwest Optical Systems, Inc.", + "_Visli4": { + "description": "Model VISli4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Midwest Optical Systems, Inc.", - "default": "Midwest Optical Systems, Inc.", - "enum": [ - "Midwest Optical Systems, Inc." - ], + "const": "Laterointermediate area, layer 4", + "default": "Laterointermediate area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "MidOpt", - "default": "MidOpt", - "enum": [ - "MidOpt" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISli4", + "default": "VISli4", + "title": "Acronym", "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" - }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782586", + "default": "312782586", + "title": "Id", + "type": "string" } }, - "title": "_Midwest_Optical_Systems_Inc_", + "title": "_Visli4", "type": "object" }, - "_Mitutuyo": { - "description": "Model Mitutuyo", + "_Visli5": { + "description": "Model VISli5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Mitutuyo", - "default": "Mitutuyo", - "enum": [ - "Mitutuyo" - ], + "const": "Laterointermediate area, layer 5", + "default": "Laterointermediate area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISli5", + "default": "VISli5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782590", + "default": "312782590", + "title": "Id", + "type": "string" } }, - "title": "_Mitutuyo", + "title": "_Visli5", "type": "object" }, - "_Mks_Newport": { - "description": "Model MKS Newport", + "_Visli6A": { + "description": "Model VISli6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "MKS Newport", - "default": "MKS Newport", - "enum": [ - "MKS Newport" - ], + "const": "Laterointermediate area, layer 6a", + "default": "Laterointermediate area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISli6a", + "default": "VISli6a", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "00k17f049", - "default": "00k17f049", - "enum": [ - "00k17f049" - ], - "title": "Registry Identifier", + "id": { + "const": "312782594", + "default": "312782594", + "title": "Id", "type": "string" } }, - "title": "_Mks_Newport", + "title": "_Visli6A", "type": "object" }, - "_Mpi": { - "description": "Model MPI", + "_Visli6B": { + "description": "Model VISli6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "MPI", - "default": "MPI", - "enum": [ - "MPI" - ], + "const": "Laterointermediate area, layer 6b", + "default": "Laterointermediate area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "MPI", - "default": "MPI", - "enum": [ - "MPI" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISli6b", + "default": "VISli6b", + "title": "Acronym", "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" - }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782598", + "default": "312782598", + "title": "Id", + "type": "string" } }, - "title": "_Mpi", + "title": "_Visli6B", "type": "object" }, - "_Mus_Musculus": { - "description": "Model Mus musculus", + "_Visp": { + "description": "Model VISp", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Mus musculus", - "default": "Mus musculus", - "enum": [ - "Mus musculus" - ], + "const": "Primary visual area", + "default": "Primary visual area", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "National Center for Biotechnology Information", - "abbreviation": "NCBI" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "NCBI:txid10090", - "default": "NCBI:txid10090", - "enum": [ - "NCBI:txid10090" - ], - "title": "Registry Identifier", + "acronym": { + "const": "VISp", + "default": "VISp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "385", + "default": "385", + "title": "Id", "type": "string" } }, - "title": "_Mus_Musculus", + "title": "_Visp", "type": "object" }, - "_National_Center_For_Complementary_And_Integrative_Health": { - "description": "Model National Center for Complementary and Integrative Health", + "_Visp1": { + "description": "Model VISp1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "National Center for Complementary and Integrative Health", - "default": "National Center for Complementary and Integrative Health", - "enum": [ - "National Center for Complementary and Integrative Health" - ], + "const": "Primary visual area, layer 1", + "default": "Primary visual area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "NCCIH", - "default": "NCCIH", - "enum": [ - "NCCIH" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISp1", + "default": "VISp1", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "00190t495", - "default": "00190t495", - "enum": [ - "00190t495" - ], - "title": "Registry Identifier", + "id": { + "const": "593", + "default": "593", + "title": "Id", "type": "string" } }, - "title": "_National_Center_For_Complementary_And_Integrative_Health", + "title": "_Visp1", "type": "object" }, - "_National_Institute_Of_Mental_Health": { - "description": "Model National Institute of Mental Health", + "_Visp2_3": { + "description": "Model VISp2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "National Institute of Mental Health", - "default": "National Institute of Mental Health", - "enum": [ - "National Institute of Mental Health" - ], + "const": "Primary visual area, layer 2/3", + "default": "Primary visual area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "NIMH", - "default": "NIMH", - "enum": [ - "NIMH" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISp2/3", + "default": "VISp2/3", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "04xeg9z08", - "default": "04xeg9z08", - "enum": [ - "04xeg9z08" - ], - "title": "Registry Identifier", + "id": { + "const": "821", + "default": "821", + "title": "Id", "type": "string" } }, - "title": "_National_Institute_Of_Mental_Health", + "title": "_Visp2_3", "type": "object" }, - "_National_Institute_Of_Neurological_Disorders_And_Stroke": { - "description": "Model National Institute of Neurological Disorders and Stroke", + "_Visp4": { + "description": "Model VISp4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "National Institute of Neurological Disorders and Stroke", - "default": "National Institute of Neurological Disorders and Stroke", - "enum": [ - "National Institute of Neurological Disorders and Stroke" - ], + "const": "Primary visual area, layer 4", + "default": "Primary visual area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "NINDS", - "default": "NINDS", - "enum": [ - "NINDS" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISp4", + "default": "VISp4", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "01s5ya894", - "default": "01s5ya894", - "enum": [ - "01s5ya894" - ], - "title": "Registry Identifier", + "id": { + "const": "721", + "default": "721", + "title": "Id", "type": "string" } }, - "title": "_National_Institute_Of_Neurological_Disorders_And_Stroke", + "title": "_Visp4", "type": "object" }, - "_National_Instruments": { - "description": "Model National Instruments", + "_Visp5": { + "description": "Model VISp5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "National Instruments", - "default": "National Instruments", - "enum": [ - "National Instruments" - ], + "const": "Primary visual area, layer 5", + "default": "Primary visual area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISp5", + "default": "VISp5", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "778", + "default": "778", + "title": "Id", + "type": "string" + } + }, + "title": "_Visp5", + "type": "object" + }, + "_Visp6A": { + "description": "Model VISp6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary visual area, layer 6a", + "default": "Primary visual area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISp6a", + "default": "VISp6a", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "026exqw73", - "default": "026exqw73", - "enum": [ - "026exqw73" - ], - "title": "Registry Identifier", + "id": { + "const": "33", + "default": "33", + "title": "Id", "type": "string" } }, - "title": "_National_Instruments", + "title": "_Visp6A", "type": "object" }, - "_Navitar": { - "description": "Model Navitar", + "_Visp6B": { + "description": "Model VISp6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Navitar", - "default": "Navitar", - "enum": [ - "Navitar" - ], + "const": "Primary visual area, layer 6b", + "default": "Primary visual area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISp6b", + "default": "VISp6b", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "305", + "default": "305", + "title": "Id", + "type": "string" + } + }, + "title": "_Visp6B", + "type": "object" + }, + "_Vispl": { + "description": "Model VISpl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Posterolateral visual area", + "default": "Posterolateral visual area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISpl", + "default": "VISpl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "425", + "default": "425", + "title": "Id", + "type": "string" } }, - "title": "_Navitar", + "title": "_Vispl", "type": "object" }, - "_Ncbi": { - "additionalProperties": false, - "description": "Model NCBI", + "_Vispl1": { + "description": "Model VISpl1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "National Center for Biotechnology Information", - "default": "National Center for Biotechnology Information", - "enum": [ - "National Center for Biotechnology Information" - ], + "const": "Posterolateral visual area, layer 1", + "default": "Posterolateral visual area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "NCBI", - "default": "NCBI", - "enum": [ - "NCBI" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISpl1", + "default": "VISpl1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "750", + "default": "750", + "title": "Id", "type": "string" } }, - "title": "_Ncbi", + "title": "_Vispl1", "type": "object" }, - "_Neck": { - "description": "Model neck", + "_Vispl2_3": { + "description": "Model VISpl2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "neck", - "default": "neck", - "enum": [ - "neck" - ], + "const": "Posterolateral visual area, layer 2/3", + "default": "Posterolateral visual area, layer 2/3", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISpl2/3", + "default": "VISpl2/3", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_35587", - "default": "EMAPA_35587", - "enum": [ - "EMAPA_35587" - ], - "title": "Registry Identifier", + "id": { + "const": "269", + "default": "269", + "title": "Id", "type": "string" } }, - "title": "_Neck", + "title": "_Vispl2_3", "type": "object" }, - "_Neurophotometrics": { - "description": "Model Neurophotometrics", + "_Vispl4": { + "description": "Model VISpl4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Neurophotometrics", - "default": "Neurophotometrics", - "enum": [ - "Neurophotometrics" - ], + "const": "Posterolateral visual area, layer 4", + "default": "Posterolateral visual area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISpl4", + "default": "VISpl4", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "869", + "default": "869", + "title": "Id", + "type": "string" + } + }, + "title": "_Vispl4", + "type": "object" + }, + "_Vispl5": { + "description": "Model VISpl5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Posterolateral visual area, layer 5", + "default": "Posterolateral visual area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISpl5", + "default": "VISpl5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "902", + "default": "902", + "title": "Id", + "type": "string" } }, - "title": "_Neurophotometrics", + "title": "_Vispl5", "type": "object" }, - "_New_Scale_Technologies": { - "description": "Model New Scale Technologies", + "_Vispl6A": { + "description": "Model VISpl6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "New Scale Technologies", - "default": "New Scale Technologies", - "enum": [ - "New Scale Technologies" - ], + "const": "Posterolateral visual area, layer 6a", + "default": "Posterolateral visual area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISpl6a", + "default": "VISpl6a", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "377", + "default": "377", + "title": "Id", + "type": "string" + } + }, + "title": "_Vispl6A", + "type": "object" + }, + "_Vispl6B": { + "description": "Model VISpl6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Posterolateral visual area, layer 6b", + "default": "Posterolateral visual area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISpl6b", + "default": "VISpl6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "393", + "default": "393", + "title": "Id", + "type": "string" } }, - "title": "_New_Scale_Technologies", + "title": "_Vispl6B", "type": "object" }, - "_New_York_University": { - "description": "Model New York University", + "_Vispm": { + "description": "Model VISpm", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "New York University", - "default": "New York University", - "enum": [ - "New York University" - ], + "const": "posteromedial visual area", + "default": "posteromedial visual area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "NYU", - "default": "NYU", - "enum": [ - "NYU" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISpm", + "default": "VISpm", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "533", + "default": "533", + "title": "Id", + "type": "string" + } + }, + "title": "_Vispm", + "type": "object" + }, + "_Vispm1": { + "description": "Model VISpm1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "0190ak572", - "default": "0190ak572", - "enum": [ - "0190ak572" - ], - "title": "Registry Identifier", + "name": { + "const": "posteromedial visual area, layer 1", + "default": "posteromedial visual area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISpm1", + "default": "VISpm1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "805", + "default": "805", + "title": "Id", "type": "string" } }, - "title": "_New_York_University", + "title": "_Vispm1", "type": "object" }, - "_Nikon": { - "description": "Model Nikon", + "_Vispm2_3": { + "description": "Model VISpm2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Nikon", - "default": "Nikon", - "enum": [ - "Nikon" - ], + "const": "posteromedial visual area, layer 2/3", + "default": "posteromedial visual area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISpm2/3", + "default": "VISpm2/3", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "0280y9h11", - "default": "0280y9h11", - "enum": [ - "0280y9h11" - ], - "title": "Registry Identifier", + "id": { + "const": "41", + "default": "41", + "title": "Id", "type": "string" } }, - "title": "_Nikon", + "title": "_Vispm2_3", "type": "object" }, - "_Nresearch_Inc": { - "description": "Model NResearch Inc", + "_Vispm4": { + "description": "Model VISpm4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "NResearch Inc", - "default": "NResearch Inc", - "enum": [ - "NResearch Inc" - ], + "const": "posteromedial visual area, layer 4", + "default": "posteromedial visual area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISpm4", + "default": "VISpm4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "501", + "default": "501", + "title": "Id", + "type": "string" } }, - "title": "_Nresearch_Inc", + "title": "_Vispm4", "type": "object" }, - "_Olympus": { - "description": "Model Olympus", + "_Vispm5": { + "description": "Model VISpm5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Olympus", - "default": "Olympus", - "enum": [ - "Olympus" - ], + "const": "posteromedial visual area, layer 5", + "default": "posteromedial visual area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISpm5", + "default": "VISpm5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "02vcdte90", - "default": "02vcdte90", - "enum": [ - "02vcdte90" - ], - "title": "Registry Identifier", + "id": { + "const": "565", + "default": "565", + "title": "Id", "type": "string" } }, - "title": "_Olympus", + "title": "_Vispm5", "type": "object" }, - "_Open_Ephys_Production_Site": { - "description": "Model Open Ephys Production Site", + "_Vispm6A": { + "description": "Model VISpm6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Open Ephys Production Site", - "default": "Open Ephys Production Site", - "enum": [ - "Open Ephys Production Site" - ], + "const": "posteromedial visual area, layer 6a", + "default": "posteromedial visual area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "OEPS", - "default": "OEPS", - "enum": [ - "OEPS" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISpm6a", + "default": "VISpm6a", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "257", + "default": "257", + "title": "Id", + "type": "string" + } + }, + "title": "_Vispm6A", + "type": "object" + }, + "_Vispm6B": { + "description": "Model VISpm6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "007rkz355", - "default": "007rkz355", - "enum": [ - "007rkz355" - ], - "title": "Registry Identifier", + "name": { + "const": "posteromedial visual area, layer 6b", + "default": "posteromedial visual area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISpm6b", + "default": "VISpm6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "469", + "default": "469", + "title": "Id", "type": "string" } }, - "title": "_Open_Ephys_Production_Site", + "title": "_Vispm6B", "type": "object" }, - "_Optotune": { - "description": "Model Optotune", + "_Vispor": { + "description": "Model VISpor", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Optotune", - "default": "Optotune", - "enum": [ - "Optotune" - ], + "const": "Postrhinal area", + "default": "Postrhinal area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISpor", + "default": "VISpor", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "312782628", + "default": "312782628", + "title": "Id", + "type": "string" + } + }, + "title": "_Vispor", + "type": "object" + }, + "_Vispor1": { + "description": "Model VISpor1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Postrhinal area, layer 1", + "default": "Postrhinal area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISpor1", + "default": "VISpor1", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782632", + "default": "312782632", + "title": "Id", + "type": "string" } }, - "title": "_Optotune", + "title": "_Vispor1", "type": "object" }, - "_Orcid": { - "additionalProperties": false, - "description": "Model ORCID", + "_Vispor2_3": { + "description": "Model VISpor2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Open Researcher and Contributor ID", - "default": "Open Researcher and Contributor ID", - "enum": [ - "Open Researcher and Contributor ID" - ], + "const": "Postrhinal area, layer 2/3", + "default": "Postrhinal area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "ORCID", - "default": "ORCID", - "enum": [ - "ORCID" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISpor2/3", + "default": "VISpor2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782636", + "default": "312782636", + "title": "Id", "type": "string" } }, - "title": "_Orcid", + "title": "_Vispor2_3", "type": "object" }, - "_Other": { - "description": "Model Other", + "_Vispor4": { + "description": "Model VISpor4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Other", - "default": "Other", - "enum": [ - "Other" - ], + "const": "Postrhinal area, layer 4", + "default": "Postrhinal area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISpor4", + "default": "VISpor4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782640", + "default": "312782640", + "title": "Id", + "type": "string" } }, - "title": "_Other", + "title": "_Vispor4", "type": "object" }, - "_Oxxius": { - "description": "Model Oxxius", + "_Vispor5": { + "description": "Model VISpor5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Oxxius", - "default": "Oxxius", - "enum": [ - "Oxxius" - ], + "const": "Postrhinal area, layer 5", + "default": "Postrhinal area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISpor5", + "default": "VISpor5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782644", + "default": "312782644", + "title": "Id", + "type": "string" } }, - "title": "_Oxxius", + "title": "_Vispor5", "type": "object" }, - "_Pars_Scapularis_Of_Deltoid": { - "description": "Model pars scapularis of deltoid", + "_Vispor6A": { + "description": "Model VISpor6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "pars scapularis of deltoid", - "default": "pars scapularis of deltoid", - "enum": [ - "pars scapularis of deltoid" - ], + "const": "Postrhinal area, layer 6a", + "default": "Postrhinal area, layer 6a", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISpor6a", + "default": "VISpor6a", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_36163", - "default": "EMAPA_36163", - "enum": [ - "EMAPA_36163" - ], - "title": "Registry Identifier", + "id": { + "const": "312782648", + "default": "312782648", + "title": "Id", "type": "string" } }, - "title": "_Pars_Scapularis_Of_Deltoid", + "title": "_Vispor6A", "type": "object" }, - "_Pectoralis_Major": { - "description": "Model pectoralis major", + "_Vispor6B": { + "description": "Model VISpor6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "pectoralis major", - "default": "pectoralis major", - "enum": [ - "pectoralis major" - ], + "const": "Postrhinal area, layer 6b", + "default": "Postrhinal area, layer 6b", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISpor6b", + "default": "VISpor6b", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_18179", - "default": "EMAPA_18179", - "enum": [ - "EMAPA_18179" - ], - "title": "Registry Identifier", + "id": { + "const": "312782652", + "default": "312782652", + "title": "Id", "type": "string" } }, - "title": "_Pectoralis_Major", + "title": "_Vispor6B", "type": "object" }, - "_Prizmatix": { - "description": "Model Prizmatix", + "_Visrl": { + "description": "Model VISrl", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Prizmatix", - "default": "Prizmatix", - "enum": [ - "Prizmatix" - ], + "const": "Rostrolateral visual area", + "default": "Rostrolateral visual area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISrl", + "default": "VISrl", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "417", + "default": "417", + "title": "Id", + "type": "string" } }, - "title": "_Prizmatix", + "title": "_Visrl", "type": "object" }, - "_Quantifi": { - "description": "Model Quantifi", + "_Visrl1": { + "description": "Model VISrl1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Quantifi", - "default": "Quantifi", - "enum": [ - "Quantifi" - ], + "const": "Rostrolateral area, layer 1", + "default": "Rostrolateral area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISrl1", + "default": "VISrl1", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782604", + "default": "312782604", + "title": "Id", + "type": "string" } }, - "title": "_Quantifi", + "title": "_Visrl1", "type": "object" }, - "_Raspberry_Pi": { - "description": "Model Raspberry Pi", + "_Visrl2_3": { + "description": "Model VISrl2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Raspberry Pi", - "default": "Raspberry Pi", - "enum": [ - "Raspberry Pi" - ], + "const": "Rostrolateral area, layer 2/3", + "default": "Rostrolateral area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISrl2/3", + "default": "VISrl2/3", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782608", + "default": "312782608", + "title": "Id", + "type": "string" } }, - "title": "_Raspberry_Pi", + "title": "_Visrl2_3", "type": "object" }, - "_Rattus_Norvegicus": { - "description": "Model Rattus norvegicus", + "_Visrl4": { + "description": "Model VISrl4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Rattus norvegicus", - "default": "Rattus norvegicus", - "enum": [ - "Rattus norvegicus" - ], + "const": "Rostrolateral area, layer 4", + "default": "Rostrolateral area, layer 4", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "National Center for Biotechnology Information", - "abbreviation": "NCBI" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISrl4", + "default": "VISrl4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "NCBI:txid10116", - "default": "NCBI:txid10116", - "enum": [ - "NCBI:txid10116" - ], - "title": "Registry Identifier", + "id": { + "const": "312782612", + "default": "312782612", + "title": "Id", "type": "string" } }, - "title": "_Rattus_Norvegicus", + "title": "_Visrl4", "type": "object" }, - "_Ror": { - "additionalProperties": false, - "description": "Model ROR", + "_Visrl5": { + "description": "Model VISrl5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Research Organization Registry", - "default": "Research Organization Registry", - "enum": [ - "Research Organization Registry" - ], + "const": "Rostrolateral area, layer 5", + "default": "Rostrolateral area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "ROR", - "default": "ROR", - "enum": [ - "ROR" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISrl5", + "default": "VISrl5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782616", + "default": "312782616", + "title": "Id", "type": "string" } }, - "title": "_Ror", + "title": "_Visrl5", "type": "object" }, - "_Rrid": { - "additionalProperties": false, - "description": "Model RRID", + "_Visrl6A": { + "description": "Model VISrl6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Research Resource Identifiers", - "default": "Research Resource Identifiers", - "enum": [ - "Research Resource Identifiers" - ], + "const": "Rostrolateral area, layer 6a", + "default": "Rostrolateral area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "RRID", - "default": "RRID", - "enum": [ - "RRID" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISrl6a", + "default": "VISrl6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782620", + "default": "312782620", + "title": "Id", "type": "string" } }, - "title": "_Rrid", + "title": "_Visrl6A", "type": "object" }, - "_Schneider_Kreuznach": { - "description": "Model Schneider-Kreuznach", + "_Visrl6B": { + "description": "Model VISrl6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Schneider-Kreuznach", - "default": "Schneider-Kreuznach", - "enum": [ - "Schneider-Kreuznach" - ], + "const": "Rostrolateral area, layer 6b", + "default": "Rostrolateral area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISrl6b", + "default": "VISrl6b", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782624", + "default": "312782624", + "title": "Id", + "type": "string" } }, - "title": "_Schneider_Kreuznach", + "title": "_Visrl6B", "type": "object" }, - "_Second_Order_Effects": { - "description": "Model Second Order Effects", + "_Vl": { + "description": "Model VL", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Second Order Effects", - "default": "Second Order Effects", - "enum": [ - "Second Order Effects" - ], + "const": "lateral ventricle", + "default": "lateral ventricle", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VL", + "default": "VL", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "81", + "default": "81", + "title": "Id", + "type": "string" } }, - "title": "_Second_Order_Effects", + "title": "_Vl", "type": "object" }, - "_Semrock": { - "description": "Model Semrock", + "_Vlpo": { + "description": "Model VLPO", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Semrock", - "default": "Semrock", - "enum": [ - "Semrock" - ], + "const": "Ventrolateral preoptic nucleus", + "default": "Ventrolateral preoptic nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VLPO", + "default": "VLPO", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "689", + "default": "689", + "title": "Id", + "type": "string" } }, - "title": "_Semrock", + "title": "_Vlpo", "type": "object" }, - "_Short_Head_Of_Biceps_Brachii": { - "description": "Model short head of biceps brachii", + "_Vm": { + "description": "Model VM", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "short head of biceps brachii", - "default": "short head of biceps brachii", - "enum": [ - "short head of biceps brachii" - ], + "const": "Ventral medial nucleus of the thalamus", + "default": "Ventral medial nucleus of the thalamus", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VM", + "default": "VM", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_25055", - "default": "EMAPA_25055", - "enum": [ - "EMAPA_25055" - ], - "title": "Registry Identifier", + "id": { + "const": "685", + "default": "685", + "title": "Id", "type": "string" } }, - "title": "_Short_Head_Of_Biceps_Brachii", + "title": "_Vm", "type": "object" }, - "_Sicgen": { - "description": "Model SICGEN", + "_Vmh": { + "description": "Model VMH", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "SICGEN", - "default": "SICGEN", - "enum": [ - "SICGEN" - ], + "const": "Ventromedial hypothalamic nucleus", + "default": "Ventromedial hypothalamic nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VMH", + "default": "VMH", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "693", + "default": "693", + "title": "Id", + "type": "string" } }, - "title": "_Sicgen", + "title": "_Vmh", "type": "object" }, - "_Sigma_Aldrich": { - "description": "Model Sigma-Aldrich", + "_Vmpo": { + "description": "Model VMPO", "properties": { - "name": { - "const": "Sigma-Aldrich", - "default": "Sigma-Aldrich", - "enum": [ - "Sigma-Aldrich" - ], - "title": "Name", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "name": { + "const": "Ventromedial preoptic nucleus", + "default": "Ventromedial preoptic nucleus", + "title": "Name", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VMPO", + "default": "VMPO", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "576073699", + "default": "576073699", + "title": "Id", + "type": "string" } }, - "title": "_Sigma_Aldrich", + "title": "_Vmpo", "type": "object" }, - "_Simons_Foundation": { - "description": "Model Simons Foundation", + "_Vn": { + "description": "Model Vn", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Simons Foundation", - "default": "Simons Foundation", - "enum": [ - "Simons Foundation" - ], + "const": "trigeminal nerve", + "default": "trigeminal nerve", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "Vn", + "default": "Vn", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "01cmst727", - "default": "01cmst727", - "enum": [ - "01cmst727" - ], - "title": "Registry Identifier", + "id": { + "const": "901", + "default": "901", + "title": "Id", "type": "string" } }, - "title": "_Simons_Foundation", + "title": "_Vn", "type": "object" }, - "_Spinnaker": { - "description": "Model Spinnaker", + "_Vnc": { + "description": "Model VNC", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Spinnaker", - "default": "Spinnaker", - "enum": [ - "Spinnaker" - ], + "const": "Vestibular nuclei", + "default": "Vestibular nuclei", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VNC", + "default": "VNC", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "701", + "default": "701", + "title": "Id", + "type": "string" } }, - "title": "_Spinnaker", + "title": "_Vnc", "type": "object" }, - "_Tail": { - "description": "Model tail", + "_Von": { + "description": "Model von", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "tail", - "default": "tail", - "enum": [ - "tail" - ], + "const": "vomeronasal nerve", + "default": "vomeronasal nerve", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "von", + "default": "von", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_16748", - "default": "EMAPA_16748", - "enum": [ - "EMAPA_16748" - ], - "title": "Registry Identifier", + "id": { + "const": "949", + "default": "949", + "title": "Id", "type": "string" } }, - "title": "_Tail", + "title": "_Von", "type": "object" }, - "_Tamron": { - "description": "Model Tamron", + "_Vortran": { + "description": "Model Vortran", "properties": { "name": { - "const": "Tamron", - "default": "Tamron", - "enum": [ - "Tamron" - ], + "const": "Vortran", + "default": "Vortran", "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -13753,722 +59847,503 @@ "type": "null" } }, - "title": "_Tamron", + "title": "_Vortran", "type": "object" }, - "_Technical_Manufacturing_Corporation": { - "description": "Model Technical Manufacturing Corporation", + "_Vp": { + "description": "Model VP", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Technical Manufacturing Corporation", - "default": "Technical Manufacturing Corporation", - "enum": [ - "Technical Manufacturing Corporation" - ], + "const": "Ventral posterior complex of the thalamus", + "default": "Ventral posterior complex of the thalamus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "TMC", - "default": "TMC", - "enum": [ - "TMC" - ], - "title": "Abbreviation", + "acronym": { + "const": "VP", + "default": "VP", + "title": "Acronym", "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" - }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "709", + "default": "709", + "title": "Id", + "type": "string" } }, - "title": "_Technical_Manufacturing_Corporation", + "title": "_Vp", "type": "object" }, - "_Teledyne_Flir": { - "description": "Model Teledyne FLIR", + "_Vpl": { + "description": "Model VPL", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Teledyne FLIR", - "default": "Teledyne FLIR", - "enum": [ - "Teledyne FLIR" - ], + "const": "Ventral posterolateral nucleus of the thalamus", + "default": "Ventral posterolateral nucleus of the thalamus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "FLIR", - "default": "FLIR", - "enum": [ - "FLIR" - ], - "title": "Abbreviation", + "acronym": { + "const": "VPL", + "default": "VPL", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "718", + "default": "718", + "title": "Id", + "type": "string" + } + }, + "title": "_Vpl", + "type": "object" + }, + "_Vplpc": { + "description": "Model VPLpc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral posterolateral nucleus of the thalamus, parvicellular part", + "default": "Ventral posterolateral nucleus of the thalamus, parvicellular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VPLpc", + "default": "VPLpc", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "01j1gwp17", - "default": "01j1gwp17", - "enum": [ - "01j1gwp17" - ], - "title": "Registry Identifier", + "id": { + "const": "725", + "default": "725", + "title": "Id", "type": "string" } }, - "title": "_Teledyne_Flir", + "title": "_Vplpc", "type": "object" }, - "_Templeton_World_Charity_Foundation": { - "description": "Model Templeton World Charity Foundation", + "_Vpm": { + "description": "Model VPM", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Templeton World Charity Foundation", - "default": "Templeton World Charity Foundation", - "enum": [ - "Templeton World Charity Foundation" - ], + "const": "Ventral posteromedial nucleus of the thalamus", + "default": "Ventral posteromedial nucleus of the thalamus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "TWCF", - "default": "TWCF", - "enum": [ - "TWCF" - ], - "title": "Abbreviation", + "acronym": { + "const": "VPM", + "default": "VPM", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "00x0z1472", - "default": "00x0z1472", - "enum": [ - "00x0z1472" - ], - "title": "Registry Identifier", + "id": { + "const": "733", + "default": "733", + "title": "Id", "type": "string" } }, - "title": "_Templeton_World_Charity_Foundation", + "title": "_Vpm", "type": "object" }, - "_Tendon_Of_Biceps_Brachii": { - "description": "Model tendon of biceps brachii", + "_Vpmpc": { + "description": "Model VPMpc", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "tendon of biceps brachii", - "default": "tendon of biceps brachii", - "enum": [ - "tendon of biceps brachii" - ], + "const": "Ventral posteromedial nucleus of the thalamus, parvicellular part", + "default": "Ventral posteromedial nucleus of the thalamus, parvicellular part", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VPMpc", + "default": "VPMpc", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_25053", - "default": "EMAPA_25053", - "enum": [ - "EMAPA_25053" - ], - "title": "Registry Identifier", + "id": { + "const": "741", + "default": "741", + "title": "Id", "type": "string" } }, - "title": "_Tendon_Of_Biceps_Brachii", + "title": "_Vpmpc", "type": "object" }, - "_The_Imaging_Source": { - "description": "Model The Imaging Source", + "_Vs": { + "description": "Model VS", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "The Imaging Source", - "default": "The Imaging Source", - "enum": [ - "The Imaging Source" - ], + "const": "ventricular systems", + "default": "ventricular systems", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VS", + "default": "VS", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "73", + "default": "73", + "title": "Id", + "type": "string" } }, - "title": "_The_Imaging_Source", + "title": "_Vs", "type": "object" }, - "_The_Lee_Company": { - "description": "Model The Lee Company", + "_Vta": { + "description": "Model VTA", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "The Lee Company", - "default": "The Lee Company", - "enum": [ - "The Lee Company" - ], + "const": "Ventral tegmental area", + "default": "Ventral tegmental area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VTA", + "default": "VTA", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "749", + "default": "749", + "title": "Id", + "type": "string" + } + }, + "title": "_Vta", + "type": "object" + }, + "_Vtd": { + "description": "Model vtd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "ventral tegmental decussation", + "default": "ventral tegmental decussation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "vtd", + "default": "vtd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "397", + "default": "397", + "title": "Id", + "type": "string" } }, - "title": "_The_Lee_Company", + "title": "_Vtd", "type": "object" }, - "_Thermo_Fisher_Scientific": { - "description": "Model Thermo Fisher Scientific", + "_Vtn": { + "description": "Model VTN", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Thermo Fisher Scientific", - "default": "Thermo Fisher Scientific", - "enum": [ - "Thermo Fisher Scientific" - ], + "const": "Ventral tegmental nucleus", + "default": "Ventral tegmental nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VTN", + "default": "VTN", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "757", + "default": "757", + "title": "Id", + "type": "string" + } + }, + "title": "_Vtn", + "type": "object" + }, + "_Vviiin": { + "description": "Model vVIIIn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "03x1ewr52", - "default": "03x1ewr52", - "enum": [ - "03x1ewr52" - ], - "title": "Registry Identifier", + "name": { + "const": "vestibular nerve", + "default": "vestibular nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "vVIIIn", + "default": "vVIIIn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "413", + "default": "413", + "title": "Id", "type": "string" } }, - "title": "_Thermo_Fisher_Scientific", + "title": "_Vviiin", "type": "object" }, - "_Thorlabs": { - "description": "Model Thorlabs", + "_X": { + "description": "Model x", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Thorlabs", - "default": "Thorlabs", - "enum": [ - "Thorlabs" - ], + "const": "Nucleus x", + "default": "Nucleus x", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "x", + "default": "x", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "04gsnvb07", - "default": "04gsnvb07", - "enum": [ - "04gsnvb07" - ], - "title": "Registry Identifier", + "id": { + "const": "765", + "default": "765", + "title": "Id", "type": "string" } }, - "title": "_Thorlabs", + "title": "_X", "type": "object" }, - "_Triceps_Brachii": { - "description": "Model triceps brachii", + "_Xi": { + "description": "Model Xi", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "triceps brachii", - "default": "triceps brachii", - "enum": [ - "triceps brachii" - ], + "const": "Xiphoid thalamic nucleus", + "default": "Xiphoid thalamic nucleus", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "Xi", + "default": "Xi", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_19111", - "default": "EMAPA_19111", - "enum": [ - "EMAPA_19111" - ], - "title": "Registry Identifier", + "id": { + "const": "560581559", + "default": "560581559", + "title": "Id", "type": "string" } }, - "title": "_Triceps_Brachii", + "title": "_Xi", "type": "object" }, - "_Trunk": { - "description": "Model trunk", + "_Xii": { + "description": "Model XII", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "trunk", - "default": "trunk", - "enum": [ - "trunk" - ], + "const": "Hypoglossal nucleus", + "default": "Hypoglossal nucleus", "title": "Name", "type": "string" }, - "registry": { - "default": { - "name": "Edinburgh Mouse Atlas Project", - "abbreviation": "EMAPA" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "XII", + "default": "XII", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "EMAPA_31857", - "default": "EMAPA_31857", - "enum": [ - "EMAPA_31857" - ], - "title": "Registry Identifier", + "id": { + "const": "773", + "default": "773", + "title": "Id", "type": "string" } }, - "title": "_Trunk", + "title": "_Xii", "type": "object" }, - "_Tymphany": { - "description": "Model Tymphany", + "_Xn": { + "description": "Model Xn", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Tymphany", - "default": "Tymphany", - "enum": [ - "Tymphany" - ], + "const": "vagus nerve", + "default": "vagus nerve", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "Xn", + "default": "Xn", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "917", + "default": "917", + "title": "Id", + "type": "string" } }, - "title": "_Tymphany", + "title": "_Xn", "type": "object" }, - "_Vieworks": { - "description": "Model Vieworks", + "_Y": { + "description": "Model y", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Vieworks", - "default": "Vieworks", - "enum": [ - "Vieworks" - ], + "const": "Nucleus y", + "default": "Nucleus y", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "y", + "default": "y", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "781", + "default": "781", + "title": "Id", + "type": "string" } }, - "title": "_Vieworks", + "title": "_Y", "type": "object" }, - "_Vortran": { - "description": "Model Vortran", + "_Zi": { + "description": "Model ZI", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Vortran", - "default": "Vortran", - "enum": [ - "Vortran" - ], + "const": "Zona incerta", + "default": "Zona incerta", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "ZI", + "default": "ZI", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "797", + "default": "797", + "title": "Id", + "type": "string" } }, - "title": "_Vortran", + "title": "_Zi", "type": "object" }, "aind_data_schema_models__organizations___Addgene": { @@ -14477,18 +60352,12 @@ "name": { "const": "Addgene", "default": "Addgene", - "enum": [ - "Addgene" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -14537,9 +60406,6 @@ "registry_identifier": { "const": "01nn1pw54", "default": "01nn1pw54", - "enum": [ - "01nn1pw54" - ], "title": "Registry Identifier", "type": "string" } @@ -14554,18 +60420,12 @@ "name": { "const": "Addgene", "default": "Addgene", - "enum": [ - "Addgene" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ADDGENE", "default": "ADDGENE", - "enum": [ - "ADDGENE" - ], "title": "Abbreviation", "type": "string" } @@ -14608,11 +60468,8 @@ "type": "string" }, "schema_version": { - "const": "1.1.3", - "default": "1.1.3", - "enum": [ - "1.1.3" - ], + "const": "1.1.4", + "default": "1.1.4", "title": "Schema Version", "type": "string" }, diff --git a/schemas/processing_schema.json b/schemas/processing_schema.json index 994630cd7..8e79e8d52 100644 --- a/schemas/processing_schema.json +++ b/schemas/processing_schema.json @@ -17,9 +17,17 @@ "title": "Process name" }, "software_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, "description": "Version of the software used", - "title": "Version", - "type": "string" + "title": "Version" }, "start_date_time": { "format": "date-time", @@ -32,9 +40,19 @@ "type": "string" }, "input_location": { - "description": "Path to data inputs", - "title": "Input location", - "type": "string" + "anyOf": [ + { + "type": "string" + }, + { + "items": { + "type": "string" + }, + "type": "array" + } + ], + "description": "Path(s) to data inputs", + "title": "Input location" }, "output_location": { "description": "Path to data outputs", @@ -61,6 +79,7 @@ }, "parameters": { "$ref": "#/$defs/AindGeneric", + "default": {}, "title": "Parameters" }, "outputs": { @@ -104,13 +123,11 @@ } }, "required": [ - "software_version", "start_date_time", "end_date_time", "input_location", "output_location", "code_url", - "parameters", "analyst_full_name", "description" ], @@ -126,9 +143,17 @@ "title": "Name" }, "software_version": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, "description": "Version of the software used", - "title": "Version", - "type": "string" + "title": "Version" }, "start_date_time": { "format": "date-time", @@ -141,9 +166,19 @@ "type": "string" }, "input_location": { - "description": "Path to data inputs", - "title": "Input location", - "type": "string" + "anyOf": [ + { + "type": "string" + }, + { + "items": { + "type": "string" + }, + "type": "array" + } + ], + "description": "Path(s) to data inputs", + "title": "Input location" }, "output_location": { "description": "Path to data outputs", @@ -170,6 +205,7 @@ }, "parameters": { "$ref": "#/$defs/AindGeneric", + "default": {}, "title": "Parameters" }, "outputs": { @@ -205,13 +241,11 @@ }, "required": [ "name", - "software_version", "start_date_time", "end_date_time", "input_location", "output_location", - "code_url", - "parameters" + "code_url" ], "title": "DataProcess", "type": "object" @@ -311,6 +345,7 @@ "Image cell classification", "Image cell quantification", "Image cell segmentation", + "Image cross-image alignment", "Image destriping", "Image flat-field correction", "Image importing", @@ -319,6 +354,10 @@ "Image tile alignment", "Image tile fusing", "Image tile projection", + "Image spot detection", + "Image spot spectral unmixing", + "Model evaluation", + "Model training", "Neuropil subtraction", "Other", "Simulation", @@ -521,11 +560,8 @@ "type": "string" }, "schema_version": { - "const": "1.1.3", - "default": "1.1.3", - "enum": [ - "1.1.3" - ], + "const": "1.1.4", + "default": "1.1.4", "title": "Schema Version", "type": "string" }, diff --git a/schemas/quality_control_schema.json b/schemas/quality_control_schema.json index eac64df53..497f8340d 100644 --- a/schemas/quality_control_schema.json +++ b/schemas/quality_control_schema.json @@ -130,6 +130,16 @@ "description": "Set to true for evaluations that are not critical to the overall state of QC for a data asset, this will allow individual metrics to fail while still passing the evaluation.", "title": "Allow metrics to fail", "type": "boolean" + }, + "latest_status": { + "$ref": "#/$defs/Status", + "default": null, + "title": "Evaluation status" + }, + "created": { + "format": "date-time", + "title": "Evaluation creation date", + "type": "string" } }, "required": [ @@ -259,18 +269,12 @@ "name": { "const": "Behavior", "default": "Behavior", - "enum": [ - "Behavior" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "behavior", "default": "behavior", - "enum": [ - "behavior" - ], "title": "Abbreviation", "type": "string" } @@ -285,18 +289,12 @@ "name": { "const": "Behavior videos", "default": "Behavior videos", - "enum": [ - "Behavior videos" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "behavior-videos", "default": "behavior-videos", - "enum": [ - "behavior-videos" - ], "title": "Abbreviation", "type": "string" } @@ -311,18 +309,12 @@ "name": { "const": "Confocal microscopy", "default": "Confocal microscopy", - "enum": [ - "Confocal microscopy" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "confocal", "default": "confocal", - "enum": [ - "confocal" - ], "title": "Abbreviation", "type": "string" } @@ -337,18 +329,12 @@ "name": { "const": "Extracellular electrophysiology", "default": "Extracellular electrophysiology", - "enum": [ - "Extracellular electrophysiology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ecephys", "default": "ecephys", - "enum": [ - "ecephys" - ], "title": "Abbreviation", "type": "string" } @@ -363,18 +349,12 @@ "name": { "const": "Electromyography", "default": "Electromyography", - "enum": [ - "Electromyography" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "EMG", "default": "EMG", - "enum": [ - "EMG" - ], "title": "Abbreviation", "type": "string" } @@ -389,18 +369,12 @@ "name": { "const": "Fiber photometry", "default": "Fiber photometry", - "enum": [ - "Fiber photometry" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "fib", "default": "fib", - "enum": [ - "fib" - ], "title": "Abbreviation", "type": "string" } @@ -415,18 +389,12 @@ "name": { "const": "Fluorescence micro-optical sectioning tomography", "default": "Fluorescence micro-optical sectioning tomography", - "enum": [ - "Fluorescence micro-optical sectioning tomography" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "fMOST", "default": "fMOST", - "enum": [ - "fMOST" - ], "title": "Abbreviation", "type": "string" } @@ -441,18 +409,12 @@ "name": { "const": "Intracellular electrophysiology", "default": "Intracellular electrophysiology", - "enum": [ - "Intracellular electrophysiology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "icephys", "default": "icephys", - "enum": [ - "icephys" - ], "title": "Abbreviation", "type": "string" } @@ -467,18 +429,12 @@ "name": { "const": "Intrinsic signal imaging", "default": "Intrinsic signal imaging", - "enum": [ - "Intrinsic signal imaging" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ISI", "default": "ISI", - "enum": [ - "ISI" - ], "title": "Abbreviation", "type": "string" } @@ -493,18 +449,12 @@ "name": { "const": "Multiplexed error-robust fluorescence in situ hybridization", "default": "Multiplexed error-robust fluorescence in situ hybridization", - "enum": [ - "Multiplexed error-robust fluorescence in situ hybridization" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "merfish", "default": "merfish", - "enum": [ - "merfish" - ], "title": "Abbreviation", "type": "string" } @@ -519,18 +469,12 @@ "name": { "const": "Magnetic resonance imaging", "default": "Magnetic resonance imaging", - "enum": [ - "Magnetic resonance imaging" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MRI", "default": "MRI", - "enum": [ - "MRI" - ], "title": "Abbreviation", "type": "string" } @@ -545,18 +489,12 @@ "name": { "const": "Planar optical physiology", "default": "Planar optical physiology", - "enum": [ - "Planar optical physiology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "pophys", "default": "pophys", - "enum": [ - "pophys" - ], "title": "Abbreviation", "type": "string" } @@ -571,18 +509,12 @@ "name": { "const": "Scanned line projection imaging", "default": "Scanned line projection imaging", - "enum": [ - "Scanned line projection imaging" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "slap", "default": "slap", - "enum": [ - "slap" - ], "title": "Abbreviation", "type": "string" } @@ -597,18 +529,12 @@ "name": { "const": "Selective plane illumination microscopy", "default": "Selective plane illumination microscopy", - "enum": [ - "Selective plane illumination microscopy" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "SPIM", "default": "SPIM", - "enum": [ - "SPIM" - ], "title": "Abbreviation", "type": "string" } @@ -627,11 +553,8 @@ "type": "string" }, "schema_version": { - "const": "1.2.1", - "default": "1.2.1", - "enum": [ - "1.2.1" - ], + "const": "1.2.2", + "default": "1.2.2", "title": "Schema Version", "type": "string" }, diff --git a/schemas/rig_schema.json b/schemas/rig_schema.json index e2cdb68f8..7c28568f6 100644 --- a/schemas/rig_schema.json +++ b/schemas/rig_schema.json @@ -14,9 +14,6 @@ "device_type": { "const": "Arena", "default": "Arena", - "enum": [ - "Arena" - ], "title": "Device Type", "type": "string" }, @@ -57,12 +54,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -79,9 +78,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -108,10 +109,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -126,6 +129,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -182,6 +186,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -200,6 +207,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -248,6 +258,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -257,6 +270,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -335,6 +351,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -344,6 +363,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -389,6 +411,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -608,9 +633,6 @@ "device_type": { "const": "Detector", "default": "Detector", - "enum": [ - "Detector" - ], "title": "Device Type", "type": "string" }, @@ -1223,9 +1245,6 @@ "device_type": { "const": "DAQ Device", "default": "DAQ Device", - "enum": [ - "DAQ Device" - ], "title": "Device Type", "type": "string" }, @@ -1419,9 +1438,6 @@ "device_type": { "const": "Detector", "default": "Detector", - "enum": [ - "Detector" - ], "title": "Device Type", "type": "string" }, @@ -1890,12 +1906,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -1912,9 +1930,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -1941,10 +1961,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -1959,6 +1981,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -2015,6 +2038,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -2033,6 +2059,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -2081,6 +2110,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -2090,6 +2122,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -2168,6 +2203,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -2177,6 +2215,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -2222,6 +2263,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -2322,9 +2366,6 @@ "device_type": { "const": "Digital micromirror device", "default": "Digital micromirror device", - "enum": [ - "Digital micromirror device" - ], "title": "Device Type", "type": "string" }, @@ -2365,12 +2406,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -2387,9 +2430,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -2416,10 +2461,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -2434,6 +2481,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -2490,6 +2538,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -2508,6 +2559,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -2556,6 +2610,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -2565,6 +2622,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -2643,6 +2703,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -2652,6 +2715,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -2697,6 +2763,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -2883,9 +2952,6 @@ "device_type": { "const": "Disc", "default": "Disc", - "enum": [ - "Disc" - ], "title": "Device Type", "type": "string" }, @@ -2926,12 +2992,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -2948,9 +3016,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -2977,10 +3047,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -2995,6 +3067,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -3051,6 +3124,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -3069,6 +3145,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -3117,6 +3196,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -3126,6 +3208,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -3204,6 +3289,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -3213,6 +3301,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -3258,6 +3349,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -3441,9 +3535,6 @@ "device_type": { "const": "Enclosure", "default": "Enclosure", - "enum": [ - "Enclosure" - ], "title": "Device Type", "type": "string" }, @@ -3484,12 +3575,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -3506,9 +3599,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -3535,10 +3630,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -3553,6 +3650,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -3609,6 +3707,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -3627,6 +3728,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -3675,6 +3779,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -3684,6 +3791,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -3762,6 +3872,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -3771,6 +3884,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -3816,6 +3932,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -3962,9 +4081,6 @@ "device_type": { "const": "Ephys probe", "default": "Ephys probe", - "enum": [ - "Ephys probe" - ], "title": "Device Type", "type": "string" }, @@ -4005,12 +4121,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -4027,9 +4145,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -4056,10 +4176,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -4074,6 +4196,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -4130,6 +4253,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -4148,6 +4274,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -4196,6 +4325,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -4205,6 +4337,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -4283,6 +4418,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -4292,6 +4430,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -4337,6 +4478,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -4487,9 +4631,6 @@ "device_type": { "const": "Fiber optic probe", "default": "Fiber optic probe", - "enum": [ - "Fiber optic probe" - ], "title": "Device Type", "type": "string" }, @@ -4530,12 +4671,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -4552,9 +4695,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -4581,10 +4726,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -4599,6 +4746,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -4655,6 +4803,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -4673,6 +4824,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -4721,6 +4875,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -4730,6 +4887,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -4808,6 +4968,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -4817,6 +4980,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -4862,6 +5028,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -5025,9 +5194,6 @@ "device_type": { "const": "Filter", "default": "Filter", - "enum": [ - "Filter" - ], "title": "Device Type", "type": "string" }, @@ -5316,9 +5482,6 @@ "device_type": { "const": "Harp device", "default": "Harp device", - "enum": [ - "Harp device" - ], "title": "Device Type", "type": "string" }, @@ -5599,9 +5762,6 @@ "device_type": { "const": "Headstage", "default": "Headstage", - "enum": [ - "Headstage" - ], "title": "Device Type", "type": "string" }, @@ -5642,12 +5802,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -5664,9 +5826,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -5693,10 +5857,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -5711,6 +5877,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -5767,6 +5934,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -5785,6 +5955,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -5833,6 +6006,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -5842,6 +6018,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -5920,6 +6099,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -5929,6 +6111,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -5974,6 +6159,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -6079,9 +6267,6 @@ "device_type": { "const": "Lamp", "default": "Lamp", - "enum": [ - "Lamp" - ], "title": "Device Type", "type": "string" }, @@ -6122,12 +6307,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -6144,9 +6331,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -6173,10 +6362,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -6191,6 +6382,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -6247,6 +6439,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -6265,6 +6460,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -6313,6 +6511,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -6322,6 +6523,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -6400,6 +6604,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -6409,6 +6616,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -6454,6 +6664,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -6589,9 +6802,6 @@ "device_type": { "const": "Laser", "default": "Laser", - "enum": [ - "Laser" - ], "title": "Device Type", "type": "string" }, @@ -6760,9 +6970,6 @@ "coupling_efficiency_unit": { "const": "percent", "default": "percent", - "enum": [ - "percent" - ], "title": "Coupling efficiency unit", "type": "string" }, @@ -6831,9 +7038,6 @@ "device_type": { "const": "Lens", "default": "Lens", - "enum": [ - "Lens" - ], "title": "Device Type", "type": "string" }, @@ -7064,6 +7268,7 @@ "description": "Type of lick sensor", "enum": [ "Capacitive", + "Conductive", "Piezoelectric" ], "title": "LickSensorType", @@ -7076,9 +7281,6 @@ "device_type": { "const": "Light emitting diode", "default": "Light emitting diode", - "enum": [ - "Light emitting diode" - ], "title": "Device Type", "type": "string" }, @@ -7224,9 +7426,6 @@ "device_type": { "const": "Manipulator", "default": "Manipulator", - "enum": [ - "Manipulator" - ], "title": "Device Type", "type": "string" }, @@ -7333,9 +7532,6 @@ "device_type": { "const": "Monitor", "default": "Monitor", - "enum": [ - "Monitor" - ], "title": "Device Type", "type": "string" }, @@ -7526,9 +7722,6 @@ "device_type": { "const": "Motorized stage", "default": "Motorized stage", - "enum": [ - "Motorized stage" - ], "title": "Device Type", "type": "string" }, @@ -7569,12 +7762,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -7591,9 +7786,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -7620,10 +7817,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -7638,6 +7837,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -7694,6 +7894,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -7712,6 +7915,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -7760,6 +7966,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -7769,6 +7978,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -7847,6 +8059,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -7856,6 +8071,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -7901,6 +8119,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -8019,9 +8240,6 @@ "device_type": { "const": "Neuropixels basestation", "default": "Neuropixels basestation", - "enum": [ - "Neuropixels basestation" - ], "title": "Device Type", "type": "string" }, @@ -8121,9 +8339,6 @@ "data_interface": { "const": "PXI", "default": "PXI", - "enum": [ - "PXI" - ], "title": "Data Interface", "type": "string" }, @@ -8201,9 +8416,6 @@ "device_type": { "const": "Objective", "default": "Objective", - "enum": [ - "Objective" - ], "title": "Device Type", "type": "string" }, @@ -8244,12 +8456,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -8266,9 +8480,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -8295,10 +8511,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -8313,6 +8531,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -8369,6 +8588,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -8387,6 +8609,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -8435,6 +8660,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -8444,6 +8672,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -8522,6 +8753,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -8531,6 +8765,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -8576,6 +8813,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -8715,9 +8955,6 @@ "device_type": { "const": "Olfactometer", "default": "Olfactometer", - "enum": [ - "Olfactometer" - ], "title": "Device Type", "type": "string" }, @@ -8975,9 +9212,6 @@ "device_type": { "const": "Open Ephys acquisition board", "default": "Open Ephys acquisition board", - "enum": [ - "Open Ephys acquisition board" - ], "title": "Device Type", "type": "string" }, @@ -9101,9 +9335,6 @@ "data_interface": { "const": "USB", "default": "USB", - "enum": [ - "USB" - ], "title": "Data Interface", "type": "string" }, @@ -9176,9 +9407,6 @@ "device_type": { "const": "Patch", "default": "Patch", - "enum": [ - "Patch" - ], "title": "Device Type", "type": "string" }, @@ -9219,12 +9447,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -9241,9 +9471,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -9270,10 +9502,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -9288,6 +9522,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -9344,6 +9579,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -9362,6 +9600,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -9410,6 +9651,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -9419,6 +9663,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -9497,6 +9744,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -9506,6 +9756,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -9551,6 +9804,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -9677,9 +9933,6 @@ "device_type": { "const": "Pockels cell", "default": "Pockels cell", - "enum": [ - "Pockels cell" - ], "title": "Device Type", "type": "string" }, @@ -9720,12 +9973,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -9742,9 +9997,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -9771,10 +10028,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -9789,6 +10048,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -9845,6 +10105,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -9863,6 +10126,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -9911,6 +10177,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -9920,6 +10189,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -9998,6 +10270,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -10007,6 +10282,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -10052,6 +10330,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -10209,9 +10490,6 @@ "device_type": { "const": "Polygonal scanner", "default": "Polygonal scanner", - "enum": [ - "Polygonal scanner" - ], "title": "Device Type", "type": "string" }, @@ -10252,12 +10530,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -10274,9 +10554,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -10303,10 +10585,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -10321,6 +10605,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -10377,6 +10662,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -10395,6 +10683,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -10443,6 +10734,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -10452,6 +10746,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -10530,6 +10827,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -10539,6 +10839,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -10584,6 +10887,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -10797,9 +11103,6 @@ "device_type": { "const": "Reward delivery", "default": "Reward delivery", - "enum": [ - "Reward delivery" - ], "title": "Device Type", "type": "string" }, @@ -10836,9 +11139,6 @@ "device_type": { "const": "Reward spout", "default": "Reward spout", - "enum": [ - "Reward spout" - ], "title": "Device Type", "type": "string" }, @@ -10879,12 +11179,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -10901,9 +11203,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -10930,10 +11234,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -10948,6 +11254,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -11004,6 +11311,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -11022,6 +11332,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -11070,6 +11383,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -11079,6 +11395,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -11157,6 +11476,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -11166,6 +11488,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -11211,6 +11536,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -11357,9 +11685,6 @@ "type": { "const": "rotation", "default": "rotation", - "enum": [ - "rotation" - ], "title": "Type", "type": "string" }, @@ -11474,9 +11799,6 @@ "device_type": { "const": "Speaker", "default": "Speaker", - "enum": [ - "Speaker" - ], "title": "Device Type", "type": "string" }, @@ -11593,7 +11915,6 @@ "type": "object" }, "SpeedUnit": { - "const": "rotations per minute", "description": "Enumeration of Speed Measurements", "enum": [ "rotations per minute" @@ -11628,9 +11949,6 @@ "type": { "const": "translation", "default": "translation", - "enum": [ - "translation" - ], "title": "Type", "type": "string" }, @@ -11664,9 +11982,6 @@ "device_type": { "const": "Treadmill", "default": "Treadmill", - "enum": [ - "Treadmill" - ], "title": "Device Type", "type": "string" }, @@ -11707,12 +12022,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -11729,9 +12046,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -11758,10 +12077,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -11776,6 +12097,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -11832,6 +12154,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -11850,6 +12175,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -11898,6 +12226,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -11907,6 +12238,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -11985,6 +12319,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -11994,6 +12331,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -12039,6 +12379,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -12170,9 +12513,6 @@ "device_type": { "const": "Tube", "default": "Tube", - "enum": [ - "Tube" - ], "title": "Device Type", "type": "string" }, @@ -12213,12 +12553,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -12235,9 +12577,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -12264,10 +12608,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -12282,6 +12628,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -12338,6 +12685,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -12356,6 +12706,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -12404,6 +12757,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -12413,6 +12769,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -12491,6 +12850,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -12500,6 +12862,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -12545,6 +12910,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -12680,7 +13048,6 @@ "type": "string" }, "VoltageUnit": { - "const": "Volts", "description": "Voltage units", "enum": [ "Volts" @@ -12695,9 +13062,6 @@ "device_type": { "const": "Wheel", "default": "Wheel", - "enum": [ - "Wheel" - ], "title": "Device Type", "type": "string" }, @@ -12738,12 +13102,14 @@ "Carl Zeiss": "#/$defs/_Carl_Zeiss", "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", "Chroma": "#/$defs/_Chroma", "Coherent Scientific": "#/$defs/_Coherent_Scientific", "Columbia University": "#/$defs/_Columbia_University", "Computar": "#/$defs/_Computar", "Conoptics": "#/$defs/_Conoptics", "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", "Dodotronic": "#/$defs/_Dodotronic", "Doric": "#/$defs/_Doric", "Ealing": "#/$defs/_Ealing", @@ -12760,9 +13126,11 @@ "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", "LG": "#/$defs/_Lg", "Leica": "#/$defs/_Leica", "LifeCanvas": "#/$defs/_Lifecanvas", @@ -12789,10 +13157,12 @@ "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -12807,6 +13177,7 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", @@ -12863,6 +13234,9 @@ { "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, { "$ref": "#/$defs/_Chroma" }, @@ -12881,6 +13255,9 @@ { "$ref": "#/$defs/_Custom" }, + { + "$ref": "#/$defs/_Digikey" + }, { "$ref": "#/$defs/_Dodotronic" }, @@ -12929,6 +13306,9 @@ { "$ref": "#/$defs/_Invitrogen" }, + { + "$ref": "#/$defs/_Item" + }, { "$ref": "#/$defs/_Jackson_Laboratory" }, @@ -12938,6 +13318,9 @@ { "$ref": "#/$defs/_Julabo" }, + { + "$ref": "#/$defs/_Kowa" + }, { "$ref": "#/$defs/_Lg" }, @@ -13016,6 +13399,9 @@ { "$ref": "#/$defs/_Oxxius" }, + { + "$ref": "#/$defs/_Placid_Industries" + }, { "$ref": "#/$defs/_Prizmatix" }, @@ -13025,6 +13411,9 @@ { "$ref": "#/$defs/_Raspberry_Pi" }, + { + "$ref": "#/$defs/_Same_Sky" + }, { "$ref": "#/$defs/_Sicgen" }, @@ -13070,6 +13459,9 @@ { "$ref": "#/$defs/_Thorlabs" }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, { "$ref": "#/$defs/_Tymphany" }, @@ -13268,18 +13660,12 @@ "name": { "const": "AA Opto Electronic", "default": "AA Opto Electronic", - "enum": [ - "AA Opto Electronic" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -13303,18 +13689,12 @@ "name": { "const": "Abcam", "default": "Abcam", - "enum": [ - "Abcam" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -13363,9 +13743,6 @@ "registry_identifier": { "const": "02e1wjw63", "default": "02e1wjw63", - "enum": [ - "02e1wjw63" - ], "title": "Registry Identifier", "type": "string" } @@ -13379,18 +13756,12 @@ "name": { "const": "Ailipu Technology Co", "default": "Ailipu Technology Co", - "enum": [ - "Ailipu Technology Co" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Ailipu", "default": "Ailipu", - "enum": [ - "Ailipu" - ], "title": "Abbreviation", "type": "string" }, @@ -13414,18 +13785,12 @@ "name": { "const": "Allen Institute", "default": "Allen Institute", - "enum": [ - "Allen Institute" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "AI", "default": "AI", - "enum": [ - "AI" - ], "title": "Abbreviation", "type": "string" }, @@ -13474,9 +13839,6 @@ "registry_identifier": { "const": "03cpe7c52", "default": "03cpe7c52", - "enum": [ - "03cpe7c52" - ], "title": "Registry Identifier", "type": "string" } @@ -13490,18 +13852,12 @@ "name": { "const": "Allen Institute for Brain Science", "default": "Allen Institute for Brain Science", - "enum": [ - "Allen Institute for Brain Science" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "AIBS", "default": "AIBS", - "enum": [ - "AIBS" - ], "title": "Abbreviation", "type": "string" }, @@ -13550,9 +13906,6 @@ "registry_identifier": { "const": "00dcv1019", "default": "00dcv1019", - "enum": [ - "00dcv1019" - ], "title": "Registry Identifier", "type": "string" } @@ -13566,18 +13919,12 @@ "name": { "const": "Allen Institute for Neural Dynamics", "default": "Allen Institute for Neural Dynamics", - "enum": [ - "Allen Institute for Neural Dynamics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "AIND", "default": "AIND", - "enum": [ - "AIND" - ], "title": "Abbreviation", "type": "string" }, @@ -13626,9 +13973,6 @@ "registry_identifier": { "const": "04szwah67", "default": "04szwah67", - "enum": [ - "04szwah67" - ], "title": "Registry Identifier", "type": "string" } @@ -13642,18 +13986,12 @@ "name": { "const": "Allied", "default": "Allied", - "enum": [ - "Allied" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -13677,18 +14015,12 @@ "name": { "const": "ams OSRAM", "default": "ams OSRAM", - "enum": [ - "ams OSRAM" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -13737,9 +14069,6 @@ "registry_identifier": { "const": "045d0h266", "default": "045d0h266", - "enum": [ - "045d0h266" - ], "title": "Registry Identifier", "type": "string" } @@ -13753,18 +14082,12 @@ "name": { "const": "Applied Scientific Instrumentation", "default": "Applied Scientific Instrumentation", - "enum": [ - "Applied Scientific Instrumentation" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ASI", "default": "ASI", - "enum": [ - "ASI" - ], "title": "Abbreviation", "type": "string" }, @@ -13788,18 +14111,12 @@ "name": { "const": "Arecont Vision Costar", "default": "Arecont Vision Costar", - "enum": [ - "Arecont Vision Costar" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -13823,18 +14140,12 @@ "name": { "const": "ASUS", "default": "ASUS", - "enum": [ - "ASUS" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -13883,9 +14194,6 @@ "registry_identifier": { "const": "00bxkz165", "default": "00bxkz165", - "enum": [ - "00bxkz165" - ], "title": "Registry Identifier", "type": "string" } @@ -13899,18 +14207,12 @@ "name": { "const": "Basler", "default": "Basler", - "enum": [ - "Basler" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -13935,18 +14237,12 @@ "name": { "const": "Behavior videos", "default": "Behavior videos", - "enum": [ - "Behavior videos" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "behavior-videos", "default": "behavior-videos", - "enum": [ - "behavior-videos" - ], "title": "Abbreviation", "type": "string" } @@ -13960,18 +14256,12 @@ "name": { "const": "Cambridge Technology", "default": "Cambridge Technology", - "enum": [ - "Cambridge Technology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -13995,18 +14285,12 @@ "whoami": { "const": 1168, "default": 1168, - "enum": [ - 1168 - ], "title": "Whoami", "type": "integer" }, "name": { "const": "Camera Controller", "default": "Camera Controller", - "enum": [ - "Camera Controller" - ], "title": "Name", "type": "string" } @@ -14020,18 +14304,12 @@ "name": { "const": "Carl Zeiss", "default": "Carl Zeiss", - "enum": [ - "Carl Zeiss" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -14080,9 +14358,6 @@ "registry_identifier": { "const": "01xk5xs43", "default": "01xk5xs43", - "enum": [ - "01xk5xs43" - ], "title": "Registry Identifier", "type": "string" } @@ -14096,18 +14371,12 @@ "name": { "const": "Champalimaud Foundation", "default": "Champalimaud Foundation", - "enum": [ - "Champalimaud Foundation" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Champalimaud", "default": "Champalimaud", - "enum": [ - "Champalimaud" - ], "title": "Abbreviation", "type": "string" }, @@ -14156,9 +14425,6 @@ "registry_identifier": { "const": "03g001n57", "default": "03g001n57", - "enum": [ - "03g001n57" - ], "title": "Registry Identifier", "type": "string" } @@ -14172,18 +14438,12 @@ "name": { "const": "Chan Zuckerberg Initiative", "default": "Chan Zuckerberg Initiative", - "enum": [ - "Chan Zuckerberg Initiative" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "CZI", "default": "CZI", - "enum": [ - "CZI" - ], "title": "Abbreviation", "type": "string" }, @@ -14232,9 +14492,6 @@ "registry_identifier": { "const": "02qenvm24", "default": "02qenvm24", - "enum": [ - "02qenvm24" - ], "title": "Registry Identifier", "type": "string" } @@ -14242,24 +14499,85 @@ "title": "_Chan_Zuckerberg_Initiative", "type": "object" }, + "_Charles_River_Laboratories": { + "description": "Model Charles River Laboratories", + "properties": { + "name": { + "const": "Charles River Laboratories", + "default": "Charles River Laboratories", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "CRL", + "default": "CRL", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03ndmsg87", + "default": "03ndmsg87", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Charles_River_Laboratories", + "type": "object" + }, "_Chroma": { "description": "Model Chroma", "properties": { "name": { "const": "Chroma", "default": "Chroma", - "enum": [ - "Chroma" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -14283,18 +14601,12 @@ "whoami": { "const": 1152, "default": 1152, - "enum": [ - 1152 - ], "title": "Whoami", "type": "integer" }, "name": { "const": "Clock Synchronizer", "default": "Clock Synchronizer", - "enum": [ - "Clock Synchronizer" - ], "title": "Name", "type": "string" } @@ -14308,18 +14620,12 @@ "name": { "const": "Coherent Scientific", "default": "Coherent Scientific", - "enum": [ - "Coherent Scientific" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -14368,9 +14674,6 @@ "registry_identifier": { "const": "031tysd23", "default": "031tysd23", - "enum": [ - "031tysd23" - ], "title": "Registry Identifier", "type": "string" } @@ -14384,18 +14687,12 @@ "name": { "const": "Columbia University", "default": "Columbia University", - "enum": [ - "Columbia University" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Columbia", "default": "Columbia", - "enum": [ - "Columbia" - ], "title": "Abbreviation", "type": "string" }, @@ -14444,9 +14741,6 @@ "registry_identifier": { "const": "00hj8s172", "default": "00hj8s172", - "enum": [ - "00hj8s172" - ], "title": "Registry Identifier", "type": "string" } @@ -14460,18 +14754,12 @@ "name": { "const": "Computar", "default": "Computar", - "enum": [ - "Computar" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -14496,18 +14784,12 @@ "name": { "const": "Confocal microscopy", "default": "Confocal microscopy", - "enum": [ - "Confocal microscopy" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "confocal", "default": "confocal", - "enum": [ - "confocal" - ], "title": "Abbreviation", "type": "string" } @@ -14521,18 +14803,12 @@ "name": { "const": "Conoptics", "default": "Conoptics", - "enum": [ - "Conoptics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -14556,18 +14832,12 @@ "name": { "const": "Custom", "default": "Custom", - "enum": [ - "Custom" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -14591,18 +14861,12 @@ "whoami": { "const": 1403, "default": 1403, - "enum": [ - 1403 - ], "title": "Whoami", "type": "integer" }, "name": { "const": "Cuttlefish", "default": "Cuttlefish", - "enum": [ - "Cuttlefish" - ], "title": "Name", "type": "string" } @@ -14610,24 +14874,47 @@ "title": "_Cuttlefish", "type": "object" }, + "_Digikey": { + "description": "Model DigiKey", + "properties": { + "name": { + "const": "DigiKey", + "default": "DigiKey", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Digikey", + "type": "object" + }, "_Dodotronic": { "description": "Model Dodotronic", "properties": { "name": { "const": "Dodotronic", "default": "Dodotronic", - "enum": [ - "Dodotronic" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -14651,18 +14938,12 @@ "name": { "const": "Doric", "default": "Doric", - "enum": [ - "Doric" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -14711,9 +14992,6 @@ "registry_identifier": { "const": "059n53q30", "default": "059n53q30", - "enum": [ - "059n53q30" - ], "title": "Registry Identifier", "type": "string" } @@ -14727,18 +15005,12 @@ "name": { "const": "Ealing", "default": "Ealing", - "enum": [ - "Ealing" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -14763,18 +15035,12 @@ "name": { "const": "Extracellular electrophysiology", "default": "Extracellular electrophysiology", - "enum": [ - "Extracellular electrophysiology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ecephys", "default": "ecephys", - "enum": [ - "ecephys" - ], "title": "Abbreviation", "type": "string" } @@ -14788,18 +15054,12 @@ "name": { "const": "Edmund Optics", "default": "Edmund Optics", - "enum": [ - "Edmund Optics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -14848,9 +15108,6 @@ "registry_identifier": { "const": "01j1gwp17", "default": "01j1gwp17", - "enum": [ - "01j1gwp17" - ], "title": "Registry Identifier", "type": "string" } @@ -14865,18 +15122,12 @@ "name": { "const": "Edinburgh Mouse Atlas Project", "default": "Edinburgh Mouse Atlas Project", - "enum": [ - "Edinburgh Mouse Atlas Project" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "EMAPA", "default": "EMAPA", - "enum": [ - "EMAPA" - ], "title": "Abbreviation", "type": "string" } @@ -14891,18 +15142,12 @@ "name": { "const": "Electromyography", "default": "Electromyography", - "enum": [ - "Electromyography" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "EMG", "default": "EMG", - "enum": [ - "EMG" - ], "title": "Abbreviation", "type": "string" } @@ -14916,18 +15161,12 @@ "name": { "const": "Emory University", "default": "Emory University", - "enum": [ - "Emory University" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Emory", "default": "Emory", - "enum": [ - "Emory" - ], "title": "Abbreviation", "type": "string" }, @@ -14976,9 +15215,6 @@ "registry_identifier": { "const": "03czfpz43", "default": "03czfpz43", - "enum": [ - "03czfpz43" - ], "title": "Registry Identifier", "type": "string" } @@ -14992,18 +15228,12 @@ "name": { "const": "Euresys", "default": "Euresys", - "enum": [ - "Euresys" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -15028,18 +15258,12 @@ "name": { "const": "Fiber photometry", "default": "Fiber photometry", - "enum": [ - "Fiber photometry" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "fib", "default": "fib", - "enum": [ - "fib" - ], "title": "Abbreviation", "type": "string" } @@ -15054,18 +15278,12 @@ "name": { "const": "Fluorescence micro-optical sectioning tomography", "default": "Fluorescence micro-optical sectioning tomography", - "enum": [ - "Fluorescence micro-optical sectioning tomography" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "fMOST", "default": "fMOST", - "enum": [ - "fMOST" - ], "title": "Abbreviation", "type": "string" } @@ -15079,18 +15297,12 @@ "name": { "const": "Fujinon", "default": "Fujinon", - "enum": [ - "Fujinon" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -15114,18 +15326,12 @@ "whoami": { "const": 0, "default": 0, - "enum": [ - 0 - ], "title": "Whoami", "type": "integer" }, "name": { "const": "Generic Harp Device", "default": "Generic Harp Device", - "enum": [ - "Generic Harp Device" - ], "title": "Name", "type": "string" } @@ -15139,18 +15345,12 @@ "name": { "const": "Hamamatsu", "default": "Hamamatsu", - "enum": [ - "Hamamatsu" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -15199,9 +15399,6 @@ "registry_identifier": { "const": "03natb733", "default": "03natb733", - "enum": [ - "03natb733" - ], "title": "Registry Identifier", "type": "string" } @@ -15215,18 +15412,12 @@ "name": { "const": "Hamilton", "default": "Hamilton", - "enum": [ - "Hamilton" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -15250,18 +15441,12 @@ "name": { "const": "Huazhong University of Science and Technology", "default": "Huazhong University of Science and Technology", - "enum": [ - "Huazhong University of Science and Technology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "HUST", "default": "HUST", - "enum": [ - "HUST" - ], "title": "Abbreviation", "type": "string" }, @@ -15310,9 +15495,6 @@ "registry_identifier": { "const": "00p991c53", "default": "00p991c53", - "enum": [ - "00p991c53" - ], "title": "Registry Identifier", "type": "string" } @@ -15327,18 +15509,12 @@ "name": { "const": "Intracellular electrophysiology", "default": "Intracellular electrophysiology", - "enum": [ - "Intracellular electrophysiology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "icephys", "default": "icephys", - "enum": [ - "icephys" - ], "title": "Abbreviation", "type": "string" } @@ -15352,18 +15528,12 @@ "name": { "const": "Infinity Photo-Optical", "default": "Infinity Photo-Optical", - "enum": [ - "Infinity Photo-Optical" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -15387,18 +15557,12 @@ "whoami": { "const": 1106, "default": 1106, - "enum": [ - 1106 - ], "title": "Whoami", "type": "integer" }, "name": { "const": "Input Expander", "default": "Input Expander", - "enum": [ - "Input Expander" - ], "title": "Name", "type": "string" } @@ -15412,18 +15576,12 @@ "name": { "const": "Integrated DNA Technologies", "default": "Integrated DNA Technologies", - "enum": [ - "Integrated DNA Technologies" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "IDT", "default": "IDT", - "enum": [ - "IDT" - ], "title": "Abbreviation", "type": "string" }, @@ -15472,9 +15630,6 @@ "registry_identifier": { "const": "009jvpf03", "default": "009jvpf03", - "enum": [ - "009jvpf03" - ], "title": "Registry Identifier", "type": "string" } @@ -15488,18 +15643,12 @@ "name": { "const": "Interuniversity Microelectronics Center", "default": "Interuniversity Microelectronics Center", - "enum": [ - "Interuniversity Microelectronics Center" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "IMEC", "default": "IMEC", - "enum": [ - "IMEC" - ], "title": "Abbreviation", "type": "string" }, @@ -15548,9 +15697,6 @@ "registry_identifier": { "const": "02kcbn207", "default": "02kcbn207", - "enum": [ - "02kcbn207" - ], "title": "Registry Identifier", "type": "string" } @@ -15564,18 +15710,12 @@ "name": { "const": "Invitrogen", "default": "Invitrogen", - "enum": [ - "Invitrogen" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -15624,9 +15764,6 @@ "registry_identifier": { "const": "03x1ewr52", "default": "03x1ewr52", - "enum": [ - "03x1ewr52" - ], "title": "Registry Identifier", "type": "string" } @@ -15640,18 +15777,12 @@ "name": { "const": "IR Robot Co", "default": "IR Robot Co", - "enum": [ - "IR Robot Co" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -15676,18 +15807,12 @@ "name": { "const": "Intrinsic signal imaging", "default": "Intrinsic signal imaging", - "enum": [ - "Intrinsic signal imaging" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ISI", "default": "ISI", - "enum": [ - "ISI" - ], "title": "Abbreviation", "type": "string" } @@ -15701,18 +15826,12 @@ "name": { "const": "ISL Products International", "default": "ISL Products International", - "enum": [ - "ISL Products International" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ISL", "default": "ISL", - "enum": [ - "ISL" - ], "title": "Abbreviation", "type": "string" }, @@ -15730,24 +15849,47 @@ "title": "_Isl_Products_International", "type": "object" }, + "_Item": { + "description": "Model Item", + "properties": { + "name": { + "const": "Item", + "default": "Item", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Item", + "type": "object" + }, "_Jackson_Laboratory": { "description": "Model Jackson Laboratory", "properties": { "name": { "const": "Jackson Laboratory", "default": "Jackson Laboratory", - "enum": [ - "Jackson Laboratory" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "JAX", "default": "JAX", - "enum": [ - "JAX" - ], "title": "Abbreviation", "type": "string" }, @@ -15796,9 +15938,6 @@ "registry_identifier": { "const": "021sy4w91", "default": "021sy4w91", - "enum": [ - "021sy4w91" - ], "title": "Registry Identifier", "type": "string" } @@ -15812,18 +15951,12 @@ "name": { "const": "Janelia Research Campus", "default": "Janelia Research Campus", - "enum": [ - "Janelia Research Campus" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Janelia", "default": "Janelia", - "enum": [ - "Janelia" - ], "title": "Abbreviation", "type": "string" }, @@ -15872,9 +16005,6 @@ "registry_identifier": { "const": "013sk6x84", "default": "013sk6x84", - "enum": [ - "013sk6x84" - ], "title": "Registry Identifier", "type": "string" } @@ -15888,18 +16018,12 @@ "name": { "const": "Julabo", "default": "Julabo", - "enum": [ - "Julabo" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -15917,24 +16041,85 @@ "title": "_Julabo", "type": "object" }, + "_Kowa": { + "description": "Model Kowa", + "properties": { + "name": { + "const": "Kowa", + "default": "Kowa", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03zbwg482", + "default": "03zbwg482", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Kowa", + "type": "object" + }, "_Leica": { "description": "Model Leica", "properties": { "name": { "const": "Leica", "default": "Leica", - "enum": [ - "Leica" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -15958,18 +16143,12 @@ "name": { "const": "LG", "default": "LG", - "enum": [ - "LG" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -16018,9 +16197,6 @@ "registry_identifier": { "const": "02b948n83", "default": "02b948n83", - "enum": [ - "02b948n83" - ], "title": "Registry Identifier", "type": "string" } @@ -16034,18 +16210,12 @@ "whoami": { "const": 1400, "default": 1400, - "enum": [ - 1400 - ], "title": "Whoami", "type": "integer" }, "name": { "const": "Lickety Split", "default": "Lickety Split", - "enum": [ - "Lickety Split" - ], "title": "Name", "type": "string" } @@ -16059,18 +16229,12 @@ "name": { "const": "LifeCanvas", "default": "LifeCanvas", - "enum": [ - "LifeCanvas" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -16094,18 +16258,12 @@ "whoami": { "const": 1232, "default": 1232, - "enum": [ - 1232 - ], "title": "Whoami", "type": "integer" }, "name": { "const": "Load Cells", "default": "Load Cells", - "enum": [ - "Load Cells" - ], "title": "Name", "type": "string" } @@ -16119,18 +16277,12 @@ "name": { "const": "Lumen Dynamics", "default": "Lumen Dynamics", - "enum": [ - "Lumen Dynamics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -16154,18 +16306,12 @@ "name": { "const": "MBF Bioscience", "default": "MBF Bioscience", - "enum": [ - "MBF Bioscience" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MBF", "default": "MBF", - "enum": [ - "MBF" - ], "title": "Abbreviation", "type": "string" }, @@ -16214,9 +16360,6 @@ "registry_identifier": { "const": "02zynam48", "default": "02zynam48", - "enum": [ - "02zynam48" - ], "title": "Registry Identifier", "type": "string" } @@ -16230,18 +16373,12 @@ "name": { "const": "Meadowlark Optics", "default": "Meadowlark Optics", - "enum": [ - "Meadowlark Optics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -16290,9 +16427,6 @@ "registry_identifier": { "const": "00n8qbq54", "default": "00n8qbq54", - "enum": [ - "00n8qbq54" - ], "title": "Registry Identifier", "type": "string" } @@ -16307,18 +16441,12 @@ "name": { "const": "Multiplexed error-robust fluorescence in situ hybridization", "default": "Multiplexed error-robust fluorescence in situ hybridization", - "enum": [ - "Multiplexed error-robust fluorescence in situ hybridization" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "merfish", "default": "merfish", - "enum": [ - "merfish" - ], "title": "Abbreviation", "type": "string" } @@ -16333,18 +16461,12 @@ "name": { "const": "Mouse Genome Informatics", "default": "Mouse Genome Informatics", - "enum": [ - "Mouse Genome Informatics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MGI", "default": "MGI", - "enum": [ - "MGI" - ], "title": "Abbreviation", "type": "string" } @@ -16358,18 +16480,12 @@ "name": { "const": "Michael J. Fox Foundation for Parkinson's Research", "default": "Michael J. Fox Foundation for Parkinson's Research", - "enum": [ - "Michael J. Fox Foundation for Parkinson's Research" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MJFF", "default": "MJFF", - "enum": [ - "MJFF" - ], "title": "Abbreviation", "type": "string" }, @@ -16418,9 +16534,6 @@ "registry_identifier": { "const": "03arq3225", "default": "03arq3225", - "enum": [ - "03arq3225" - ], "title": "Registry Identifier", "type": "string" } @@ -16434,18 +16547,12 @@ "name": { "const": "Midwest Optical Systems, Inc.", "default": "Midwest Optical Systems, Inc.", - "enum": [ - "Midwest Optical Systems, Inc." - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MidOpt", "default": "MidOpt", - "enum": [ - "MidOpt" - ], "title": "Abbreviation", "type": "string" }, @@ -16469,18 +16576,12 @@ "name": { "const": "Mitutuyo", "default": "Mitutuyo", - "enum": [ - "Mitutuyo" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -16504,18 +16605,12 @@ "name": { "const": "MKS Newport", "default": "MKS Newport", - "enum": [ - "MKS Newport" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -16564,9 +16659,6 @@ "registry_identifier": { "const": "00k17f049", "default": "00k17f049", - "enum": [ - "00k17f049" - ], "title": "Registry Identifier", "type": "string" } @@ -16580,18 +16672,12 @@ "name": { "const": "MPI", "default": "MPI", - "enum": [ - "MPI" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MPI", "default": "MPI", - "enum": [ - "MPI" - ], "title": "Abbreviation", "type": "string" }, @@ -16616,18 +16702,12 @@ "name": { "const": "Magnetic resonance imaging", "default": "Magnetic resonance imaging", - "enum": [ - "Magnetic resonance imaging" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MRI", "default": "MRI", - "enum": [ - "MRI" - ], "title": "Abbreviation", "type": "string" } @@ -16641,18 +16721,12 @@ "name": { "const": "National Center for Complementary and Integrative Health", "default": "National Center for Complementary and Integrative Health", - "enum": [ - "National Center for Complementary and Integrative Health" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NCCIH", "default": "NCCIH", - "enum": [ - "NCCIH" - ], "title": "Abbreviation", "type": "string" }, @@ -16701,9 +16775,6 @@ "registry_identifier": { "const": "00190t495", "default": "00190t495", - "enum": [ - "00190t495" - ], "title": "Registry Identifier", "type": "string" } @@ -16717,18 +16788,12 @@ "name": { "const": "National Institute of Mental Health", "default": "National Institute of Mental Health", - "enum": [ - "National Institute of Mental Health" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NIMH", "default": "NIMH", - "enum": [ - "NIMH" - ], "title": "Abbreviation", "type": "string" }, @@ -16777,9 +16842,6 @@ "registry_identifier": { "const": "04xeg9z08", "default": "04xeg9z08", - "enum": [ - "04xeg9z08" - ], "title": "Registry Identifier", "type": "string" } @@ -16793,18 +16855,12 @@ "name": { "const": "National Institute of Neurological Disorders and Stroke", "default": "National Institute of Neurological Disorders and Stroke", - "enum": [ - "National Institute of Neurological Disorders and Stroke" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NINDS", "default": "NINDS", - "enum": [ - "NINDS" - ], "title": "Abbreviation", "type": "string" }, @@ -16853,9 +16909,6 @@ "registry_identifier": { "const": "01s5ya894", "default": "01s5ya894", - "enum": [ - "01s5ya894" - ], "title": "Registry Identifier", "type": "string" } @@ -16869,18 +16922,12 @@ "name": { "const": "National Instruments", "default": "National Instruments", - "enum": [ - "National Instruments" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -16929,9 +16976,6 @@ "registry_identifier": { "const": "026exqw73", "default": "026exqw73", - "enum": [ - "026exqw73" - ], "title": "Registry Identifier", "type": "string" } @@ -16945,18 +16989,12 @@ "name": { "const": "Navitar", "default": "Navitar", - "enum": [ - "Navitar" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -16981,18 +17019,12 @@ "name": { "const": "National Center for Biotechnology Information", "default": "National Center for Biotechnology Information", - "enum": [ - "National Center for Biotechnology Information" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NCBI", "default": "NCBI", - "enum": [ - "NCBI" - ], "title": "Abbreviation", "type": "string" } @@ -17006,18 +17038,12 @@ "name": { "const": "Neurophotometrics", "default": "Neurophotometrics", - "enum": [ - "Neurophotometrics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -17041,18 +17067,12 @@ "name": { "const": "New Scale Technologies", "default": "New Scale Technologies", - "enum": [ - "New Scale Technologies" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -17076,18 +17096,12 @@ "name": { "const": "New York University", "default": "New York University", - "enum": [ - "New York University" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NYU", "default": "NYU", - "enum": [ - "NYU" - ], "title": "Abbreviation", "type": "string" }, @@ -17136,9 +17150,6 @@ "registry_identifier": { "const": "0190ak572", "default": "0190ak572", - "enum": [ - "0190ak572" - ], "title": "Registry Identifier", "type": "string" } @@ -17152,18 +17163,12 @@ "name": { "const": "Nikon", "default": "Nikon", - "enum": [ - "Nikon" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -17212,9 +17217,6 @@ "registry_identifier": { "const": "0280y9h11", "default": "0280y9h11", - "enum": [ - "0280y9h11" - ], "title": "Registry Identifier", "type": "string" } @@ -17228,18 +17230,12 @@ "name": { "const": "NResearch Inc", "default": "NResearch Inc", - "enum": [ - "NResearch Inc" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -17263,18 +17259,12 @@ "whoami": { "const": 1140, "default": 1140, - "enum": [ - 1140 - ], "title": "Whoami", "type": "integer" }, "name": { "const": "Olfactometer", "default": "Olfactometer", - "enum": [ - "Olfactometer" - ], "title": "Name", "type": "string" } @@ -17288,18 +17278,12 @@ "name": { "const": "Olympus", "default": "Olympus", - "enum": [ - "Olympus" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -17348,9 +17332,6 @@ "registry_identifier": { "const": "02vcdte90", "default": "02vcdte90", - "enum": [ - "02vcdte90" - ], "title": "Registry Identifier", "type": "string" } @@ -17364,18 +17345,12 @@ "name": { "const": "Open Ephys Production Site", "default": "Open Ephys Production Site", - "enum": [ - "Open Ephys Production Site" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "OEPS", "default": "OEPS", - "enum": [ - "OEPS" - ], "title": "Abbreviation", "type": "string" }, @@ -17424,9 +17399,6 @@ "registry_identifier": { "const": "007rkz355", "default": "007rkz355", - "enum": [ - "007rkz355" - ], "title": "Registry Identifier", "type": "string" } @@ -17440,18 +17412,12 @@ "name": { "const": "Optotune", "default": "Optotune", - "enum": [ - "Optotune" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -17476,18 +17442,12 @@ "name": { "const": "Open Researcher and Contributor ID", "default": "Open Researcher and Contributor ID", - "enum": [ - "Open Researcher and Contributor ID" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ORCID", "default": "ORCID", - "enum": [ - "ORCID" - ], "title": "Abbreviation", "type": "string" } @@ -17501,18 +17461,12 @@ "name": { "const": "Other", "default": "Other", - "enum": [ - "Other" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -17536,18 +17490,12 @@ "name": { "const": "Oxxius", "default": "Oxxius", - "enum": [ - "Oxxius" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -17565,6 +17513,35 @@ "title": "_Oxxius", "type": "object" }, + "_Placid_Industries": { + "description": "Model Placid Industries", + "properties": { + "name": { + "const": "Placid Industries", + "default": "Placid Industries", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Placid_Industries", + "type": "object" + }, "_Pophys": { "additionalProperties": false, "description": "Model pophys", @@ -17572,18 +17549,12 @@ "name": { "const": "Planar optical physiology", "default": "Planar optical physiology", - "enum": [ - "Planar optical physiology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "pophys", "default": "pophys", - "enum": [ - "pophys" - ], "title": "Abbreviation", "type": "string" } @@ -17597,18 +17568,12 @@ "name": { "const": "Prizmatix", "default": "Prizmatix", - "enum": [ - "Prizmatix" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -17632,18 +17597,12 @@ "name": { "const": "Quantifi", "default": "Quantifi", - "enum": [ - "Quantifi" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -17667,18 +17626,12 @@ "name": { "const": "Raspberry Pi", "default": "Raspberry Pi", - "enum": [ - "Raspberry Pi" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -17703,18 +17656,12 @@ "name": { "const": "Research Organization Registry", "default": "Research Organization Registry", - "enum": [ - "Research Organization Registry" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ROR", "default": "ROR", - "enum": [ - "ROR" - ], "title": "Abbreviation", "type": "string" } @@ -17729,18 +17676,12 @@ "name": { "const": "Research Resource Identifiers", "default": "Research Resource Identifiers", - "enum": [ - "Research Resource Identifiers" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "RRID", "default": "RRID", - "enum": [ - "RRID" - ], "title": "Abbreviation", "type": "string" } @@ -17748,24 +17689,47 @@ "title": "_Rrid", "type": "object" }, + "_Same_Sky": { + "description": "Model Same Sky", + "properties": { + "name": { + "const": "Same Sky", + "default": "Same Sky", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Same_Sky", + "type": "object" + }, "_Schneider_Kreuznach": { "description": "Model Schneider-Kreuznach", "properties": { "name": { "const": "Schneider-Kreuznach", "default": "Schneider-Kreuznach", - "enum": [ - "Schneider-Kreuznach" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -17789,18 +17753,12 @@ "name": { "const": "Second Order Effects", "default": "Second Order Effects", - "enum": [ - "Second Order Effects" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -17824,18 +17782,12 @@ "name": { "const": "Semrock", "default": "Semrock", - "enum": [ - "Semrock" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -17859,18 +17811,12 @@ "name": { "const": "SICGEN", "default": "SICGEN", - "enum": [ - "SICGEN" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -17894,18 +17840,12 @@ "name": { "const": "Sigma-Aldrich", "default": "Sigma-Aldrich", - "enum": [ - "Sigma-Aldrich" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -17929,18 +17869,12 @@ "name": { "const": "Simons Foundation", "default": "Simons Foundation", - "enum": [ - "Simons Foundation" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -17989,9 +17923,6 @@ "registry_identifier": { "const": "01cmst727", "default": "01cmst727", - "enum": [ - "01cmst727" - ], "title": "Registry Identifier", "type": "string" } @@ -18006,18 +17937,12 @@ "name": { "const": "Scanned line projection imaging", "default": "Scanned line projection imaging", - "enum": [ - "Scanned line projection imaging" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "slap", "default": "slap", - "enum": [ - "slap" - ], "title": "Abbreviation", "type": "string" } @@ -18031,18 +17956,12 @@ "whoami": { "const": 1401, "default": 1401, - "enum": [ - 1401 - ], "title": "Whoami", "type": "integer" }, "name": { "const": "Sniff Detector", "default": "Sniff Detector", - "enum": [ - "Sniff Detector" - ], "title": "Name", "type": "string" } @@ -18056,18 +17975,12 @@ "whoami": { "const": 1280, "default": 1280, - "enum": [ - 1280 - ], "title": "Whoami", "type": "integer" }, "name": { "const": "Sound Card", "default": "Sound Card", - "enum": [ - "Sound Card" - ], "title": "Name", "type": "string" } @@ -18082,18 +17995,12 @@ "name": { "const": "Selective plane illumination microscopy", "default": "Selective plane illumination microscopy", - "enum": [ - "Selective plane illumination microscopy" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "SPIM", "default": "SPIM", - "enum": [ - "SPIM" - ], "title": "Abbreviation", "type": "string" } @@ -18107,18 +18014,12 @@ "name": { "const": "Spinnaker", "default": "Spinnaker", - "enum": [ - "Spinnaker" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -18142,18 +18043,12 @@ "whoami": { "const": 1130, "default": 1130, - "enum": [ - 1130 - ], "title": "Whoami", "type": "integer" }, "name": { "const": "Stepper Driver", "default": "Stepper Driver", - "enum": [ - "Stepper Driver" - ], "title": "Name", "type": "string" } @@ -18167,18 +18062,12 @@ "whoami": { "const": 1104, "default": 1104, - "enum": [ - 1104 - ], "title": "Whoami", "type": "integer" }, "name": { "const": "Synchronizer", "default": "Synchronizer", - "enum": [ - "Synchronizer" - ], "title": "Name", "type": "string" } @@ -18192,18 +18081,12 @@ "name": { "const": "Tamron", "default": "Tamron", - "enum": [ - "Tamron" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -18227,18 +18110,12 @@ "name": { "const": "Technical Manufacturing Corporation", "default": "Technical Manufacturing Corporation", - "enum": [ - "Technical Manufacturing Corporation" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "TMC", "default": "TMC", - "enum": [ - "TMC" - ], "title": "Abbreviation", "type": "string" }, @@ -18262,18 +18139,12 @@ "name": { "const": "Teledyne FLIR", "default": "Teledyne FLIR", - "enum": [ - "Teledyne FLIR" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "FLIR", "default": "FLIR", - "enum": [ - "FLIR" - ], "title": "Abbreviation", "type": "string" }, @@ -18322,9 +18193,6 @@ "registry_identifier": { "const": "01j1gwp17", "default": "01j1gwp17", - "enum": [ - "01j1gwp17" - ], "title": "Registry Identifier", "type": "string" } @@ -18338,18 +18206,12 @@ "name": { "const": "Templeton World Charity Foundation", "default": "Templeton World Charity Foundation", - "enum": [ - "Templeton World Charity Foundation" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "TWCF", "default": "TWCF", - "enum": [ - "TWCF" - ], "title": "Abbreviation", "type": "string" }, @@ -18398,9 +18260,6 @@ "registry_identifier": { "const": "00x0z1472", "default": "00x0z1472", - "enum": [ - "00x0z1472" - ], "title": "Registry Identifier", "type": "string" } @@ -18414,18 +18273,12 @@ "name": { "const": "The Imaging Source", "default": "The Imaging Source", - "enum": [ - "The Imaging Source" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -18449,18 +18302,12 @@ "name": { "const": "The Lee Company", "default": "The Lee Company", - "enum": [ - "The Lee Company" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -18484,18 +18331,12 @@ "name": { "const": "Thermo Fisher Scientific", "default": "Thermo Fisher Scientific", - "enum": [ - "Thermo Fisher Scientific" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -18544,9 +18385,6 @@ "registry_identifier": { "const": "03x1ewr52", "default": "03x1ewr52", - "enum": [ - "03x1ewr52" - ], "title": "Registry Identifier", "type": "string" } @@ -18560,18 +18398,12 @@ "name": { "const": "Thorlabs", "default": "Thorlabs", - "enum": [ - "Thorlabs" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -18620,9 +18452,6 @@ "registry_identifier": { "const": "04gsnvb07", "default": "04gsnvb07", - "enum": [ - "04gsnvb07" - ], "title": "Registry Identifier", "type": "string" } @@ -18636,18 +18465,12 @@ "whoami": { "const": 1154, "default": 1154, - "enum": [ - 1154 - ], "title": "Whoami", "type": "integer" }, "name": { "const": "Timestamp Generator Gen 1", "default": "Timestamp Generator Gen 1", - "enum": [ - "Timestamp Generator Gen 1" - ], "title": "Name", "type": "string" } @@ -18661,18 +18484,12 @@ "whoami": { "const": 1158, "default": 1158, - "enum": [ - 1158 - ], "title": "Whoami", "type": "integer" }, "name": { "const": "Timestamp Generator Gen 3", "default": "Timestamp Generator Gen 3", - "enum": [ - "Timestamp Generator Gen 3" - ], "title": "Name", "type": "string" } @@ -18680,24 +18497,47 @@ "title": "_Timestamp_Generator_Gen_3", "type": "object" }, + "_Transducer_Techniques": { + "description": "Model Transducer Techniques", + "properties": { + "name": { + "const": "Transducer Techniques", + "default": "Transducer Techniques", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Transducer_Techniques", + "type": "object" + }, "_Treadmill": { "description": "Model Treadmill", "properties": { "whoami": { "const": 1402, "default": 1402, - "enum": [ - 1402 - ], "title": "Whoami", "type": "integer" }, "name": { "const": "Treadmill", "default": "Treadmill", - "enum": [ - "Treadmill" - ], "title": "Name", "type": "string" } @@ -18711,18 +18551,12 @@ "name": { "const": "Tymphany", "default": "Tymphany", - "enum": [ - "Tymphany" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -18746,18 +18580,12 @@ "name": { "const": "Vieworks", "default": "Vieworks", - "enum": [ - "Vieworks" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -18781,18 +18609,12 @@ "name": { "const": "Vortran", "default": "Vortran", - "enum": [ - "Vortran" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -18816,18 +18638,12 @@ "whoami": { "const": 1216, "default": 1216, - "enum": [ - 1216 - ], "title": "Whoami", "type": "integer" }, "name": { "const": "Behavior", "default": "Behavior", - "enum": [ - "Behavior" - ], "title": "Name", "type": "string" } @@ -18842,18 +18658,12 @@ "name": { "const": "Behavior", "default": "Behavior", - "enum": [ - "Behavior" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "behavior", "default": "behavior", - "enum": [ - "behavior" - ], "title": "Abbreviation", "type": "string" } @@ -18867,18 +18677,12 @@ "name": { "const": "Addgene", "default": "Addgene", - "enum": [ - "Addgene" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -18927,9 +18731,6 @@ "registry_identifier": { "const": "01nn1pw54", "default": "01nn1pw54", - "enum": [ - "01nn1pw54" - ], "title": "Registry Identifier", "type": "string" } @@ -18944,18 +18745,12 @@ "name": { "const": "Addgene", "default": "Addgene", - "enum": [ - "Addgene" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ADDGENE", "default": "ADDGENE", - "enum": [ - "ADDGENE" - ], "title": "Abbreviation", "type": "string" } @@ -18974,11 +18769,8 @@ "type": "string" }, "schema_version": { - "const": "1.0.3", - "default": "1.0.3", - "enum": [ - "1.0.3" - ], + "const": "1.0.4", + "default": "1.0.4", "title": "Schema Version", "type": "string" }, diff --git a/schemas/session_schema.json b/schemas/session_schema.json index 4d3432ef8..18a853df4 100644 --- a/schemas/session_schema.json +++ b/schemas/session_schema.json @@ -7,9 +7,6 @@ "type": { "const": "affine", "default": "affine", - "enum": [ - "affine" - ], "title": "Type", "type": "string" }, @@ -108,9 +105,6 @@ "stimulus_type": { "const": "Auditory Stimulation", "default": "Auditory Stimulation", - "enum": [ - "Auditory Stimulation" - ], "title": "Stimulus Type", "type": "string" }, @@ -386,7 +380,6 @@ "type": "object" }, "CcfVersion": { - "const": "CCFv3", "description": "CCF version", "enum": [ "CCFv3" @@ -717,2139 +710,18979 @@ "title": "Notes" }, "primary_targeted_structure": { - "title": "Targeted structure", - "type": "string" - }, - "other_targeted_structure": { - "anyOf": [ + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ { - "items": { - "type": "string" - }, - "type": "array" + "$ref": "#/$defs/_Vi" }, { - "type": "null" - } - ], - "default": null, - "title": "Other targeted structure" - }, - "targeted_ccf_coordinates": { - "default": [], - "items": { - "$ref": "#/$defs/CcfCoords" - }, - "title": "Targeted CCF coordinates", - "type": "array" - }, - "manipulator_coordinates": { - "$ref": "#/$defs/Coordinates3d", - "title": "Manipulator coordinates" - }, - "anatomical_coordinates": { - "anyOf": [ + "$ref": "#/$defs/_Acvii" + }, { - "$ref": "#/$defs/Coordinates3d" + "$ref": "#/$defs/_Aob" }, { - "type": "null" - } - ], - "default": null, - "title": "Anatomical coordinates" - }, - "anatomical_reference": { - "anyOf": [ + "$ref": "#/$defs/_Aobgl" + }, { - "enum": [ - "Bregma", - "Lambda" - ], - "type": "string" + "$ref": "#/$defs/_Aobgr" }, { - "type": "null" - } - ], - "default": null, - "title": "Anatomical coordinate reference" - }, - "surface_z": { - "anyOf": [ + "$ref": "#/$defs/_Aobmi" + }, { - "type": "number" + "$ref": "#/$defs/_Aso" }, { - "type": "string" + "$ref": "#/$defs/_Acs5" }, { - "type": "null" - } - ], - "default": null, - "title": "Surface z" - }, - "surface_z_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Surface z unit" - }, - "dye": { - "anyOf": [ + "$ref": "#/$defs/_Ai" + }, { - "type": "string" + "$ref": "#/$defs/_Aid" }, { - "type": "null" - } - ], - "default": null, - "title": "Dye" - }, - "implant_hole_number": { - "anyOf": [ + "$ref": "#/$defs/_Aid1" + }, { - "type": "integer" + "$ref": "#/$defs/_Aid2_3" }, { - "type": "null" - } - ], - "default": null, - "title": "Implant hole number" - }, - "fiber_connections": { - "default": [], - "items": { - "$ref": "#/$defs/FiberConnectionConfig" - }, - "title": "Fiber photometry devices", - "type": "array" - } - }, - "required": [ - "assembly_name", - "arc_angle", - "module_angle", - "primary_targeted_structure", - "manipulator_coordinates" - ], - "title": "FiberModule", - "type": "object" - }, - "FieldOfView": { - "additionalProperties": false, - "description": "Description of an imaging field of view", - "properties": { - "index": { - "title": "Index", - "type": "integer" - }, - "imaging_depth": { - "title": "Imaging depth (um)", - "type": "integer" - }, - "imaging_depth_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Imaging depth unit" - }, - "targeted_structure": { - "title": "Targeted structure", - "type": "string" - }, - "fov_coordinate_ml": { - "anyOf": [ + "$ref": "#/$defs/_Aid5" + }, { - "type": "number" + "$ref": "#/$defs/_Aid6A" }, { - "type": "string" - } - ], - "title": "FOV coordinate ML" - }, - "fov_coordinate_ap": { - "anyOf": [ + "$ref": "#/$defs/_Aid6B" + }, { - "type": "number" + "$ref": "#/$defs/_Aip" }, { - "type": "string" - } - ], - "title": "FOV coordinate AP" - }, - "fov_coordinate_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "FOV coordinate unit" - }, - "fov_reference": { - "description": "Reference for ML/AP coordinates", - "title": "FOV reference", - "type": "string" - }, - "fov_width": { - "title": "FOV width (pixels)", - "type": "integer" - }, - "fov_height": { - "title": "FOV height (pixels)", - "type": "integer" - }, - "fov_size_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "pixel", - "title": "FOV size unit" - }, - "magnification": { - "title": "Magnification", - "type": "string" - }, - "fov_scale_factor": { - "anyOf": [ + "$ref": "#/$defs/_Aip1" + }, { - "type": "number" + "$ref": "#/$defs/_Aip2_3" }, { - "type": "string" - } - ], - "title": "FOV scale factor (um/pixel)" - }, - "fov_scale_factor_unit": { - "default": "um/pixel", - "title": "FOV scale factor unit", - "type": "string" - }, - "frame_rate": { - "anyOf": [ + "$ref": "#/$defs/_Aip5" + }, { - "type": "number" + "$ref": "#/$defs/_Aip6A" }, { - "type": "string" + "$ref": "#/$defs/_Aip6B" }, { - "type": "null" - } - ], - "default": null, - "title": "Frame rate (Hz)" - }, - "frame_rate_unit": { - "$ref": "#/$defs/FrequencyUnit", - "default": "hertz", - "title": "Frame rate unit" - }, - "coupled_fov_index": { - "anyOf": [ + "$ref": "#/$defs/_Aiv" + }, { - "type": "integer" + "$ref": "#/$defs/_Aiv1" }, { - "type": "null" - } - ], - "default": null, - "description": "Coupled planes for multiscope", - "title": "Coupled FOV" - }, - "power": { - "anyOf": [ + "$ref": "#/$defs/_Aiv2_3" + }, { - "type": "number" + "$ref": "#/$defs/_Aiv5" }, { - "type": "string" + "$ref": "#/$defs/_Aiv6A" }, { - "type": "null" - } - ], - "default": null, - "description": "For coupled planes, this power is shared by both planes", - "title": "Power" - }, - "power_unit": { - "$ref": "#/$defs/PowerUnit", - "default": "percent", - "title": "Power unit" - }, - "power_ratio": { - "anyOf": [ + "$ref": "#/$defs/_Aiv6B" + }, { - "type": "number" + "$ref": "#/$defs/_Ca" }, { - "type": "string" + "$ref": "#/$defs/_An" }, { - "type": "null" - } - ], - "default": null, - "title": "Power ratio for coupled planes" - }, - "scanfield_z": { - "anyOf": [ + "$ref": "#/$defs/_Aaa" + }, { - "type": "integer" + "$ref": "#/$defs/_Visa" }, { - "type": "null" - } - ], - "default": null, - "title": "Z stage position of the fastz actuator for a given targeted depth" - }, - "scanfield_z_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Z stage position unit" - }, - "scanimage_roi_index": { - "anyOf": [ + "$ref": "#/$defs/_Visa1" + }, { - "type": "integer" + "$ref": "#/$defs/_Visa2_3" }, { - "type": "null" - } - ], - "default": null, - "title": "ScanImage ROI index" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Visa4" + }, { - "type": "string" + "$ref": "#/$defs/_Visa5" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - } - }, - "required": [ - "index", - "imaging_depth", - "targeted_structure", - "fov_coordinate_ml", - "fov_coordinate_ap", - "fov_reference", - "fov_width", - "fov_height", - "magnification", - "fov_scale_factor" - ], - "title": "FieldOfView", - "type": "object" - }, - "FilterType": { - "description": "Types of bandpass filters for auditory stim", - "enum": [ - "Butterworth", - "Other" - ], - "title": "FilterType", - "type": "string" - }, - "FrequencyUnit": { - "description": "Enumeration of Frequency Measurements", - "enum": [ - "kilohertz", - "hertz", - "millihertz" - ], - "title": "FrequencyUnit", - "type": "string" - }, - "LaserConfig": { - "additionalProperties": false, - "description": "Description of laser settings in a session", - "properties": { - "device_type": { - "const": "Laser", - "default": "Laser", - "enum": [ - "Laser" - ], - "title": "Device Type", - "type": "string" - }, - "name": { - "description": "Must match rig json", - "title": "Name", - "type": "string" - }, - "wavelength": { - "title": "Wavelength (nm)", - "type": "integer" - }, - "wavelength_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "nanometer", - "title": "Wavelength unit" - }, - "excitation_power": { - "anyOf": [ + "$ref": "#/$defs/_Visa6A" + }, { - "type": "number" + "$ref": "#/$defs/_Visa6B" }, { - "type": "string" + "$ref": "#/$defs/_Aca" }, { - "type": "null" - } - ], - "default": null, - "title": "Excitation power (mW)" - }, - "excitation_power_unit": { - "$ref": "#/$defs/PowerUnit", - "default": "milliwatt", - "title": "Excitation power unit" - } - }, - "required": [ - "name", - "wavelength" - ], - "title": "LaserConfig", - "type": "object" - }, - "LightEmittingDiodeConfig": { - "additionalProperties": false, - "description": "Description of LED settings", - "properties": { - "device_type": { - "const": "Light emitting diode", - "default": "Light emitting diode", - "enum": [ - "Light emitting diode" - ], - "title": "Device Type", - "type": "string" - }, - "name": { - "title": "Name", - "type": "string" - }, - "excitation_power": { - "anyOf": [ + "$ref": "#/$defs/_Acad" + }, { - "type": "number" + "$ref": "#/$defs/_Acad1" }, { - "type": "string" + "$ref": "#/$defs/_Acad2_3" }, { - "type": "null" - } - ], - "default": null, - "title": "Excitation power (mW)" - }, - "excitation_power_unit": { - "$ref": "#/$defs/PowerUnit", - "default": "milliwatt", - "title": "Excitation power unit" - } - }, - "required": [ - "name" - ], - "title": "LightEmittingDiodeConfig", - "type": "object" - }, - "MRIScan": { - "additionalProperties": false, - "description": "Description of a 3D scan", - "properties": { - "scan_index": { - "title": "Scan index", - "type": "integer" - }, - "scan_type": { - "$ref": "#/$defs/ScanType", - "title": "Scan type" - }, - "primary_scan": { - "description": "Indicates the primary scan used for downstream analysis", - "title": "Primary scan", - "type": "boolean" - }, - "mri_scanner": { - "anyOf": [ + "$ref": "#/$defs/_Acad5" + }, { - "$ref": "#/$defs/Scanner" + "$ref": "#/$defs/_Acad6A" }, { - "type": "null" - } - ], - "default": null, - "title": "MRI scanner" - }, - "scan_sequence_type": { - "$ref": "#/$defs/MriScanSequence", - "title": "Scan sequence" - }, - "rare_factor": { - "anyOf": [ + "$ref": "#/$defs/_Acad6B" + }, { - "type": "integer" + "$ref": "#/$defs/_Acav" }, { - "type": "null" - } - ], - "default": null, - "title": "RARE factor" - }, - "echo_time": { - "anyOf": [ + "$ref": "#/$defs/_Acav6A" + }, { - "type": "number" + "$ref": "#/$defs/_Acav6B" }, { - "type": "string" - } - ], - "title": "Echo time (ms)" - }, - "effective_echo_time": { - "anyOf": [ + "$ref": "#/$defs/_Acav1" + }, { - "type": "number" + "$ref": "#/$defs/_Acav2_3" }, { - "type": "string" + "$ref": "#/$defs/_Acav5" }, { - "type": "null" - } - ], - "default": null, - "title": "Effective echo time (ms)" - }, - "echo_time_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "millisecond", - "title": "Echo time unit" - }, - "repetition_time": { - "anyOf": [ + "$ref": "#/$defs/_Atn" + }, { - "type": "number" + "$ref": "#/$defs/_Ahn" }, { - "type": "string" - } - ], - "title": "Repetition time (ms)" - }, - "repetition_time_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "millisecond", - "title": "Repetition time unit" - }, - "vc_orientation": { - "anyOf": [ + "$ref": "#/$defs/_Aon" + }, { - "$ref": "#/$defs/Rotation3dTransform" + "$ref": "#/$defs/_Apn" }, { - "type": "null" - } - ], - "default": null, - "title": "Scan orientation" - }, - "vc_position": { - "anyOf": [ + "$ref": "#/$defs/_At" + }, { - "$ref": "#/$defs/Translation3dTransform" + "$ref": "#/$defs/_Ad" }, { - "type": "null" - } - ], - "default": null, - "title": "Scan position" - }, - "subject_position": { - "$ref": "#/$defs/SubjectPosition", - "title": "Subject position" - }, - "voxel_sizes": { - "anyOf": [ + "$ref": "#/$defs/_Adp" + }, { - "$ref": "#/$defs/Scale3dTransform" + "$ref": "#/$defs/_Visal" }, { - "type": "null" - } - ], - "default": null, - "description": "Resolution", - "title": "Voxel sizes" - }, - "processing_steps": { - "default": [], - "items": { - "enum": [ - "Fiducial segmentation", - "Image atlas alignment", - "Skull stripping" - ], - "type": "string" - }, - "title": "Processing Steps", - "type": "array" - }, - "additional_scan_parameters": { - "$ref": "#/$defs/AindGeneric", - "title": "Parameters" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Visal1" + }, { - "type": "string" + "$ref": "#/$defs/_Visal2_3" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - } - }, - "required": [ - "scan_index", - "scan_type", - "primary_scan", - "scan_sequence_type", - "echo_time", - "repetition_time", - "subject_position", - "additional_scan_parameters" - ], - "title": "MRIScan", - "type": "object" - }, - "MagneticStrength": { - "description": "Strength of magnet", - "enum": [ - 7, - 14 - ], - "title": "MagneticStrength", - "type": "integer" - }, - "Maintenance": { - "additionalProperties": false, - "description": "Generic maintenance class", - "properties": { - "maintenance_date": { - "format": "date-time", - "title": "Date and time of maintenance", - "type": "string" - }, - "device_name": { - "description": "Must match a device name in rig/instrument", - "title": "Device name", - "type": "string" - }, - "description": { - "description": "Description on maintenance procedure", - "title": "Description", - "type": "string" - }, - "protocol_id": { - "anyOf": [ + "$ref": "#/$defs/_Visal4" + }, { - "type": "string" + "$ref": "#/$defs/_Visal5" }, { - "type": "null" - } - ], - "default": null, - "title": "Protocol ID" - }, - "reagents": { - "default": [], - "items": { - "$ref": "#/$defs/Reagent" - }, - "title": "Reagents", - "type": "array" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Visal6A" + }, { - "type": "string" + "$ref": "#/$defs/_Visal6B" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - } - }, - "required": [ - "maintenance_date", - "device_name", - "description" - ], - "title": "Maintenance", - "type": "object" - }, - "ManipulatorModule": { - "additionalProperties": false, - "description": "A dome module connected to a 3-axis manipulator", - "properties": { - "assembly_name": { - "title": "Assembly name", - "type": "string" - }, - "arc_angle": { - "anyOf": [ + "$ref": "#/$defs/_Am" + }, { - "type": "number" + "$ref": "#/$defs/_Amd" }, { - "type": "string" - } - ], - "title": "Arc Angle (deg)" - }, - "module_angle": { - "anyOf": [ + "$ref": "#/$defs/_Amv" + }, { - "type": "number" + "$ref": "#/$defs/_Visam" }, { - "type": "string" - } - ], - "title": "Module Angle (deg)" - }, - "angle_unit": { - "$ref": "#/$defs/AngleUnit", - "default": "degrees", - "title": "Angle unit" - }, - "rotation_angle": { - "anyOf": [ + "$ref": "#/$defs/_Visam1" + }, { - "type": "number" + "$ref": "#/$defs/_Visam2_3" }, { - "type": "string" + "$ref": "#/$defs/_Visam4" }, { - "type": "null" - } - ], - "default": null, - "title": "Rotation Angle (deg)" - }, - "coordinate_transform": { - "anyOf": [ + "$ref": "#/$defs/_Visam5" + }, { - "type": "string" + "$ref": "#/$defs/_Visam6A" }, { - "type": "null" - } - ], - "default": null, - "description": "Path to coordinate transform", - "title": "Transform from local manipulator axes to rig" - }, - "calibration_date": { - "anyOf": [ + "$ref": "#/$defs/_Visam6B" + }, { - "format": "date-time", - "type": "string" + "$ref": "#/$defs/_Av" }, { - "type": "null" - } - ], - "default": null, - "title": "Date on which coordinate transform was last calibrated" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Avpv" + }, { - "type": "string" + "$ref": "#/$defs/_Avp" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - }, - "primary_targeted_structure": { - "title": "Targeted structure", - "type": "string" - }, - "other_targeted_structure": { - "anyOf": [ + "$ref": "#/$defs/_Arh" + }, { - "items": { - "type": "string" - }, - "type": "array" + "$ref": "#/$defs/_Ap" }, { - "type": "null" - } - ], - "default": null, - "title": "Other targeted structure" - }, - "targeted_ccf_coordinates": { - "default": [], - "items": { - "$ref": "#/$defs/CcfCoords" - }, - "title": "Targeted CCF coordinates", - "type": "array" - }, - "manipulator_coordinates": { - "$ref": "#/$defs/Coordinates3d", - "title": "Manipulator coordinates" - }, - "anatomical_coordinates": { - "anyOf": [ + "$ref": "#/$defs/_Apr" + }, { - "$ref": "#/$defs/Coordinates3d" + "$ref": "#/$defs/_Aud" }, { - "type": "null" - } - ], - "default": null, - "title": "Anatomical coordinates" - }, - "anatomical_reference": { - "anyOf": [ + "$ref": "#/$defs/_B" + }, { - "enum": [ - "Bregma", - "Lambda" - ], - "type": "string" + "$ref": "#/$defs/_Grey" }, { - "type": "null" - } - ], - "default": null, - "title": "Anatomical coordinate reference" - }, - "surface_z": { - "anyOf": [ + "$ref": "#/$defs/_Bla" + }, { - "type": "number" + "$ref": "#/$defs/_Blaa" }, { - "type": "string" + "$ref": "#/$defs/_Blap" }, { - "type": "null" - } - ], - "default": null, - "title": "Surface z" - }, - "surface_z_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Surface z unit" - }, - "dye": { - "anyOf": [ + "$ref": "#/$defs/_Blav" + }, { - "type": "string" + "$ref": "#/$defs/_Bma" }, { - "type": "null" - } - ], - "default": null, - "title": "Dye" - }, - "implant_hole_number": { - "anyOf": [ + "$ref": "#/$defs/_Bmaa" + }, { - "type": "integer" + "$ref": "#/$defs/_Bmap" }, { - "type": "null" - } - ], - "default": null, - "title": "Implant hole number" - } - }, - "required": [ - "assembly_name", - "arc_angle", - "module_angle", - "primary_targeted_structure", - "manipulator_coordinates" - ], - "title": "ManipulatorModule", - "type": "object" - }, - "MassUnit": { - "description": "Enumeration of Mass Measurements", - "enum": [ - "kilogram", - "gram", - "milligram", - "microgram", - "nanogram" - ], - "title": "MassUnit", - "type": "string" - }, - "MriScanSequence": { - "description": "MRI scan sequence", - "enum": [ - "RARE", - "Other" - ], - "title": "MriScanSequence", - "type": "string" - }, - "OlfactometerChannelConfig": { - "additionalProperties": false, - "description": "Description of olfactometer channel configurations", - "properties": { - "channel_index": { - "title": "Channel index", - "type": "integer" - }, - "odorant": { - "title": "Odorant", - "type": "string" - }, - "odorant_dilution": { - "anyOf": [ + "$ref": "#/$defs/_Bst" + }, { - "type": "number" + "$ref": "#/$defs/_Ba" }, { - "type": "string" - } - ], - "title": "Odorant dilution" - }, - "odorant_dilution_unit": { - "$ref": "#/$defs/ConcentrationUnit", - "default": "% v/v", - "title": "Dilution unit" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Bac" + }, { - "type": "string" + "$ref": "#/$defs/_Bs" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - } - }, - "required": [ - "channel_index", - "odorant", - "odorant_dilution" - ], - "title": "OlfactometerChannelConfig", - "type": "object" - }, - "OlfactoryStimulation": { - "additionalProperties": false, - "description": "Description of a olfactory stimulus", - "properties": { - "stimulus_type": { - "const": "Olfactory Stimulation", - "default": "Olfactory Stimulation", - "enum": [ - "Olfactory Stimulation" - ], - "title": "Stimulus Type", - "type": "string" - }, - "stimulus_name": { - "title": "Stimulus name", - "type": "string" - }, - "channels": { - "items": { - "$ref": "#/$defs/OlfactometerChannelConfig" - }, - "title": "Channels", - "type": "array" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Cp" + }, { - "type": "string" + "$ref": "#/$defs/_Cea" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - } - }, - "required": [ - "stimulus_name", - "channels" - ], - "title": "OlfactoryStimulation", - "type": "object" - }, - "OptoStimulation": { - "additionalProperties": false, - "description": "Description of opto stimulation parameters", - "properties": { - "stimulus_type": { - "const": "Opto Stimulation", - "default": "Opto Stimulation", - "enum": [ - "Opto Stimulation" - ], - "title": "Stimulus Type", - "type": "string" - }, - "stimulus_name": { - "title": "Stimulus name", - "type": "string" - }, - "pulse_shape": { - "$ref": "#/$defs/PulseShape", - "title": "Pulse shape" - }, - "pulse_frequency": { - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "title": "Pulse frequency (Hz)", - "type": "array" - }, - "pulse_frequency_unit": { - "$ref": "#/$defs/FrequencyUnit", - "default": "hertz", - "title": "Pulse frequency unit" - }, - "number_pulse_trains": { - "items": { - "type": "integer" - }, - "title": "Number of pulse trains", - "type": "array" - }, - "pulse_width": { - "items": { - "type": "integer" - }, - "title": "Pulse width (ms)", - "type": "array" - }, - "pulse_width_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "millisecond", - "title": "Pulse width unit" - }, - "pulse_train_duration": { - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "title": "Pulse train duration (s)", - "type": "array" - }, - "pulse_train_duration_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "second", - "title": "Pulse train duration unit" - }, - "fixed_pulse_train_interval": { - "title": "Fixed pulse train interval", - "type": "boolean" - }, - "pulse_train_interval": { - "anyOf": [ + "$ref": "#/$defs/_Ceac" + }, { - "type": "number" + "$ref": "#/$defs/_Ceal" }, { - "type": "string" + "$ref": "#/$defs/_Ceam" }, { - "type": "null" - } - ], - "default": null, - "description": "Time between pulse trains", - "title": "Pulse train interval (s)" - }, - "pulse_train_interval_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "second", - "title": "Pulse train interval unit" - }, - "baseline_duration": { - "anyOf": [ + "$ref": "#/$defs/_Cl" + }, { - "type": "number" + "$ref": "#/$defs/_Cli" }, { - "type": "string" - } - ], - "description": "Duration of baseline recording prior to first pulse train", - "title": "Baseline duration (s)" - }, - "baseline_duration_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "second", - "title": "Baseline duration unit" - }, - "other_parameters": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Other parameters" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Cent" + }, { - "type": "string" + "$ref": "#/$defs/_Cm" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - } - }, - "required": [ - "stimulus_name", - "pulse_shape", - "pulse_frequency", - "number_pulse_trains", - "pulse_width", - "pulse_train_duration", - "fixed_pulse_train_interval", - "baseline_duration" - ], - "title": "OptoStimulation", - "type": "object" - }, - "PIDName": { - "additionalProperties": false, - "description": "Model for associate a name with a persistent identifier (PID),\nthe registry for that PID, and abbreviation for that registry", - "properties": { - "name": { - "title": "Name", - "type": "string" - }, - "abbreviation": { - "anyOf": [ + "$ref": "#/$defs/_Cbx" + }, { - "type": "string" + "$ref": "#/$defs/_Cbn" }, { - "type": "null" - } - ], - "default": null, - "title": "Abbreviation" - }, - "registry": { - "anyOf": [ + "$ref": "#/$defs/_Cb" + }, { - "$ref": "#/$defs/BaseName" + "$ref": "#/$defs/_Ctx" }, { - "type": "null" - } - ], - "default": null, - "title": "Registry" - }, - "registry_identifier": { - "anyOf": [ + "$ref": "#/$defs/_Cnu" + }, { - "type": "string" + "$ref": "#/$defs/_Ch" }, { - "type": "null" - } - ], - "default": null, - "title": "Registry identifier" - } - }, - "required": [ - "name" - ], - "title": "PIDName", - "type": "object" - }, - "PhotoStimulation": { - "additionalProperties": false, - "description": "Description of a photostimulation session", - "properties": { - "stimulus_type": { - "const": "Photo Stimulation", - "default": "Photo Stimulation", - "enum": [ - "Photo Stimulation" - ], - "title": "Stimulus Type", - "type": "string" - }, - "stimulus_name": { - "title": "Stimulus name", - "type": "string" - }, - "number_groups": { - "title": "Number of groups", - "type": "integer" - }, - "groups": { - "items": { - "$ref": "#/$defs/PhotoStimulationGroup" - }, - "title": "Groups", - "type": "array" - }, - "inter_trial_interval": { - "anyOf": [ + "$ref": "#/$defs/_Cla" + }, { - "type": "number" + "$ref": "#/$defs/_Cn" }, { - "type": "string" - } - ], - "title": "Inter trial interval (s)" - }, - "inter_trial_interval_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "second", - "title": "Inter trial interval unit" - }, - "other_parameters": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Other parameters" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Copy" + }, { - "type": "string" + "$ref": "#/$defs/_Coa" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - } - }, - "required": [ - "stimulus_name", - "number_groups", - "groups", - "inter_trial_interval" - ], - "title": "PhotoStimulation", - "type": "object" - }, - "PhotoStimulationGroup": { - "additionalProperties": false, - "description": "Description of a photostimulation group", - "properties": { - "group_index": { - "title": "Group index", - "type": "integer" - }, - "number_of_neurons": { - "title": "Number of neurons", - "type": "integer" - }, - "stimulation_laser_power": { - "anyOf": [ + "$ref": "#/$defs/_Coaa" + }, { - "type": "number" + "$ref": "#/$defs/_Coap" }, { - "type": "string" - } - ], - "title": "Stimulation laser power (mW)" - }, - "stimulation_laser_power_unit": { - "$ref": "#/$defs/PowerUnit", - "default": "milliwatt", - "title": "Stimulation laser power unit" - }, - "number_trials": { - "title": "Number of trials", - "type": "integer" - }, - "number_spirals": { - "title": "Number of spirals", - "type": "integer" - }, - "spiral_duration": { - "anyOf": [ + "$ref": "#/$defs/_Coapl" + }, { - "type": "number" + "$ref": "#/$defs/_Coapm" }, { - "type": "string" - } - ], - "title": "Spiral duration (s)" - }, - "spiral_duration_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "second", - "title": "Spiral duration unit" - }, - "inter_spiral_interval": { - "anyOf": [ + "$ref": "#/$defs/_Ctxpl" + }, { - "type": "number" + "$ref": "#/$defs/_Ctxsp" }, { - "type": "string" - } - ], - "title": "Inter trial interval (s)" - }, - "inter_spiral_interval_unit": { - "$ref": "#/$defs/TimeUnit", - "default": "second", - "title": "Inter trial interval unit" - }, - "other_parameters": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Other parameters" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Ancr1" + }, { - "type": "string" + "$ref": "#/$defs/_Ancr2" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - } - }, - "required": [ - "group_index", - "number_of_neurons", - "stimulation_laser_power", - "number_trials", - "number_spirals", - "spiral_duration", - "inter_spiral_interval" - ], - "title": "PhotoStimulationGroup", - "type": "object" - }, - "PowerUnit": { - "description": "Unit for power, set or measured", - "enum": [ - "microwatt", - "milliwatt", - "percent" - ], - "title": "PowerUnit", - "type": "string" - }, - "PulseShape": { - "description": "Types of Opto stim pulse shapes", - "enum": [ - "Square", - "Ramp", - "Sinusoidal" - ], - "title": "PulseShape", - "type": "string" - }, - "Reagent": { - "additionalProperties": false, - "description": "Description of reagent used in procedure", - "properties": { - "name": { - "title": "Name", - "type": "string" - }, - "source": { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", - "Optotune": "#/$defs/_Optotune", - "Other": "#/$defs/_Other", - "Oxxius": "#/$defs/_Oxxius", - "Prizmatix": "#/$defs/_Prizmatix", - "Quantifi": "#/$defs/_Quantifi", - "Raspberry Pi": "#/$defs/_Raspberry_Pi", - "SICGEN": "#/$defs/_Sicgen", - "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", - "Second Order Effects": "#/$defs/_Second_Order_Effects", - "Semrock": "#/$defs/_Semrock", - "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", - "Simons Foundation": "#/$defs/_Simons_Foundation", - "Spinnaker": "#/$defs/_Spinnaker", - "Tamron": "#/$defs/_Tamron", - "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", - "Teledyne FLIR": "#/$defs/_Teledyne_Flir", - "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", - "The Imaging Source": "#/$defs/_The_Imaging_Source", - "The Lee Company": "#/$defs/_The_Lee_Company", - "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", - "Thorlabs": "#/$defs/_Thorlabs", - "Tymphany": "#/$defs/_Tymphany", - "Vieworks": "#/$defs/_Vieworks", - "Vortran": "#/$defs/_Vortran", - "ams OSRAM": "#/$defs/_Ams_Osram" + "$ref": "#/$defs/_Cul" }, - "propertyName": "name" - }, - "oneOf": [ { - "$ref": "#/$defs/_Aa_Opto_Electronic" + "$ref": "#/$defs/_Cu" }, { - "$ref": "#/$defs/_Asus" + "$ref": "#/$defs/_Cun" }, { - "$ref": "#/$defs/_Abcam" + "$ref": "#/$defs/_Dec" }, { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + "$ref": "#/$defs/_Dg" }, { - "$ref": "#/$defs/_Ailipu_Technology_Co" + "$ref": "#/$defs/_Dg_Sg" }, { - "$ref": "#/$defs/_Allen_Institute" + "$ref": "#/$defs/_Dg_Mo" }, { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + "$ref": "#/$defs/_Dg_Po" }, { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + "$ref": "#/$defs/_Dn" }, { - "$ref": "#/$defs/_Allied" + "$ref": "#/$defs/_Ndb" }, { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + "$ref": "#/$defs/_Audd" }, { - "$ref": "#/$defs/_Arecont_Vision_Costar" + "$ref": "#/$defs/_Audd1" }, { - "$ref": "#/$defs/_Basler" + "$ref": "#/$defs/_Audd2_3" }, { - "$ref": "#/$defs/_Cambridge_Technology" + "$ref": "#/$defs/_Audd4" }, { - "$ref": "#/$defs/_Carl_Zeiss" + "$ref": "#/$defs/_Audd5" }, { - "$ref": "#/$defs/_Champalimaud_Foundation" + "$ref": "#/$defs/_Audd6A" }, { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + "$ref": "#/$defs/_Audd6B" }, { - "$ref": "#/$defs/_Chroma" + "$ref": "#/$defs/_Dco" }, { - "$ref": "#/$defs/_Coherent_Scientific" + "$ref": "#/$defs/_Dcn" }, { - "$ref": "#/$defs/_Columbia_University" + "$ref": "#/$defs/_Dmx" }, { - "$ref": "#/$defs/_Computar" + "$ref": "#/$defs/_Dr" }, { - "$ref": "#/$defs/_Conoptics" + "$ref": "#/$defs/_Lgd" }, { - "$ref": "#/$defs/_Custom" + "$ref": "#/$defs/_Lgd_Co" }, { - "$ref": "#/$defs/_Dodotronic" + "$ref": "#/$defs/_Lgd_Ip" }, { - "$ref": "#/$defs/_Doric" + "$ref": "#/$defs/_Lgd_Sh" }, { - "$ref": "#/$defs/_Ealing" + "$ref": "#/$defs/_Dp" }, { - "$ref": "#/$defs/_Edmund_Optics" + "$ref": "#/$defs/_Pmd" }, { - "$ref": "#/$defs/_Emory_University" + "$ref": "#/$defs/_Dtn" }, { - "$ref": "#/$defs/_Euresys" + "$ref": "#/$defs/_Dt" }, { - "$ref": "#/$defs/_Fujinon" + "$ref": "#/$defs/_Dmh" }, { - "$ref": "#/$defs/_Hamamatsu" + "$ref": "#/$defs/_Ect" }, { - "$ref": "#/$defs/_Hamilton" + "$ref": "#/$defs/_Ect1" }, { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + "$ref": "#/$defs/_Ect2_3" }, { - "$ref": "#/$defs/_Ir_Robot_Co" + "$ref": "#/$defs/_Ect5" }, { - "$ref": "#/$defs/_Isl_Products_International" + "$ref": "#/$defs/_Ect6A" }, { - "$ref": "#/$defs/_Infinity_Photo_Optical" + "$ref": "#/$defs/_Ect6B" }, { - "$ref": "#/$defs/_Integrated_Dna_Technologies" + "$ref": "#/$defs/_Ew" }, { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + "$ref": "#/$defs/_Ep" }, { - "$ref": "#/$defs/_Invitrogen" + "$ref": "#/$defs/_Epd" }, { - "$ref": "#/$defs/_Jackson_Laboratory" + "$ref": "#/$defs/_Epv" }, { - "$ref": "#/$defs/_Janelia_Research_Campus" + "$ref": "#/$defs/_Ent" }, { - "$ref": "#/$defs/_Julabo" + "$ref": "#/$defs/_Entl" }, { - "$ref": "#/$defs/_Lg" + "$ref": "#/$defs/_Entl1" }, { - "$ref": "#/$defs/_Leica" + "$ref": "#/$defs/_Entl2" }, { - "$ref": "#/$defs/_Lumen_Dynamics" + "$ref": "#/$defs/_Entl3" }, { - "$ref": "#/$defs/_Lifecanvas" + "$ref": "#/$defs/_Entl5" }, { - "$ref": "#/$defs/_Mbf_Bioscience" + "$ref": "#/$defs/_Entl6A" }, { - "$ref": "#/$defs/_Mks_Newport" + "$ref": "#/$defs/_Entm" }, { - "$ref": "#/$defs/_Mpi" + "$ref": "#/$defs/_Entm1" }, { - "$ref": "#/$defs/_Meadowlark_Optics" + "$ref": "#/$defs/_Entm2" }, { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + "$ref": "#/$defs/_Entm3" }, { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + "$ref": "#/$defs/_Entm5" }, { - "$ref": "#/$defs/_Mitutuyo" + "$ref": "#/$defs/_Entm6" }, { - "$ref": "#/$defs/_Nresearch_Inc" + "$ref": "#/$defs/_Epi" }, { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + "$ref": "#/$defs/_Eth" }, { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + "$ref": "#/$defs/_Ecu" }, { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + "$ref": "#/$defs/_Vii" }, { - "$ref": "#/$defs/_National_Instruments" + "$ref": "#/$defs/_Fc" }, { - "$ref": "#/$defs/_Navitar" + "$ref": "#/$defs/_Fn" }, { - "$ref": "#/$defs/_Neurophotometrics" + "$ref": "#/$defs/_Ca1" }, { - "$ref": "#/$defs/_New_Scale_Technologies" + "$ref": "#/$defs/_Ca2" }, { - "$ref": "#/$defs/_New_York_University" + "$ref": "#/$defs/_Ca3" }, { - "$ref": "#/$defs/_Nikon" + "$ref": "#/$defs/_Ff" }, { - "$ref": "#/$defs/_Olympus" + "$ref": "#/$defs/_Fl" }, { - "$ref": "#/$defs/_Open_Ephys_Production_Site" + "$ref": "#/$defs/_Fotu" }, { - "$ref": "#/$defs/_Optotune" + "$ref": "#/$defs/_Frp" }, { - "$ref": "#/$defs/_Other" + "$ref": "#/$defs/_Frp1" }, { - "$ref": "#/$defs/_Oxxius" + "$ref": "#/$defs/_Frp2_3" }, { - "$ref": "#/$defs/_Prizmatix" + "$ref": "#/$defs/_Frp5" }, { - "$ref": "#/$defs/_Quantifi" + "$ref": "#/$defs/_Frp6A" }, { - "$ref": "#/$defs/_Raspberry_Pi" + "$ref": "#/$defs/_Frp6B" }, { - "$ref": "#/$defs/_Sicgen" + "$ref": "#/$defs/_Fs" }, { - "$ref": "#/$defs/_Schneider_Kreuznach" + "$ref": "#/$defs/_Gend" }, { - "$ref": "#/$defs/_Second_Order_Effects" + "$ref": "#/$defs/_Genv" }, { - "$ref": "#/$defs/_Semrock" + "$ref": "#/$defs/_Grn" }, { - "$ref": "#/$defs/_Sigma_Aldrich" + "$ref": "#/$defs/_Gpe" }, { - "$ref": "#/$defs/_Simons_Foundation" + "$ref": "#/$defs/_Gpi" }, { - "$ref": "#/$defs/_Spinnaker" + "$ref": "#/$defs/_Gr" }, { - "$ref": "#/$defs/_Tamron" + "$ref": "#/$defs/_Gu" }, { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + "$ref": "#/$defs/_Gu1" }, { - "$ref": "#/$defs/_Teledyne_Flir" + "$ref": "#/$defs/_Gu2_3" }, { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + "$ref": "#/$defs/_Gu4" }, { - "$ref": "#/$defs/_The_Imaging_Source" + "$ref": "#/$defs/_Gu5" }, { - "$ref": "#/$defs/_The_Lee_Company" + "$ref": "#/$defs/_Gu6A" }, { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" + "$ref": "#/$defs/_Gu6B" }, { - "$ref": "#/$defs/_Thorlabs" + "$ref": "#/$defs/_Hem" }, { - "$ref": "#/$defs/_Tymphany" + "$ref": "#/$defs/_Hb" }, { - "$ref": "#/$defs/_Vieworks" + "$ref": "#/$defs/_Hpf" }, { - "$ref": "#/$defs/_Vortran" + "$ref": "#/$defs/_Hip" }, { - "$ref": "#/$defs/_Ams_Osram" - } - ], - "title": "Source" - }, - "rrid": { - "anyOf": [ + "$ref": "#/$defs/_Hata" + }, { - "$ref": "#/$defs/PIDName" + "$ref": "#/$defs/_Xii" }, { - "type": "null" - } - ], - "default": null, - "title": "Research Resource ID" - }, - "lot_number": { - "title": "Lot number", - "type": "string" - }, - "expiration_date": { - "anyOf": [ + "$ref": "#/$defs/_Lz" + }, { - "format": "date", - "type": "string" + "$ref": "#/$defs/_Mez" }, { - "type": "null" - } - ], - "default": null, - "title": "Lot expiration date" - } - }, - "required": [ - "name", - "source", - "lot_number" - ], - "title": "Reagent", - "type": "object" - }, - "RelativePosition": { - "additionalProperties": false, - "description": "Position and rotation of a device in a rig or instrument", - "properties": { - "device_position_transformations": { - "items": { - "discriminator": { - "mapping": { - "rotation": "#/$defs/Rotation3dTransform", - "translation": "#/$defs/Translation3dTransform" - }, - "propertyName": "type" + "$ref": "#/$defs/_Hy" }, - "oneOf": [ - { - "$ref": "#/$defs/Translation3dTransform" - }, - { - "$ref": "#/$defs/Rotation3dTransform" - } - ] - }, - "title": "Device position transforms", - "type": "array" - }, - "device_origin": { - "description": "Reference point on device for position information", - "title": "Device origin", - "type": "string" - }, - "device_axes": { - "items": { - "$ref": "#/$defs/Axis" - }, - "maxItems": 3, - "minItems": 3, - "title": "Device axes", - "type": "array" - }, - "notes": { - "anyOf": [ { - "type": "string" + "$ref": "#/$defs/_Ig" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - } - }, - "required": [ - "device_position_transformations", - "device_origin", - "device_axes" - ], - "title": "RelativePosition", - "type": "object" - }, - "RewardDeliveryConfig": { - "additionalProperties": false, - "description": "Description of reward delivery configuration", - "properties": { - "reward_solution": { - "$ref": "#/$defs/RewardSolution", - "description": "If Other use notes", - "title": "Reward solution" - }, - "reward_spouts": { - "items": { - "$ref": "#/$defs/RewardSpoutConfig" - }, - "title": "Reward spouts", - "type": "array" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Ic" + }, { - "type": "string" + "$ref": "#/$defs/_Icc" }, { - "type": "null" - } - ], - "default": null, - "title": "Notes" - } - }, - "required": [ - "reward_solution", - "reward_spouts" - ], - "title": "RewardDeliveryConfig", - "type": "object" - }, - "RewardSolution": { - "description": "Reward solution name", - "enum": [ - "Water", - "Other" - ], - "title": "RewardSolution", - "type": "string" - }, - "RewardSpoutConfig": { - "additionalProperties": false, - "description": "Reward spout session information", - "properties": { - "side": { - "$ref": "#/$defs/SpoutSide", - "description": "Must match rig", - "title": "Spout side" - }, - "starting_position": { - "$ref": "#/$defs/RelativePosition", - "title": "Starting position" - }, - "variable_position": { - "description": "True if spout position changes during session as tracked in data", - "title": "Variable position", - "type": "boolean" - } - }, - "required": [ - "side", - "starting_position", - "variable_position" - ], - "title": "RewardSpoutConfig", - "type": "object" - }, - "Rotation3dTransform": { - "additionalProperties": false, - "description": "Values to be vector-added to a 3D position. Often needed to specify a device or tile's origin.", - "properties": { - "type": { - "const": "rotation", - "default": "rotation", - "enum": [ - "rotation" - ], - "title": "Type", - "type": "string" - }, - "rotation": { - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "maxItems": 9, - "minItems": 9, - "title": "3D rotation matrix values (3x3) ", - "type": "array" - } - }, - "required": [ - "rotation" - ], - "title": "Rotation3dTransform", - "type": "object" - }, - "Scale3dTransform": { - "additionalProperties": false, - "description": "Values to be vector-multiplied with a 3D position, equivalent to the diagonals of a 3x3 transform matrix.\nRepresents voxel spacing if used as the first applied coordinate transform.", - "properties": { - "type": { - "const": "scale", - "default": "scale", - "enum": [ - "scale" - ], - "title": "Type", - "type": "string" - }, - "scale": { - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] - }, - "maxItems": 3, - "minItems": 3, - "title": "3D scale parameters", - "type": "array" - } - }, - "required": [ - "scale" - ], - "title": "Scale3dTransform", - "type": "object" - }, - "ScanType": { - "description": "Type of scan", - "enum": [ - "Set Up", - "3D Scan" - ], - "title": "ScanType", - "type": "string" - }, - "Scanner": { - "additionalProperties": false, - "description": "Description of a MRI Scanner", - "properties": { - "device_type": { - "const": "Scanner", - "default": "Scanner", - "enum": [ - "Scanner" - ], - "title": "Device Type", - "type": "string" - }, - "name": { - "title": "Device name", - "type": "string" - }, - "serial_number": { - "anyOf": [ + "$ref": "#/$defs/_Icd" + }, { - "type": "string" + "$ref": "#/$defs/_Ice" }, { - "type": "null" - } - ], - "default": null, - "title": "Serial number" - }, - "manufacturer": { - "anyOf": [ + "$ref": "#/$defs/_Io" + }, { - "discriminator": { - "mapping": { - "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", - "ASUS": "#/$defs/_Asus", - "Abcam": "#/$defs/_Abcam", - "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", - "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", - "Allen Institute": "#/$defs/_Allen_Institute", - "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", - "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", - "Allied": "#/$defs/_Allied", - "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", - "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", - "Basler": "#/$defs/_Basler", - "Cambridge Technology": "#/$defs/_Cambridge_Technology", - "Carl Zeiss": "#/$defs/_Carl_Zeiss", - "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", - "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", - "Chroma": "#/$defs/_Chroma", - "Coherent Scientific": "#/$defs/_Coherent_Scientific", - "Columbia University": "#/$defs/_Columbia_University", - "Computar": "#/$defs/_Computar", - "Conoptics": "#/$defs/_Conoptics", - "Custom": "#/$defs/_Custom", - "Dodotronic": "#/$defs/_Dodotronic", - "Doric": "#/$defs/_Doric", - "Ealing": "#/$defs/_Ealing", - "Edmund Optics": "#/$defs/_Edmund_Optics", - "Emory University": "#/$defs/_Emory_University", - "Euresys": "#/$defs/_Euresys", - "Fujinon": "#/$defs/_Fujinon", - "Hamamatsu": "#/$defs/_Hamamatsu", - "Hamilton": "#/$defs/_Hamilton", - "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", - "IR Robot Co": "#/$defs/_Ir_Robot_Co", - "ISL Products International": "#/$defs/_Isl_Products_International", - "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", - "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", - "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", - "Invitrogen": "#/$defs/_Invitrogen", - "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", - "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", - "Julabo": "#/$defs/_Julabo", - "LG": "#/$defs/_Lg", - "Leica": "#/$defs/_Leica", - "LifeCanvas": "#/$defs/_Lifecanvas", - "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", - "MBF Bioscience": "#/$defs/_Mbf_Bioscience", - "MKS Newport": "#/$defs/_Mks_Newport", - "MPI": "#/$defs/_Mpi", - "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", - "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", - "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", - "Mitutuyo": "#/$defs/_Mitutuyo", - "NResearch Inc": "#/$defs/_Nresearch_Inc", - "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", - "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", - "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", - "National Instruments": "#/$defs/_National_Instruments", - "Navitar": "#/$defs/_Navitar", - "Neurophotometrics": "#/$defs/_Neurophotometrics", - "New Scale Technologies": "#/$defs/_New_Scale_Technologies", - "New York University": "#/$defs/_New_York_University", - "Nikon": "#/$defs/_Nikon", - "Olympus": "#/$defs/_Olympus", - "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ], + "title": "Targeted structure" + }, + "other_targeted_structure": { + "anyOf": [ + { + "items": { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ] + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Other targeted structure" + }, + "targeted_ccf_coordinates": { + "default": [], + "items": { + "$ref": "#/$defs/CcfCoords" + }, + "title": "Targeted CCF coordinates", + "type": "array" + }, + "manipulator_coordinates": { + "$ref": "#/$defs/Coordinates3d", + "title": "Manipulator coordinates" + }, + "anatomical_coordinates": { + "anyOf": [ + { + "$ref": "#/$defs/Coordinates3d" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Anatomical coordinates" + }, + "anatomical_reference": { + "anyOf": [ + { + "enum": [ + "Bregma", + "Lambda" + ], + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Anatomical coordinate reference" + }, + "surface_z": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Surface z" + }, + "surface_z_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Surface z unit" + }, + "dye": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Dye" + }, + "implant_hole_number": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Implant hole number" + }, + "fiber_connections": { + "default": [], + "items": { + "$ref": "#/$defs/FiberConnectionConfig" + }, + "title": "Fiber photometry devices", + "type": "array" + } + }, + "required": [ + "assembly_name", + "arc_angle", + "module_angle", + "primary_targeted_structure", + "manipulator_coordinates" + ], + "title": "FiberModule", + "type": "object" + }, + "FieldOfView": { + "additionalProperties": false, + "description": "Description of an imaging field of view", + "properties": { + "index": { + "title": "Index", + "type": "integer" + }, + "imaging_depth": { + "title": "Imaging depth (um)", + "type": "integer" + }, + "imaging_depth_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Imaging depth unit" + }, + "targeted_structure": { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ], + "title": "Targeted structure" + }, + "fov_coordinate_ml": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "FOV coordinate ML" + }, + "fov_coordinate_ap": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "FOV coordinate AP" + }, + "fov_coordinate_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "FOV coordinate unit" + }, + "fov_reference": { + "description": "Reference for ML/AP coordinates", + "title": "FOV reference", + "type": "string" + }, + "fov_width": { + "title": "FOV width (pixels)", + "type": "integer" + }, + "fov_height": { + "title": "FOV height (pixels)", + "type": "integer" + }, + "fov_size_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "pixel", + "title": "FOV size unit" + }, + "magnification": { + "title": "Magnification", + "type": "string" + }, + "fov_scale_factor": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "FOV scale factor (um/pixel)" + }, + "fov_scale_factor_unit": { + "default": "um/pixel", + "title": "FOV scale factor unit", + "type": "string" + }, + "frame_rate": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Frame rate (Hz)" + }, + "frame_rate_unit": { + "$ref": "#/$defs/FrequencyUnit", + "default": "hertz", + "title": "Frame rate unit" + }, + "coupled_fov_index": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Coupled planes for multiscope", + "title": "Coupled FOV" + }, + "power": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For coupled planes, this power is shared by both planes", + "title": "Power" + }, + "power_unit": { + "$ref": "#/$defs/PowerUnit", + "default": "percent", + "title": "Power unit" + }, + "power_ratio": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Power ratio for coupled planes" + }, + "scanfield_z": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Z stage position of the fastz actuator for a given targeted depth" + }, + "scanfield_z_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Z stage position unit" + }, + "scanimage_roi_index": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "ScanImage ROI index" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "index", + "imaging_depth", + "targeted_structure", + "fov_coordinate_ml", + "fov_coordinate_ap", + "fov_reference", + "fov_width", + "fov_height", + "magnification", + "fov_scale_factor" + ], + "title": "FieldOfView", + "type": "object" + }, + "FilterType": { + "description": "Types of bandpass filters for auditory stim", + "enum": [ + "Butterworth", + "Other" + ], + "title": "FilterType", + "type": "string" + }, + "FrequencyUnit": { + "description": "Enumeration of Frequency Measurements", + "enum": [ + "kilohertz", + "hertz", + "millihertz" + ], + "title": "FrequencyUnit", + "type": "string" + }, + "LaserConfig": { + "additionalProperties": false, + "description": "Description of laser settings in a session", + "properties": { + "device_type": { + "const": "Laser", + "default": "Laser", + "title": "Device Type", + "type": "string" + }, + "name": { + "description": "Must match rig json", + "title": "Name", + "type": "string" + }, + "wavelength": { + "title": "Wavelength (nm)", + "type": "integer" + }, + "wavelength_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "nanometer", + "title": "Wavelength unit" + }, + "excitation_power": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Excitation power (mW)" + }, + "excitation_power_unit": { + "$ref": "#/$defs/PowerUnit", + "default": "milliwatt", + "title": "Excitation power unit" + } + }, + "required": [ + "name", + "wavelength" + ], + "title": "LaserConfig", + "type": "object" + }, + "LightEmittingDiodeConfig": { + "additionalProperties": false, + "description": "Description of LED settings", + "properties": { + "device_type": { + "const": "Light emitting diode", + "default": "Light emitting diode", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Name", + "type": "string" + }, + "excitation_power": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Excitation power (mW)" + }, + "excitation_power_unit": { + "$ref": "#/$defs/PowerUnit", + "default": "milliwatt", + "title": "Excitation power unit" + } + }, + "required": [ + "name" + ], + "title": "LightEmittingDiodeConfig", + "type": "object" + }, + "MRIScan": { + "additionalProperties": false, + "description": "Description of a 3D scan", + "properties": { + "scan_index": { + "title": "Scan index", + "type": "integer" + }, + "scan_type": { + "$ref": "#/$defs/ScanType", + "title": "Scan type" + }, + "primary_scan": { + "description": "Indicates the primary scan used for downstream analysis", + "title": "Primary scan", + "type": "boolean" + }, + "mri_scanner": { + "anyOf": [ + { + "$ref": "#/$defs/Scanner" + }, + { + "type": "null" + } + ], + "default": null, + "title": "MRI scanner" + }, + "scan_sequence_type": { + "$ref": "#/$defs/MriScanSequence", + "title": "Scan sequence" + }, + "rare_factor": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "RARE factor" + }, + "echo_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Echo time (ms)" + }, + "effective_echo_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Effective echo time (ms)" + }, + "echo_time_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "millisecond", + "title": "Echo time unit" + }, + "repetition_time": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Repetition time (ms)" + }, + "repetition_time_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "millisecond", + "title": "Repetition time unit" + }, + "vc_orientation": { + "anyOf": [ + { + "$ref": "#/$defs/Rotation3dTransform" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Scan orientation" + }, + "vc_position": { + "anyOf": [ + { + "$ref": "#/$defs/Translation3dTransform" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Scan position" + }, + "subject_position": { + "$ref": "#/$defs/SubjectPosition", + "title": "Subject position" + }, + "voxel_sizes": { + "anyOf": [ + { + "$ref": "#/$defs/Scale3dTransform" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Resolution", + "title": "Voxel sizes" + }, + "processing_steps": { + "default": [], + "items": { + "enum": [ + "Fiducial segmentation", + "Image atlas alignment", + "Skull stripping" + ], + "type": "string" + }, + "title": "Processing Steps", + "type": "array" + }, + "additional_scan_parameters": { + "$ref": "#/$defs/AindGeneric", + "title": "Parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "scan_index", + "scan_type", + "primary_scan", + "scan_sequence_type", + "echo_time", + "repetition_time", + "subject_position", + "additional_scan_parameters" + ], + "title": "MRIScan", + "type": "object" + }, + "MagneticStrength": { + "description": "Strength of magnet", + "enum": [ + 7, + 14 + ], + "title": "MagneticStrength", + "type": "integer" + }, + "Maintenance": { + "additionalProperties": false, + "description": "Generic maintenance class", + "properties": { + "maintenance_date": { + "format": "date-time", + "title": "Date and time of maintenance", + "type": "string" + }, + "device_name": { + "description": "Must match a device name in rig/instrument", + "title": "Device name", + "type": "string" + }, + "description": { + "description": "Description on maintenance procedure", + "title": "Description", + "type": "string" + }, + "protocol_id": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Protocol ID" + }, + "reagents": { + "default": [], + "items": { + "$ref": "#/$defs/Reagent" + }, + "title": "Reagents", + "type": "array" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "maintenance_date", + "device_name", + "description" + ], + "title": "Maintenance", + "type": "object" + }, + "ManipulatorModule": { + "additionalProperties": false, + "description": "A dome module connected to a 3-axis manipulator", + "properties": { + "assembly_name": { + "title": "Assembly name", + "type": "string" + }, + "arc_angle": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Arc Angle (deg)" + }, + "module_angle": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Module Angle (deg)" + }, + "angle_unit": { + "$ref": "#/$defs/AngleUnit", + "default": "degrees", + "title": "Angle unit" + }, + "rotation_angle": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Rotation Angle (deg)" + }, + "coordinate_transform": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Path to coordinate transform", + "title": "Transform from local manipulator axes to rig" + }, + "calibration_date": { + "anyOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Date on which coordinate transform was last calibrated" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "primary_targeted_structure": { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ], + "title": "Targeted structure" + }, + "other_targeted_structure": { + "anyOf": [ + { + "items": { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ] + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Other targeted structure" + }, + "targeted_ccf_coordinates": { + "default": [], + "items": { + "$ref": "#/$defs/CcfCoords" + }, + "title": "Targeted CCF coordinates", + "type": "array" + }, + "manipulator_coordinates": { + "$ref": "#/$defs/Coordinates3d", + "title": "Manipulator coordinates" + }, + "anatomical_coordinates": { + "anyOf": [ + { + "$ref": "#/$defs/Coordinates3d" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Anatomical coordinates" + }, + "anatomical_reference": { + "anyOf": [ + { + "enum": [ + "Bregma", + "Lambda" + ], + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Anatomical coordinate reference" + }, + "surface_z": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Surface z" + }, + "surface_z_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Surface z unit" + }, + "dye": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Dye" + }, + "implant_hole_number": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Implant hole number" + } + }, + "required": [ + "assembly_name", + "arc_angle", + "module_angle", + "primary_targeted_structure", + "manipulator_coordinates" + ], + "title": "ManipulatorModule", + "type": "object" + }, + "MassUnit": { + "description": "Enumeration of Mass Measurements", + "enum": [ + "kilogram", + "gram", + "milligram", + "microgram", + "nanogram" + ], + "title": "MassUnit", + "type": "string" + }, + "MriScanSequence": { + "description": "MRI scan sequence", + "enum": [ + "RARE", + "Other" + ], + "title": "MriScanSequence", + "type": "string" + }, + "OlfactometerChannelConfig": { + "additionalProperties": false, + "description": "Description of olfactometer channel configurations", + "properties": { + "channel_index": { + "title": "Channel index", + "type": "integer" + }, + "odorant": { + "title": "Odorant", + "type": "string" + }, + "odorant_dilution": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Odorant dilution" + }, + "odorant_dilution_unit": { + "$ref": "#/$defs/ConcentrationUnit", + "default": "% v/v", + "title": "Dilution unit" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "channel_index", + "odorant", + "odorant_dilution" + ], + "title": "OlfactometerChannelConfig", + "type": "object" + }, + "OlfactoryStimulation": { + "additionalProperties": false, + "description": "Description of a olfactory stimulus", + "properties": { + "stimulus_type": { + "const": "Olfactory Stimulation", + "default": "Olfactory Stimulation", + "title": "Stimulus Type", + "type": "string" + }, + "stimulus_name": { + "title": "Stimulus name", + "type": "string" + }, + "channels": { + "items": { + "$ref": "#/$defs/OlfactometerChannelConfig" + }, + "title": "Channels", + "type": "array" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "stimulus_name", + "channels" + ], + "title": "OlfactoryStimulation", + "type": "object" + }, + "OptoStimulation": { + "additionalProperties": false, + "description": "Description of opto stimulation parameters", + "properties": { + "stimulus_type": { + "const": "Opto Stimulation", + "default": "Opto Stimulation", + "title": "Stimulus Type", + "type": "string" + }, + "stimulus_name": { + "title": "Stimulus name", + "type": "string" + }, + "pulse_shape": { + "$ref": "#/$defs/PulseShape", + "title": "Pulse shape" + }, + "pulse_frequency": { + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "title": "Pulse frequency (Hz)", + "type": "array" + }, + "pulse_frequency_unit": { + "$ref": "#/$defs/FrequencyUnit", + "default": "hertz", + "title": "Pulse frequency unit" + }, + "number_pulse_trains": { + "items": { + "type": "integer" + }, + "title": "Number of pulse trains", + "type": "array" + }, + "pulse_width": { + "items": { + "type": "integer" + }, + "title": "Pulse width (ms)", + "type": "array" + }, + "pulse_width_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "millisecond", + "title": "Pulse width unit" + }, + "pulse_train_duration": { + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "title": "Pulse train duration (s)", + "type": "array" + }, + "pulse_train_duration_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "second", + "title": "Pulse train duration unit" + }, + "fixed_pulse_train_interval": { + "title": "Fixed pulse train interval", + "type": "boolean" + }, + "pulse_train_interval": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Time between pulse trains", + "title": "Pulse train interval (s)" + }, + "pulse_train_interval_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "second", + "title": "Pulse train interval unit" + }, + "baseline_duration": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "description": "Duration of baseline recording prior to first pulse train", + "title": "Baseline duration (s)" + }, + "baseline_duration_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "second", + "title": "Baseline duration unit" + }, + "other_parameters": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Other parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "stimulus_name", + "pulse_shape", + "pulse_frequency", + "number_pulse_trains", + "pulse_width", + "pulse_train_duration", + "fixed_pulse_train_interval", + "baseline_duration" + ], + "title": "OptoStimulation", + "type": "object" + }, + "PIDName": { + "additionalProperties": false, + "description": "Model for associate a name with a persistent identifier (PID),\nthe registry for that PID, and abbreviation for that registry", + "properties": { + "name": { + "title": "Name", + "type": "string" + }, + "abbreviation": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Abbreviation" + }, + "registry": { + "anyOf": [ + { + "$ref": "#/$defs/BaseName" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Registry" + }, + "registry_identifier": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Registry identifier" + } + }, + "required": [ + "name" + ], + "title": "PIDName", + "type": "object" + }, + "PhotoStimulation": { + "additionalProperties": false, + "description": "Description of a photostimulation session", + "properties": { + "stimulus_type": { + "const": "Photo Stimulation", + "default": "Photo Stimulation", + "title": "Stimulus Type", + "type": "string" + }, + "stimulus_name": { + "title": "Stimulus name", + "type": "string" + }, + "number_groups": { + "title": "Number of groups", + "type": "integer" + }, + "groups": { + "items": { + "$ref": "#/$defs/PhotoStimulationGroup" + }, + "title": "Groups", + "type": "array" + }, + "inter_trial_interval": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Inter trial interval (s)" + }, + "inter_trial_interval_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "second", + "title": "Inter trial interval unit" + }, + "other_parameters": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Other parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "stimulus_name", + "number_groups", + "groups", + "inter_trial_interval" + ], + "title": "PhotoStimulation", + "type": "object" + }, + "PhotoStimulationGroup": { + "additionalProperties": false, + "description": "Description of a photostimulation group", + "properties": { + "group_index": { + "title": "Group index", + "type": "integer" + }, + "number_of_neurons": { + "title": "Number of neurons", + "type": "integer" + }, + "stimulation_laser_power": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Stimulation laser power (mW)" + }, + "stimulation_laser_power_unit": { + "$ref": "#/$defs/PowerUnit", + "default": "milliwatt", + "title": "Stimulation laser power unit" + }, + "number_trials": { + "title": "Number of trials", + "type": "integer" + }, + "number_spirals": { + "title": "Number of spirals", + "type": "integer" + }, + "spiral_duration": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Spiral duration (s)" + }, + "spiral_duration_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "second", + "title": "Spiral duration unit" + }, + "inter_spiral_interval": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Inter trial interval (s)" + }, + "inter_spiral_interval_unit": { + "$ref": "#/$defs/TimeUnit", + "default": "second", + "title": "Inter trial interval unit" + }, + "other_parameters": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Other parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "group_index", + "number_of_neurons", + "stimulation_laser_power", + "number_trials", + "number_spirals", + "spiral_duration", + "inter_spiral_interval" + ], + "title": "PhotoStimulationGroup", + "type": "object" + }, + "PowerUnit": { + "description": "Unit for power, set or measured", + "enum": [ + "microwatt", + "milliwatt", + "percent" + ], + "title": "PowerUnit", + "type": "string" + }, + "PulseShape": { + "description": "Types of Opto stim pulse shapes", + "enum": [ + "Square", + "Ramp", + "Sinusoidal" + ], + "title": "PulseShape", + "type": "string" + }, + "Reagent": { + "additionalProperties": false, + "description": "Description of reagent used in procedure", + "properties": { + "name": { + "title": "Name", + "type": "string" + }, + "source": { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", + "Optotune": "#/$defs/_Optotune", + "Other": "#/$defs/_Other", + "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", + "Prizmatix": "#/$defs/_Prizmatix", + "Quantifi": "#/$defs/_Quantifi", + "Raspberry Pi": "#/$defs/_Raspberry_Pi", + "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", + "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", + "Second Order Effects": "#/$defs/_Second_Order_Effects", + "Semrock": "#/$defs/_Semrock", + "Sigma-Aldrich": "#/$defs/_Sigma_Aldrich", + "Simons Foundation": "#/$defs/_Simons_Foundation", + "Spinnaker": "#/$defs/_Spinnaker", + "Tamron": "#/$defs/_Tamron", + "Technical Manufacturing Corporation": "#/$defs/_Technical_Manufacturing_Corporation", + "Teledyne FLIR": "#/$defs/_Teledyne_Flir", + "Templeton World Charity Foundation": "#/$defs/_Templeton_World_Charity_Foundation", + "The Imaging Source": "#/$defs/_The_Imaging_Source", + "The Lee Company": "#/$defs/_The_Lee_Company", + "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", + "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", + "Tymphany": "#/$defs/_Tymphany", + "Vieworks": "#/$defs/_Vieworks", + "Vortran": "#/$defs/_Vortran", + "ams OSRAM": "#/$defs/_Ams_Osram" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ], + "title": "Source" + }, + "rrid": { + "anyOf": [ + { + "$ref": "#/$defs/PIDName" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Research Resource ID" + }, + "lot_number": { + "title": "Lot number", + "type": "string" + }, + "expiration_date": { + "anyOf": [ + { + "format": "date", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lot expiration date" + } + }, + "required": [ + "name", + "source", + "lot_number" + ], + "title": "Reagent", + "type": "object" + }, + "RelativePosition": { + "additionalProperties": false, + "description": "Position and rotation of a device in a rig or instrument", + "properties": { + "device_position_transformations": { + "items": { + "discriminator": { + "mapping": { + "rotation": "#/$defs/Rotation3dTransform", + "translation": "#/$defs/Translation3dTransform" + }, + "propertyName": "type" + }, + "oneOf": [ + { + "$ref": "#/$defs/Translation3dTransform" + }, + { + "$ref": "#/$defs/Rotation3dTransform" + } + ] + }, + "title": "Device position transforms", + "type": "array" + }, + "device_origin": { + "description": "Reference point on device for position information", + "title": "Device origin", + "type": "string" + }, + "device_axes": { + "items": { + "$ref": "#/$defs/Axis" + }, + "maxItems": 3, + "minItems": 3, + "title": "Device axes", + "type": "array" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "device_position_transformations", + "device_origin", + "device_axes" + ], + "title": "RelativePosition", + "type": "object" + }, + "RewardDeliveryConfig": { + "additionalProperties": false, + "description": "Description of reward delivery configuration", + "properties": { + "reward_solution": { + "$ref": "#/$defs/RewardSolution", + "description": "If Other use notes", + "title": "Reward solution" + }, + "reward_spouts": { + "items": { + "$ref": "#/$defs/RewardSpoutConfig" + }, + "title": "Reward spouts", + "type": "array" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "reward_solution", + "reward_spouts" + ], + "title": "RewardDeliveryConfig", + "type": "object" + }, + "RewardSolution": { + "description": "Reward solution name", + "enum": [ + "Water", + "Other" + ], + "title": "RewardSolution", + "type": "string" + }, + "RewardSpoutConfig": { + "additionalProperties": false, + "description": "Reward spout session information", + "properties": { + "side": { + "$ref": "#/$defs/SpoutSide", + "description": "Must match rig", + "title": "Spout side" + }, + "starting_position": { + "$ref": "#/$defs/RelativePosition", + "title": "Starting position" + }, + "variable_position": { + "description": "True if spout position changes during session as tracked in data", + "title": "Variable position", + "type": "boolean" + } + }, + "required": [ + "side", + "starting_position", + "variable_position" + ], + "title": "RewardSpoutConfig", + "type": "object" + }, + "Rotation3dTransform": { + "additionalProperties": false, + "description": "Values to be vector-added to a 3D position. Often needed to specify a device or tile's origin.", + "properties": { + "type": { + "const": "rotation", + "default": "rotation", + "title": "Type", + "type": "string" + }, + "rotation": { + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "maxItems": 9, + "minItems": 9, + "title": "3D rotation matrix values (3x3) ", + "type": "array" + } + }, + "required": [ + "rotation" + ], + "title": "Rotation3dTransform", + "type": "object" + }, + "Scale3dTransform": { + "additionalProperties": false, + "description": "Values to be vector-multiplied with a 3D position, equivalent to the diagonals of a 3x3 transform matrix.\nRepresents voxel spacing if used as the first applied coordinate transform.", + "properties": { + "type": { + "const": "scale", + "default": "scale", + "title": "Type", + "type": "string" + }, + "scale": { + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "maxItems": 3, + "minItems": 3, + "title": "3D scale parameters", + "type": "array" + } + }, + "required": [ + "scale" + ], + "title": "Scale3dTransform", + "type": "object" + }, + "ScanType": { + "description": "Type of scan", + "enum": [ + "Set Up", + "3D Scan" + ], + "title": "ScanType", + "type": "string" + }, + "Scanner": { + "additionalProperties": false, + "description": "Description of a MRI Scanner", + "properties": { + "device_type": { + "const": "Scanner", + "default": "Scanner", + "title": "Device Type", + "type": "string" + }, + "name": { + "title": "Device name", + "type": "string" + }, + "serial_number": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Serial number" + }, + "manufacturer": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "AA Opto Electronic": "#/$defs/_Aa_Opto_Electronic", + "ASUS": "#/$defs/_Asus", + "Abcam": "#/$defs/_Abcam", + "Addgene": "#/$defs/aind_data_schema_models__organizations___Addgene", + "Ailipu Technology Co": "#/$defs/_Ailipu_Technology_Co", + "Allen Institute": "#/$defs/_Allen_Institute", + "Allen Institute for Brain Science": "#/$defs/_Allen_Institute_For_Brain_Science", + "Allen Institute for Neural Dynamics": "#/$defs/_Allen_Institute_For_Neural_Dynamics", + "Allied": "#/$defs/_Allied", + "Applied Scientific Instrumentation": "#/$defs/_Applied_Scientific_Instrumentation", + "Arecont Vision Costar": "#/$defs/_Arecont_Vision_Costar", + "Basler": "#/$defs/_Basler", + "Cambridge Technology": "#/$defs/_Cambridge_Technology", + "Carl Zeiss": "#/$defs/_Carl_Zeiss", + "Champalimaud Foundation": "#/$defs/_Champalimaud_Foundation", + "Chan Zuckerberg Initiative": "#/$defs/_Chan_Zuckerberg_Initiative", + "Charles River Laboratories": "#/$defs/_Charles_River_Laboratories", + "Chroma": "#/$defs/_Chroma", + "Coherent Scientific": "#/$defs/_Coherent_Scientific", + "Columbia University": "#/$defs/_Columbia_University", + "Computar": "#/$defs/_Computar", + "Conoptics": "#/$defs/_Conoptics", + "Custom": "#/$defs/_Custom", + "DigiKey": "#/$defs/_Digikey", + "Dodotronic": "#/$defs/_Dodotronic", + "Doric": "#/$defs/_Doric", + "Ealing": "#/$defs/_Ealing", + "Edmund Optics": "#/$defs/_Edmund_Optics", + "Emory University": "#/$defs/_Emory_University", + "Euresys": "#/$defs/_Euresys", + "Fujinon": "#/$defs/_Fujinon", + "Hamamatsu": "#/$defs/_Hamamatsu", + "Hamilton": "#/$defs/_Hamilton", + "Huazhong University of Science and Technology": "#/$defs/_Huazhong_University_Of_Science_And_Technology", + "IR Robot Co": "#/$defs/_Ir_Robot_Co", + "ISL Products International": "#/$defs/_Isl_Products_International", + "Infinity Photo-Optical": "#/$defs/_Infinity_Photo_Optical", + "Integrated DNA Technologies": "#/$defs/_Integrated_Dna_Technologies", + "Interuniversity Microelectronics Center": "#/$defs/_Interuniversity_Microelectronics_Center", + "Invitrogen": "#/$defs/_Invitrogen", + "Item": "#/$defs/_Item", + "Jackson Laboratory": "#/$defs/_Jackson_Laboratory", + "Janelia Research Campus": "#/$defs/_Janelia_Research_Campus", + "Julabo": "#/$defs/_Julabo", + "Kowa": "#/$defs/_Kowa", + "LG": "#/$defs/_Lg", + "Leica": "#/$defs/_Leica", + "LifeCanvas": "#/$defs/_Lifecanvas", + "Lumen Dynamics": "#/$defs/_Lumen_Dynamics", + "MBF Bioscience": "#/$defs/_Mbf_Bioscience", + "MKS Newport": "#/$defs/_Mks_Newport", + "MPI": "#/$defs/_Mpi", + "Meadowlark Optics": "#/$defs/_Meadowlark_Optics", + "Michael J. Fox Foundation for Parkinson's Research": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "Midwest Optical Systems, Inc.": "#/$defs/_Midwest_Optical_Systems_Inc_", + "Mitutuyo": "#/$defs/_Mitutuyo", + "NResearch Inc": "#/$defs/_Nresearch_Inc", + "National Center for Complementary and Integrative Health": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health", + "National Institute of Mental Health": "#/$defs/_National_Institute_Of_Mental_Health", + "National Institute of Neurological Disorders and Stroke": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke", + "National Instruments": "#/$defs/_National_Instruments", + "Navitar": "#/$defs/_Navitar", + "Neurophotometrics": "#/$defs/_Neurophotometrics", + "New Scale Technologies": "#/$defs/_New_Scale_Technologies", + "New York University": "#/$defs/_New_York_University", + "Nikon": "#/$defs/_Nikon", + "Olympus": "#/$defs/_Olympus", + "Open Ephys Production Site": "#/$defs/_Open_Ephys_Production_Site", "Optotune": "#/$defs/_Optotune", "Other": "#/$defs/_Other", "Oxxius": "#/$defs/_Oxxius", + "Placid Industries": "#/$defs/_Placid_Industries", "Prizmatix": "#/$defs/_Prizmatix", "Quantifi": "#/$defs/_Quantifi", "Raspberry Pi": "#/$defs/_Raspberry_Pi", "SICGEN": "#/$defs/_Sicgen", + "Same Sky": "#/$defs/_Same_Sky", "Schneider-Kreuznach": "#/$defs/_Schneider_Kreuznach", "Second Order Effects": "#/$defs/_Second_Order_Effects", "Semrock": "#/$defs/_Semrock", @@ -2864,1643 +19697,34766 @@ "The Lee Company": "#/$defs/_The_Lee_Company", "Thermo Fisher Scientific": "#/$defs/_Thermo_Fisher_Scientific", "Thorlabs": "#/$defs/_Thorlabs", + "Transducer Techniques": "#/$defs/_Transducer_Techniques", "Tymphany": "#/$defs/_Tymphany", "Vieworks": "#/$defs/_Vieworks", "Vortran": "#/$defs/_Vortran", "ams OSRAM": "#/$defs/_Ams_Osram" }, - "propertyName": "name" - }, - "oneOf": [ + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Aa_Opto_Electronic" + }, + { + "$ref": "#/$defs/_Asus" + }, + { + "$ref": "#/$defs/_Abcam" + }, + { + "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + }, + { + "$ref": "#/$defs/_Ailipu_Technology_Co" + }, + { + "$ref": "#/$defs/_Allen_Institute" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + }, + { + "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + }, + { + "$ref": "#/$defs/_Allied" + }, + { + "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + }, + { + "$ref": "#/$defs/_Arecont_Vision_Costar" + }, + { + "$ref": "#/$defs/_Basler" + }, + { + "$ref": "#/$defs/_Cambridge_Technology" + }, + { + "$ref": "#/$defs/_Carl_Zeiss" + }, + { + "$ref": "#/$defs/_Champalimaud_Foundation" + }, + { + "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + }, + { + "$ref": "#/$defs/_Charles_River_Laboratories" + }, + { + "$ref": "#/$defs/_Chroma" + }, + { + "$ref": "#/$defs/_Coherent_Scientific" + }, + { + "$ref": "#/$defs/_Columbia_University" + }, + { + "$ref": "#/$defs/_Computar" + }, + { + "$ref": "#/$defs/_Conoptics" + }, + { + "$ref": "#/$defs/_Custom" + }, + { + "$ref": "#/$defs/_Digikey" + }, + { + "$ref": "#/$defs/_Dodotronic" + }, + { + "$ref": "#/$defs/_Doric" + }, + { + "$ref": "#/$defs/_Ealing" + }, + { + "$ref": "#/$defs/_Edmund_Optics" + }, + { + "$ref": "#/$defs/_Emory_University" + }, + { + "$ref": "#/$defs/_Euresys" + }, + { + "$ref": "#/$defs/_Fujinon" + }, + { + "$ref": "#/$defs/_Hamamatsu" + }, + { + "$ref": "#/$defs/_Hamilton" + }, + { + "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + }, + { + "$ref": "#/$defs/_Ir_Robot_Co" + }, + { + "$ref": "#/$defs/_Isl_Products_International" + }, + { + "$ref": "#/$defs/_Infinity_Photo_Optical" + }, + { + "$ref": "#/$defs/_Integrated_Dna_Technologies" + }, + { + "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + }, + { + "$ref": "#/$defs/_Invitrogen" + }, + { + "$ref": "#/$defs/_Item" + }, + { + "$ref": "#/$defs/_Jackson_Laboratory" + }, + { + "$ref": "#/$defs/_Janelia_Research_Campus" + }, + { + "$ref": "#/$defs/_Julabo" + }, + { + "$ref": "#/$defs/_Kowa" + }, + { + "$ref": "#/$defs/_Lg" + }, + { + "$ref": "#/$defs/_Leica" + }, + { + "$ref": "#/$defs/_Lumen_Dynamics" + }, + { + "$ref": "#/$defs/_Lifecanvas" + }, + { + "$ref": "#/$defs/_Mbf_Bioscience" + }, + { + "$ref": "#/$defs/_Mks_Newport" + }, + { + "$ref": "#/$defs/_Mpi" + }, + { + "$ref": "#/$defs/_Meadowlark_Optics" + }, + { + "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + }, + { + "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + }, + { + "$ref": "#/$defs/_Mitutuyo" + }, + { + "$ref": "#/$defs/_Nresearch_Inc" + }, + { + "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + }, + { + "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + }, + { + "$ref": "#/$defs/_National_Instruments" + }, + { + "$ref": "#/$defs/_Navitar" + }, + { + "$ref": "#/$defs/_Neurophotometrics" + }, + { + "$ref": "#/$defs/_New_Scale_Technologies" + }, + { + "$ref": "#/$defs/_New_York_University" + }, + { + "$ref": "#/$defs/_Nikon" + }, + { + "$ref": "#/$defs/_Olympus" + }, + { + "$ref": "#/$defs/_Open_Ephys_Production_Site" + }, + { + "$ref": "#/$defs/_Optotune" + }, + { + "$ref": "#/$defs/_Other" + }, + { + "$ref": "#/$defs/_Oxxius" + }, + { + "$ref": "#/$defs/_Placid_Industries" + }, + { + "$ref": "#/$defs/_Prizmatix" + }, + { + "$ref": "#/$defs/_Quantifi" + }, + { + "$ref": "#/$defs/_Raspberry_Pi" + }, + { + "$ref": "#/$defs/_Same_Sky" + }, + { + "$ref": "#/$defs/_Sicgen" + }, + { + "$ref": "#/$defs/_Schneider_Kreuznach" + }, + { + "$ref": "#/$defs/_Second_Order_Effects" + }, + { + "$ref": "#/$defs/_Semrock" + }, + { + "$ref": "#/$defs/_Sigma_Aldrich" + }, + { + "$ref": "#/$defs/_Simons_Foundation" + }, + { + "$ref": "#/$defs/_Spinnaker" + }, + { + "$ref": "#/$defs/_Tamron" + }, + { + "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + }, + { + "$ref": "#/$defs/_Teledyne_Flir" + }, + { + "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + }, + { + "$ref": "#/$defs/_The_Imaging_Source" + }, + { + "$ref": "#/$defs/_The_Lee_Company" + }, + { + "$ref": "#/$defs/_Thermo_Fisher_Scientific" + }, + { + "$ref": "#/$defs/_Thorlabs" + }, + { + "$ref": "#/$defs/_Transducer_Techniques" + }, + { + "$ref": "#/$defs/_Tymphany" + }, + { + "$ref": "#/$defs/_Vieworks" + }, + { + "$ref": "#/$defs/_Vortran" + }, + { + "$ref": "#/$defs/_Ams_Osram" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Manufacturer" + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Model" + }, + "path_to_cad": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For CUSTOM manufactured devices", + "title": "Path to CAD diagram" + }, + "port_index": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Port index" + }, + "additional_settings": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Additional parameters" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "scanner_location": { + "$ref": "#/$defs/ScannerLocation", + "title": "Scanner location" + }, + "magnetic_strength": { + "$ref": "#/$defs/MagneticStrength", + "title": "Magnetic strength (T)" + }, + "magnetic_strength_unit": { + "default": "T", + "title": "Magnetic strength unit", + "type": "string" + } + }, + "required": [ + "name", + "scanner_location", + "magnetic_strength" + ], + "title": "Scanner", + "type": "object" + }, + "ScannerLocation": { + "description": "location of scanner", + "enum": [ + "Fred Hutch", + "UW SLU" + ], + "title": "ScannerLocation", + "type": "string" + }, + "SizeUnit": { + "description": "Enumeration of Length Measurements", + "enum": [ + "meter", + "centimeter", + "millimeter", + "micrometer", + "nanometer", + "inch", + "pixel" + ], + "title": "SizeUnit", + "type": "string" + }, + "SlapFieldOfView": { + "additionalProperties": false, + "description": "Description of a Slap2 scan", + "properties": { + "index": { + "title": "Index", + "type": "integer" + }, + "imaging_depth": { + "title": "Imaging depth (um)", + "type": "integer" + }, + "imaging_depth_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Imaging depth unit" + }, + "targeted_structure": { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, + { + "$ref": "#/$defs/_Visc1" + }, + { + "$ref": "#/$defs/_Visc2_3" + }, + { + "$ref": "#/$defs/_Visc4" + }, + { + "$ref": "#/$defs/_Visc5" + }, + { + "$ref": "#/$defs/_Visc6A" + }, + { + "$ref": "#/$defs/_Visc6B" + }, + { + "$ref": "#/$defs/_Vis" + }, + { + "$ref": "#/$defs/_Xi" + }, + { + "$ref": "#/$defs/_Zi" + }, + { + "$ref": "#/$defs/_Alv" + }, + { + "$ref": "#/$defs/_Amc" + }, + { + "$ref": "#/$defs/_Aco" + }, + { + "$ref": "#/$defs/_Act" + }, + { + "$ref": "#/$defs/_Arb" + }, + { + "$ref": "#/$defs/_Ar" + }, + { + "$ref": "#/$defs/_Bic" + }, + { + "$ref": "#/$defs/_Bsc" + }, + { + "$ref": "#/$defs/_C" + }, + { + "$ref": "#/$defs/_Cpd" + }, + { + "$ref": "#/$defs/_Cbc" + }, + { + "$ref": "#/$defs/_Cbp" + }, + { + "$ref": "#/$defs/_Cbf" + }, + { + "$ref": "#/$defs/_Aq" + }, + { + "$ref": "#/$defs/_Epsc" + }, + { + "$ref": "#/$defs/_Mfbc" + }, + { + "$ref": "#/$defs/_Cett" + }, + { + "$ref": "#/$defs/_Chpl" + }, + { + "$ref": "#/$defs/_Cing" + }, + { + "$ref": "#/$defs/_Cviiin" + }, + { + "$ref": "#/$defs/_Fx" + }, + { + "$ref": "#/$defs/_Stc" + }, + { + "$ref": "#/$defs/_Cc" + }, + { + "$ref": "#/$defs/_Fa" + }, + { + "$ref": "#/$defs/_Ccb" + }, + { + "$ref": "#/$defs/_Ee" + }, + { + "$ref": "#/$defs/_Fp" + }, + { + "$ref": "#/$defs/_Ccs" + }, + { + "$ref": "#/$defs/_Cst" + }, + { + "$ref": "#/$defs/_Cne" + }, + { + "$ref": "#/$defs/_Tspc" + }, + { + "$ref": "#/$defs/_Cuf" + }, + { + "$ref": "#/$defs/_Tspd" + }, + { + "$ref": "#/$defs/_Dtd" + }, + { + "$ref": "#/$defs/_Das" + }, + { + "$ref": "#/$defs/_Dc" + }, + { + "$ref": "#/$defs/_Df" + }, + { + "$ref": "#/$defs/_Dhc" + }, + { + "$ref": "#/$defs/_Lotd" + }, + { + "$ref": "#/$defs/_Drt" + }, + { + "$ref": "#/$defs/_Sctd" + }, + { + "$ref": "#/$defs/_Mfbse" + }, + { + "$ref": "#/$defs/_Ec" + }, + { + "$ref": "#/$defs/_Em" + }, + { + "$ref": "#/$defs/_Eps" + }, + { + "$ref": "#/$defs/_Viin" + }, + { + "$ref": "#/$defs/_Fr" + }, + { + "$ref": "#/$defs/_Fiber_Tracts" + }, + { + "$ref": "#/$defs/_Fi" + }, + { + "$ref": "#/$defs/_Fxs" + }, + { + "$ref": "#/$defs/_V4" + }, + { + "$ref": "#/$defs/_Ccg" + }, + { + "$ref": "#/$defs/_Gviin" + }, + { + "$ref": "#/$defs/_Hbc" + }, + { + "$ref": "#/$defs/_Hc" + }, + { + "$ref": "#/$defs/_Mfsbshy" + }, + { + "$ref": "#/$defs/_Icp" + }, + { + "$ref": "#/$defs/_Cic" + }, + { + "$ref": "#/$defs/_Int" + }, + { + "$ref": "#/$defs/_Lfbs" + }, + { + "$ref": "#/$defs/_Ll" + }, + { + "$ref": "#/$defs/_Lot" + }, + { + "$ref": "#/$defs/_Lotg" + }, + { + "$ref": "#/$defs/_V4R" + }, + { + "$ref": "#/$defs/_Vl" + }, + { + "$ref": "#/$defs/_Mp" + }, + { + "$ref": "#/$defs/_Mfbsma" + }, + { + "$ref": "#/$defs/_Mtg" + }, + { + "$ref": "#/$defs/_Mtt" + }, + { + "$ref": "#/$defs/_Mct" + }, + { + "$ref": "#/$defs/_Mfb" + }, + { + "$ref": "#/$defs/_Mfbs" + }, + { + "$ref": "#/$defs/_Ml" + }, + { + "$ref": "#/$defs/_Mlf" + }, + { + "$ref": "#/$defs/_Mcp" + }, + { + "$ref": "#/$defs/_Mov" + }, + { + "$ref": "#/$defs/_Nst" + }, + { + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ], + "title": "Targeted structure" + }, + "fov_coordinate_ml": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "FOV coordinate ML" + }, + "fov_coordinate_ap": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "FOV coordinate AP" + }, + "fov_coordinate_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "FOV coordinate unit" + }, + "fov_reference": { + "description": "Reference for ML/AP coordinates", + "title": "FOV reference", + "type": "string" + }, + "fov_width": { + "title": "FOV width (pixels)", + "type": "integer" + }, + "fov_height": { + "title": "FOV height (pixels)", + "type": "integer" + }, + "fov_size_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "pixel", + "title": "FOV size unit" + }, + "magnification": { + "title": "Magnification", + "type": "string" + }, + "fov_scale_factor": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "FOV scale factor (um/pixel)" + }, + "fov_scale_factor_unit": { + "default": "um/pixel", + "title": "FOV scale factor unit", + "type": "string" + }, + "frame_rate": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Frame rate (Hz)" + }, + "frame_rate_unit": { + "$ref": "#/$defs/FrequencyUnit", + "default": "hertz", + "title": "Frame rate unit" + }, + "coupled_fov_index": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Coupled planes for multiscope", + "title": "Coupled FOV" + }, + "power": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "For coupled planes, this power is shared by both planes", + "title": "Power" + }, + "power_unit": { + "$ref": "#/$defs/PowerUnit", + "default": "percent", + "title": "Power unit" + }, + "power_ratio": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Power ratio for coupled planes" + }, + "scanfield_z": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Z stage position of the fastz actuator for a given targeted depth" + }, + "scanfield_z_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Z stage position unit" + }, + "scanimage_roi_index": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "ScanImage ROI index" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + }, + "session_type": { + "$ref": "#/$defs/SlapSessionType", + "title": "Session type" + }, + "dmd_dilation_x": { + "title": "DMD Dilation X (pixels)", + "type": "integer" + }, + "dmd_dilation_y": { + "title": "DMD Dilation Y (pixels)", + "type": "integer" + }, + "dilation_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "pixel", + "title": "Dilation unit" + }, + "target_neuron": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Target neuron" + }, + "target_branch": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Target branch" + }, + "path_to_array_of_frame_rates": { + "title": "Array of frame rates", + "type": "string" + } + }, + "required": [ + "index", + "imaging_depth", + "targeted_structure", + "fov_coordinate_ml", + "fov_coordinate_ap", + "fov_reference", + "fov_width", + "fov_height", + "magnification", + "fov_scale_factor", + "session_type", + "dmd_dilation_x", + "dmd_dilation_y", + "path_to_array_of_frame_rates" + ], + "title": "SlapFieldOfView", + "type": "object" + }, + "SlapSessionType": { + "description": "Type of slap session", + "enum": [ + "Parent", + "Branch" + ], + "title": "SlapSessionType", + "type": "string" + }, + "Software": { + "additionalProperties": false, + "description": "Description of generic software", + "properties": { + "name": { + "title": "Software name", + "type": "string" + }, + "version": { + "title": "Software version", + "type": "string" + }, + "url": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "URL to commit being used" + }, + "parameters": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Software parameters" + } + }, + "required": [ + "name", + "version" + ], + "title": "Software", + "type": "object" + }, + "SoundIntensityUnit": { + "description": "Sound intensity units", + "enum": [ + "decibels" + ], + "title": "SoundIntensityUnit", + "type": "string" + }, + "SpeakerConfig": { + "additionalProperties": false, + "description": "Description of auditory speaker configuration", + "properties": { + "name": { + "description": "Must match rig json", + "title": "Name", + "type": "string" + }, + "volume": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Volume (dB)" + }, + "volume_unit": { + "$ref": "#/$defs/SoundIntensityUnit", + "default": "decibels", + "title": "Volume unit" + } + }, + "required": [ + "name" + ], + "title": "SpeakerConfig", + "type": "object" + }, + "SpoutSide": { + "description": "Spout sides", + "enum": [ + "Left", + "Right", + "Center", + "Other" + ], + "title": "SpoutSide", + "type": "string" + }, + "Stack": { + "additionalProperties": false, + "description": "Description of a two photon stack", + "properties": { + "channels": { + "items": { + "$ref": "#/$defs/StackChannel" + }, + "title": "Channels", + "type": "array" + }, + "number_of_planes": { + "title": "Number of planes", + "type": "integer" + }, + "step_size": { + "title": "Step size (um)", + "type": "number" + }, + "step_size_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Step size unit" + }, + "number_of_plane_repeats_per_volume": { + "title": "Number of repeats per volume", + "type": "integer" + }, + "number_of_volume_repeats": { + "title": "Number of volume repeats", + "type": "integer" + }, + "fov_coordinate_ml": { + "title": "FOV coordinate ML", + "type": "number" + }, + "fov_coordinate_ap": { + "title": "FOV coordinate AP", + "type": "number" + }, + "fov_coordinate_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "FOV coordinate unit" + }, + "fov_reference": { + "description": "Reference for ML/AP coordinates", + "title": "FOV reference", + "type": "string" + }, + "fov_width": { + "title": "FOV width (pixels)", + "type": "integer" + }, + "fov_height": { + "title": "FOV height (pixels)", + "type": "integer" + }, + "fov_size_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "pixel", + "title": "FOV size unit" + }, + "magnification": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Magnification" + }, + "fov_scale_factor": { + "title": "FOV scale factor (um/pixel)", + "type": "number" + }, + "fov_scale_factor_unit": { + "default": "um/pixel", + "title": "FOV scale factor unit", + "type": "string" + }, + "frame_rate": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Frame rate (Hz)" + }, + "frame_rate_unit": { + "$ref": "#/$defs/FrequencyUnit", + "default": "hertz", + "title": "Frame rate unit" + }, + "targeted_structure": { + "anyOf": [ + { + "discriminator": { + "mapping": { + "Abducens nucleus": "#/$defs/_Vi", + "Accessory facial motor nucleus": "#/$defs/_Acvii", + "Accessory olfactory bulb": "#/$defs/_Aob", + "Accessory olfactory bulb, glomerular layer": "#/$defs/_Aobgl", + "Accessory olfactory bulb, granular layer": "#/$defs/_Aobgr", + "Accessory olfactory bulb, mitral layer": "#/$defs/_Aobmi", + "Accessory supraoptic group": "#/$defs/_Aso", + "Accessory trigeminal nucleus": "#/$defs/_Acs5", + "Agranular insular area": "#/$defs/_Ai", + "Agranular insular area, dorsal part": "#/$defs/_Aid", + "Agranular insular area, dorsal part, layer 1": "#/$defs/_Aid1", + "Agranular insular area, dorsal part, layer 2/3": "#/$defs/_Aid2_3", + "Agranular insular area, dorsal part, layer 5": "#/$defs/_Aid5", + "Agranular insular area, dorsal part, layer 6a": "#/$defs/_Aid6A", + "Agranular insular area, dorsal part, layer 6b": "#/$defs/_Aid6B", + "Agranular insular area, posterior part": "#/$defs/_Aip", + "Agranular insular area, posterior part, layer 1": "#/$defs/_Aip1", + "Agranular insular area, posterior part, layer 2/3": "#/$defs/_Aip2_3", + "Agranular insular area, posterior part, layer 5": "#/$defs/_Aip5", + "Agranular insular area, posterior part, layer 6a": "#/$defs/_Aip6A", + "Agranular insular area, posterior part, layer 6b": "#/$defs/_Aip6B", + "Agranular insular area, ventral part": "#/$defs/_Aiv", + "Agranular insular area, ventral part, layer 1": "#/$defs/_Aiv1", + "Agranular insular area, ventral part, layer 2/3": "#/$defs/_Aiv2_3", + "Agranular insular area, ventral part, layer 5": "#/$defs/_Aiv5", + "Agranular insular area, ventral part, layer 6a": "#/$defs/_Aiv6A", + "Agranular insular area, ventral part, layer 6b": "#/$defs/_Aiv6B", + "Ammon's horn": "#/$defs/_Ca", + "Ansiform lobule": "#/$defs/_An", + "Anterior amygdalar area": "#/$defs/_Aaa", + "Anterior area": "#/$defs/_Visa", + "Anterior area, layer 1": "#/$defs/_Visa1", + "Anterior area, layer 2/3": "#/$defs/_Visa2_3", + "Anterior area, layer 4": "#/$defs/_Visa4", + "Anterior area, layer 5": "#/$defs/_Visa5", + "Anterior area, layer 6a": "#/$defs/_Visa6A", + "Anterior area, layer 6b": "#/$defs/_Visa6B", + "Anterior cingulate area": "#/$defs/_Aca", + "Anterior cingulate area, dorsal part": "#/$defs/_Acad", + "Anterior cingulate area, dorsal part, layer 1": "#/$defs/_Acad1", + "Anterior cingulate area, dorsal part, layer 2/3": "#/$defs/_Acad2_3", + "Anterior cingulate area, dorsal part, layer 5": "#/$defs/_Acad5", + "Anterior cingulate area, dorsal part, layer 6a": "#/$defs/_Acad6A", + "Anterior cingulate area, dorsal part, layer 6b": "#/$defs/_Acad6B", + "Anterior cingulate area, ventral part": "#/$defs/_Acav", + "Anterior cingulate area, ventral part, 6a": "#/$defs/_Acav6A", + "Anterior cingulate area, ventral part, 6b": "#/$defs/_Acav6B", + "Anterior cingulate area, ventral part, layer 1": "#/$defs/_Acav1", + "Anterior cingulate area, ventral part, layer 2/3": "#/$defs/_Acav2_3", + "Anterior cingulate area, ventral part, layer 5": "#/$defs/_Acav5", + "Anterior group of the dorsal thalamus": "#/$defs/_Atn", + "Anterior hypothalamic nucleus": "#/$defs/_Ahn", + "Anterior olfactory nucleus": "#/$defs/_Aon", + "Anterior pretectal nucleus": "#/$defs/_Apn", + "Anterior tegmental nucleus": "#/$defs/_At", + "Anterodorsal nucleus": "#/$defs/_Ad", + "Anterodorsal preoptic nucleus": "#/$defs/_Adp", + "Anterolateral visual area": "#/$defs/_Visal", + "Anterolateral visual area, layer 1": "#/$defs/_Visal1", + "Anterolateral visual area, layer 2/3": "#/$defs/_Visal2_3", + "Anterolateral visual area, layer 4": "#/$defs/_Visal4", + "Anterolateral visual area, layer 5": "#/$defs/_Visal5", + "Anterolateral visual area, layer 6a": "#/$defs/_Visal6A", + "Anterolateral visual area, layer 6b": "#/$defs/_Visal6B", + "Anteromedial nucleus": "#/$defs/_Am", + "Anteromedial nucleus, dorsal part": "#/$defs/_Amd", + "Anteromedial nucleus, ventral part": "#/$defs/_Amv", + "Anteromedial visual area": "#/$defs/_Visam", + "Anteromedial visual area, layer 1": "#/$defs/_Visam1", + "Anteromedial visual area, layer 2/3": "#/$defs/_Visam2_3", + "Anteromedial visual area, layer 4": "#/$defs/_Visam4", + "Anteromedial visual area, layer 5": "#/$defs/_Visam5", + "Anteromedial visual area, layer 6a": "#/$defs/_Visam6A", + "Anteromedial visual area, layer 6b": "#/$defs/_Visam6B", + "Anteroventral nucleus of thalamus": "#/$defs/_Av", + "Anteroventral periventricular nucleus": "#/$defs/_Avpv", + "Anteroventral preoptic nucleus": "#/$defs/_Avp", + "Arcuate hypothalamic nucleus": "#/$defs/_Arh", + "Area postrema": "#/$defs/_Ap", + "Area prostriata": "#/$defs/_Apr", + "Auditory areas": "#/$defs/_Aud", + "Barrington's nucleus": "#/$defs/_B", + "Basic cell groups and regions": "#/$defs/_Grey", + "Basolateral amygdalar nucleus": "#/$defs/_Bla", + "Basolateral amygdalar nucleus, anterior part": "#/$defs/_Blaa", + "Basolateral amygdalar nucleus, posterior part": "#/$defs/_Blap", + "Basolateral amygdalar nucleus, ventral part": "#/$defs/_Blav", + "Basomedial amygdalar nucleus": "#/$defs/_Bma", + "Basomedial amygdalar nucleus, anterior part": "#/$defs/_Bmaa", + "Basomedial amygdalar nucleus, posterior part": "#/$defs/_Bmap", + "Bed nuclei of the stria terminalis": "#/$defs/_Bst", + "Bed nucleus of the accessory olfactory tract": "#/$defs/_Ba", + "Bed nucleus of the anterior commissure": "#/$defs/_Bac", + "Brain stem": "#/$defs/_Bs", + "Caudoputamen": "#/$defs/_Cp", + "Central amygdalar nucleus": "#/$defs/_Cea", + "Central amygdalar nucleus, capsular part": "#/$defs/_Ceac", + "Central amygdalar nucleus, lateral part": "#/$defs/_Ceal", + "Central amygdalar nucleus, medial part": "#/$defs/_Ceam", + "Central lateral nucleus of the thalamus": "#/$defs/_Cl", + "Central linear nucleus raphe": "#/$defs/_Cli", + "Central lobule": "#/$defs/_Cent", + "Central medial nucleus of the thalamus": "#/$defs/_Cm", + "Cerebellar cortex": "#/$defs/_Cbx", + "Cerebellar nuclei": "#/$defs/_Cbn", + "Cerebellum": "#/$defs/_Cb", + "Cerebral cortex": "#/$defs/_Ctx", + "Cerebral nuclei": "#/$defs/_Cnu", + "Cerebrum": "#/$defs/_Ch", + "Claustrum": "#/$defs/_Cla", + "Cochlear nuclei": "#/$defs/_Cn", + "Copula pyramidis": "#/$defs/_Copy", + "Cortical amygdalar area": "#/$defs/_Coa", + "Cortical amygdalar area, anterior part": "#/$defs/_Coaa", + "Cortical amygdalar area, posterior part": "#/$defs/_Coap", + "Cortical amygdalar area, posterior part, lateral zone": "#/$defs/_Coapl", + "Cortical amygdalar area, posterior part, medial zone": "#/$defs/_Coapm", + "Cortical plate": "#/$defs/_Ctxpl", + "Cortical subplate": "#/$defs/_Ctxsp", + "Crus 1": "#/$defs/_Ancr1", + "Crus 2": "#/$defs/_Ancr2", + "Culmen": "#/$defs/_Cul", + "Cuneate nucleus": "#/$defs/_Cu", + "Cuneiform nucleus": "#/$defs/_Cun", + "Declive (VI)": "#/$defs/_Dec", + "Dentate gyrus": "#/$defs/_Dg", + "Dentate gyrus, granule cell layer": "#/$defs/_Dg_Sg", + "Dentate gyrus, molecular layer": "#/$defs/_Dg_Mo", + "Dentate gyrus, polymorph layer": "#/$defs/_Dg_Po", + "Dentate nucleus": "#/$defs/_Dn", + "Diagonal band nucleus": "#/$defs/_Ndb", + "Dorsal auditory area": "#/$defs/_Audd", + "Dorsal auditory area, layer 1": "#/$defs/_Audd1", + "Dorsal auditory area, layer 2/3": "#/$defs/_Audd2_3", + "Dorsal auditory area, layer 4": "#/$defs/_Audd4", + "Dorsal auditory area, layer 5": "#/$defs/_Audd5", + "Dorsal auditory area, layer 6a": "#/$defs/_Audd6A", + "Dorsal auditory area, layer 6b": "#/$defs/_Audd6B", + "Dorsal cochlear nucleus": "#/$defs/_Dco", + "Dorsal column nuclei": "#/$defs/_Dcn", + "Dorsal motor nucleus of the vagus nerve": "#/$defs/_Dmx", + "Dorsal nucleus raphe": "#/$defs/_Dr", + "Dorsal part of the lateral geniculate complex": "#/$defs/_Lgd", + "Dorsal part of the lateral geniculate complex, core": "#/$defs/_Lgd_Co", + "Dorsal part of the lateral geniculate complex, ipsilateral zone": "#/$defs/_Lgd_Ip", + "Dorsal part of the lateral geniculate complex, shell": "#/$defs/_Lgd_Sh", + "Dorsal peduncular area": "#/$defs/_Dp", + "Dorsal premammillary nucleus": "#/$defs/_Pmd", + "Dorsal tegmental nucleus": "#/$defs/_Dtn", + "Dorsal terminal nucleus of the accessory optic tract": "#/$defs/_Dt", + "Dorsomedial nucleus of the hypothalamus": "#/$defs/_Dmh", + "Ectorhinal area": "#/$defs/_Ect", + "Ectorhinal area/Layer 1": "#/$defs/_Ect1", + "Ectorhinal area/Layer 2/3": "#/$defs/_Ect2_3", + "Ectorhinal area/Layer 5": "#/$defs/_Ect5", + "Ectorhinal area/Layer 6a": "#/$defs/_Ect6A", + "Ectorhinal area/Layer 6b": "#/$defs/_Ect6B", + "Edinger-Westphal nucleus": "#/$defs/_Ew", + "Endopiriform nucleus": "#/$defs/_Ep", + "Endopiriform nucleus, dorsal part": "#/$defs/_Epd", + "Endopiriform nucleus, ventral part": "#/$defs/_Epv", + "Entorhinal area": "#/$defs/_Ent", + "Entorhinal area, lateral part": "#/$defs/_Entl", + "Entorhinal area, lateral part, layer 1": "#/$defs/_Entl1", + "Entorhinal area, lateral part, layer 2": "#/$defs/_Entl2", + "Entorhinal area, lateral part, layer 3": "#/$defs/_Entl3", + "Entorhinal area, lateral part, layer 5": "#/$defs/_Entl5", + "Entorhinal area, lateral part, layer 6a": "#/$defs/_Entl6A", + "Entorhinal area, medial part, dorsal zone": "#/$defs/_Entm", + "Entorhinal area, medial part, dorsal zone, layer 1": "#/$defs/_Entm1", + "Entorhinal area, medial part, dorsal zone, layer 2": "#/$defs/_Entm2", + "Entorhinal area, medial part, dorsal zone, layer 3": "#/$defs/_Entm3", + "Entorhinal area, medial part, dorsal zone, layer 5": "#/$defs/_Entm5", + "Entorhinal area, medial part, dorsal zone, layer 6": "#/$defs/_Entm6", + "Epithalamus": "#/$defs/_Epi", + "Ethmoid nucleus of the thalamus": "#/$defs/_Eth", + "External cuneate nucleus": "#/$defs/_Ecu", + "Facial motor nucleus": "#/$defs/_Vii", + "Fasciola cinerea": "#/$defs/_Fc", + "Fastigial nucleus": "#/$defs/_Fn", + "Field CA1": "#/$defs/_Ca1", + "Field CA2": "#/$defs/_Ca2", + "Field CA3": "#/$defs/_Ca3", + "Fields of Forel": "#/$defs/_Ff", + "Flocculus": "#/$defs/_Fl", + "Folium-tuber vermis (VII)": "#/$defs/_Fotu", + "Frontal pole, cerebral cortex": "#/$defs/_Frp", + "Frontal pole, layer 1": "#/$defs/_Frp1", + "Frontal pole, layer 2/3": "#/$defs/_Frp2_3", + "Frontal pole, layer 5": "#/$defs/_Frp5", + "Frontal pole, layer 6a": "#/$defs/_Frp6A", + "Frontal pole, layer 6b": "#/$defs/_Frp6B", + "Fundus of striatum": "#/$defs/_Fs", + "Geniculate group, dorsal thalamus": "#/$defs/_Gend", + "Geniculate group, ventral thalamus": "#/$defs/_Genv", + "Gigantocellular reticular nucleus": "#/$defs/_Grn", + "Globus pallidus, external segment": "#/$defs/_Gpe", + "Globus pallidus, internal segment": "#/$defs/_Gpi", + "Gracile nucleus": "#/$defs/_Gr", + "Gustatory areas": "#/$defs/_Gu", + "Gustatory areas, layer 1": "#/$defs/_Gu1", + "Gustatory areas, layer 2/3": "#/$defs/_Gu2_3", + "Gustatory areas, layer 4": "#/$defs/_Gu4", + "Gustatory areas, layer 5": "#/$defs/_Gu5", + "Gustatory areas, layer 6a": "#/$defs/_Gu6A", + "Gustatory areas, layer 6b": "#/$defs/_Gu6B", + "Hemispheric regions": "#/$defs/_Hem", + "Hindbrain": "#/$defs/_Hb", + "Hippocampal formation": "#/$defs/_Hpf", + "Hippocampal region": "#/$defs/_Hip", + "Hippocampo-amygdalar transition area": "#/$defs/_Hata", + "Hypoglossal nucleus": "#/$defs/_Xii", + "Hypothalamic lateral zone": "#/$defs/_Lz", + "Hypothalamic medial zone": "#/$defs/_Mez", + "Hypothalamus": "#/$defs/_Hy", + "Induseum griseum": "#/$defs/_Ig", + "Inferior colliculus": "#/$defs/_Ic", + "Inferior colliculus, central nucleus": "#/$defs/_Icc", + "Inferior colliculus, dorsal nucleus": "#/$defs/_Icd", + "Inferior colliculus, external nucleus": "#/$defs/_Ice", + "Inferior olivary complex": "#/$defs/_Io", + "Inferior salivatory nucleus": "#/$defs/_Isn", + "Infracerebellar nucleus": "#/$defs/_Icb", + "Infralimbic area": "#/$defs/_Ila", + "Infralimbic area, layer 1": "#/$defs/_Ila1", + "Infralimbic area, layer 2/3": "#/$defs/_Ila2_3", + "Infralimbic area, layer 5": "#/$defs/_Ila5", + "Infralimbic area, layer 6a": "#/$defs/_Ila6A", + "Infralimbic area, layer 6b": "#/$defs/_Ila6B", + "Interanterodorsal nucleus of the thalamus": "#/$defs/_Iad", + "Interanteromedial nucleus of the thalamus": "#/$defs/_Iam", + "Interbrain": "#/$defs/_Ib", + "Intercalated amygdalar nucleus": "#/$defs/_Ia", + "Interfascicular nucleus raphe": "#/$defs/_If", + "Intergeniculate leaflet of the lateral geniculate complex": "#/$defs/_Igl", + "Intermediate geniculate nucleus": "#/$defs/_Intg", + "Intermediate reticular nucleus": "#/$defs/_Irn", + "Intermediodorsal nucleus of the thalamus": "#/$defs/_Imd", + "Interpeduncular nucleus": "#/$defs/_Ipn", + "Interpeduncular nucleus, apical": "#/$defs/_Ipa", + "Interpeduncular nucleus, caudal": "#/$defs/_Ipc", + "Interpeduncular nucleus, dorsolateral": "#/$defs/_Ipdl", + "Interpeduncular nucleus, dorsomedial": "#/$defs/_Ipdm", + "Interpeduncular nucleus, intermediate": "#/$defs/_Ipi", + "Interpeduncular nucleus, lateral": "#/$defs/_Ipl", + "Interpeduncular nucleus, rostral": "#/$defs/_Ipr", + "Interpeduncular nucleus, rostrolateral": "#/$defs/_Iprl", + "Interposed nucleus": "#/$defs/_Ip", + "Interstitial nucleus of Cajal": "#/$defs/_Inc", + "Intertrigeminal nucleus": "#/$defs/_I5", + "Intralaminar nuclei of the dorsal thalamus": "#/$defs/_Ilm", + "Isocortex": "#/$defs/_Isocortex", + "Koelliker-Fuse subnucleus": "#/$defs/_Kf", + "Lateral amygdalar nucleus": "#/$defs/_La", + "Lateral dorsal nucleus of thalamus": "#/$defs/_Ld", + "Lateral group of the dorsal thalamus": "#/$defs/_Lat", + "Lateral habenula": "#/$defs/_Lh", + "Lateral hypothalamic area": "#/$defs/_Lha", + "Lateral mammillary nucleus": "#/$defs/_Lm", + "Lateral posterior nucleus of the thalamus": "#/$defs/_Lp", + "Lateral preoptic area": "#/$defs/_Lpo", + "Lateral reticular nucleus": "#/$defs/_Lrn", + "Lateral reticular nucleus, magnocellular part": "#/$defs/_Lrnm", + "Lateral reticular nucleus, parvicellular part": "#/$defs/_Lrnp", + "Lateral septal complex": "#/$defs/_Lsx", + "Lateral septal nucleus": "#/$defs/_Ls", + "Lateral septal nucleus, caudal (caudodorsal) part": "#/$defs/_Lsc", + "Lateral septal nucleus, rostral (rostroventral) part": "#/$defs/_Lsr", + "Lateral septal nucleus, ventral part": "#/$defs/_Lsv", + "Lateral terminal nucleus of the accessory optic tract": "#/$defs/_Lt", + "Lateral vestibular nucleus": "#/$defs/_Lav", + "Lateral visual area": "#/$defs/_Visl", + "Lateral visual area, layer 1": "#/$defs/_Visl1", + "Lateral visual area, layer 2/3": "#/$defs/_Visl2_3", + "Lateral visual area, layer 4": "#/$defs/_Visl4", + "Lateral visual area, layer 5": "#/$defs/_Visl5", + "Lateral visual area, layer 6a": "#/$defs/_Visl6A", + "Lateral visual area, layer 6b": "#/$defs/_Visl6B", + "Laterodorsal tegmental nucleus": "#/$defs/_Ldt", + "Laterointermediate area": "#/$defs/_Visli", + "Laterointermediate area, layer 1": "#/$defs/_Visli1", + "Laterointermediate area, layer 2/3": "#/$defs/_Visli2_3", + "Laterointermediate area, layer 4": "#/$defs/_Visli4", + "Laterointermediate area, layer 5": "#/$defs/_Visli5", + "Laterointermediate area, layer 6a": "#/$defs/_Visli6A", + "Laterointermediate area, layer 6b": "#/$defs/_Visli6B", + "Linear nucleus of the medulla": "#/$defs/_Lin", + "Lingula (I)": "#/$defs/_Ling", + "Lobule II": "#/$defs/_Cent2", + "Lobule III": "#/$defs/_Cent3", + "Lobules IV-V": "#/$defs/_Cul4_5", + "Locus ceruleus": "#/$defs/_Lc", + "Magnocellular nucleus": "#/$defs/_Ma", + "Magnocellular reticular nucleus": "#/$defs/_Marn", + "Main olfactory bulb": "#/$defs/_Mob", + "Mammillary body": "#/$defs/_Mbo", + "Medial accesory oculomotor nucleus": "#/$defs/_Ma3", + "Medial amygdalar nucleus": "#/$defs/_Mea", + "Medial geniculate complex": "#/$defs/_Mg", + "Medial geniculate complex, dorsal part": "#/$defs/_Mgd", + "Medial geniculate complex, medial part": "#/$defs/_Mgm", + "Medial geniculate complex, ventral part": "#/$defs/_Mgv", + "Medial group of the dorsal thalamus": "#/$defs/_Med", + "Medial habenula": "#/$defs/_Mh", + "Medial mammillary nucleus": "#/$defs/_Mm", + "Medial mammillary nucleus, dorsal part": "#/$defs/_Mmd", + "Medial mammillary nucleus, lateral part": "#/$defs/_Mml", + "Medial mammillary nucleus, medial part": "#/$defs/_Mmm", + "Medial mammillary nucleus, median part": "#/$defs/_Mmme", + "Medial mammillary nucleus, posterior part": "#/$defs/_Mmp", + "Medial preoptic area": "#/$defs/_Mpo", + "Medial preoptic nucleus": "#/$defs/_Mpn", + "Medial pretectal area": "#/$defs/_Mpt", + "Medial septal complex": "#/$defs/_Msc", + "Medial septal nucleus": "#/$defs/_Ms", + "Medial terminal nucleus of the accessory optic tract": "#/$defs/_Mt", + "Medial vestibular nucleus": "#/$defs/_Mv", + "Median eminence": "#/$defs/_Me", + "Median preoptic nucleus": "#/$defs/_Mepo", + "Mediodorsal nucleus of thalamus": "#/$defs/_Md", + "Medulla": "#/$defs/_My", + "Medulla, behavioral state related": "#/$defs/_My_Sat", + "Medulla, motor related": "#/$defs/_My_Mot", + "Medulla, sensory related": "#/$defs/_My_Sen", + "Medullary reticular nucleus": "#/$defs/_Mdrn", + "Medullary reticular nucleus, dorsal part": "#/$defs/_Mdrnd", + "Medullary reticular nucleus, ventral part": "#/$defs/_Mdrnv", + "Midbrain": "#/$defs/_Mb", + "Midbrain raphe nuclei": "#/$defs/_Ramb", + "Midbrain reticular nucleus": "#/$defs/_Mrn", + "Midbrain reticular nucleus, retrorubral area": "#/$defs/_Rr", + "Midbrain trigeminal nucleus": "#/$defs/_Mev", + "Midbrain, behavioral state related": "#/$defs/_Mbsta", + "Midbrain, motor related": "#/$defs/_Mbmot", + "Midbrain, sensory related": "#/$defs/_Mbsen", + "Midline group of the dorsal thalamus": "#/$defs/_Mtn", + "Motor nucleus of trigeminal": "#/$defs/_V", + "Nodulus (X)": "#/$defs/_Nod", + "Nucleus accumbens": "#/$defs/_Acb", + "Nucleus ambiguus": "#/$defs/_Amb", + "Nucleus ambiguus, dorsal division": "#/$defs/_Ambd", + "Nucleus ambiguus, ventral division": "#/$defs/_Ambv", + "Nucleus incertus": "#/$defs/_Ni", + "Nucleus of Darkschewitsch": "#/$defs/_Nd", + "Nucleus of Roller": "#/$defs/_Nr", + "Nucleus of reuniens": "#/$defs/_Re", + "Nucleus of the brachium of the inferior colliculus": "#/$defs/_Nb", + "Nucleus of the lateral lemniscus": "#/$defs/_Nll", + "Nucleus of the lateral olfactory tract": "#/$defs/_Nlot", + "Nucleus of the lateral olfactory tract, layer 3": "#/$defs/_Nlot3", + "Nucleus of the lateral olfactory tract, molecular layer": "#/$defs/_Nlot1", + "Nucleus of the lateral olfactory tract, pyramidal layer": "#/$defs/_Nlot2", + "Nucleus of the optic tract": "#/$defs/_Not", + "Nucleus of the posterior commissure": "#/$defs/_Npc", + "Nucleus of the solitary tract": "#/$defs/_Nts", + "Nucleus of the trapezoid body": "#/$defs/_Ntb", + "Nucleus prepositus": "#/$defs/_Prp", + "Nucleus raphe magnus": "#/$defs/_Rm", + "Nucleus raphe obscurus": "#/$defs/_Ro", + "Nucleus raphe pallidus": "#/$defs/_Rpa", + "Nucleus raphe pontis": "#/$defs/_Rpo", + "Nucleus sagulum": "#/$defs/_Sag", + "Nucleus x": "#/$defs/_X", + "Nucleus y": "#/$defs/_Y", + "Oculomotor nucleus": "#/$defs/_Iii", + "Olfactory areas": "#/$defs/_Olf", + "Olfactory tubercle": "#/$defs/_Ot", + "Olivary pretectal nucleus": "#/$defs/_Op", + "Orbital area": "#/$defs/_Orb", + "Orbital area, lateral part": "#/$defs/_Orbl", + "Orbital area, lateral part, layer 1": "#/$defs/_Orbl1", + "Orbital area, lateral part, layer 2/3": "#/$defs/_Orbl2_3", + "Orbital area, lateral part, layer 5": "#/$defs/_Orbl5", + "Orbital area, lateral part, layer 6a": "#/$defs/_Orbl6A", + "Orbital area, lateral part, layer 6b": "#/$defs/_Orbl6B", + "Orbital area, medial part": "#/$defs/_Orbm", + "Orbital area, medial part, layer 1": "#/$defs/_Orbm1", + "Orbital area, medial part, layer 2/3": "#/$defs/_Orbm2_3", + "Orbital area, medial part, layer 5": "#/$defs/_Orbm5", + "Orbital area, medial part, layer 6a": "#/$defs/_Orbm6A", + "Orbital area, medial part, layer 6b": "#/$defs/_Orbm6B", + "Orbital area, ventrolateral part": "#/$defs/_Orbvl", + "Orbital area, ventrolateral part, layer 1": "#/$defs/_Orbvl1", + "Orbital area, ventrolateral part, layer 2/3": "#/$defs/_Orbvl2_3", + "Orbital area, ventrolateral part, layer 5": "#/$defs/_Orbvl5", + "Orbital area, ventrolateral part, layer 6a": "#/$defs/_Orbvl6A", + "Orbital area, ventrolateral part, layer 6b": "#/$defs/_Orbvl6B", + "Pallidum": "#/$defs/_Pal", + "Pallidum, caudal region": "#/$defs/_Palc", + "Pallidum, dorsal region": "#/$defs/_Pald", + "Pallidum, medial region": "#/$defs/_Palm", + "Pallidum, ventral region": "#/$defs/_Palv", + "Parabigeminal nucleus": "#/$defs/_Pbg", + "Parabrachial nucleus": "#/$defs/_Pb", + "Paracentral nucleus": "#/$defs/_Pcn", + "Parafascicular nucleus": "#/$defs/_Pf", + "Paraflocculus": "#/$defs/_Pfl", + "Paragigantocellular reticular nucleus": "#/$defs/_Pgrn", + "Paragigantocellular reticular nucleus, dorsal part": "#/$defs/_Pgrnd", + "Paragigantocellular reticular nucleus, lateral part": "#/$defs/_Pgrnl", + "Paramedian lobule": "#/$defs/_Prm", + "Paranigral nucleus": "#/$defs/_Pn", + "Parapyramidal nucleus": "#/$defs/_Ppy", + "Parasolitary nucleus": "#/$defs/_Pas", + "Parastrial nucleus": "#/$defs/_Ps", + "Parasubiculum": "#/$defs/_Par", + "Parasubthalamic nucleus": "#/$defs/_Pstn", + "Parataenial nucleus": "#/$defs/_Pt", + "Paratrigeminal nucleus": "#/$defs/_Pa5", + "Paratrochlear nucleus": "#/$defs/_Pa4", + "Paraventricular hypothalamic nucleus": "#/$defs/_Pvh", + "Paraventricular hypothalamic nucleus, descending division": "#/$defs/_Pvhd", + "Paraventricular nucleus of the thalamus": "#/$defs/_Pvt", + "Parvicellular motor 5 nucleus": "#/$defs/_Pc5", + "Parvicellular reticular nucleus": "#/$defs/_Parn", + "Pedunculopontine nucleus": "#/$defs/_Ppn", + "Periaqueductal gray": "#/$defs/_Pag", + "Perifornical nucleus": "#/$defs/_Pef", + "Perihypoglossal nuclei": "#/$defs/_Phy", + "Peripeduncular nucleus": "#/$defs/_Pp", + "Perireunensis nucleus": "#/$defs/_Pr", + "Perirhinal area": "#/$defs/_Peri", + "Perirhinal area, layer 1": "#/$defs/_Peri1", + "Perirhinal area, layer 2/3": "#/$defs/_Peri2_3", + "Perirhinal area, layer 5": "#/$defs/_Peri5", + "Perirhinal area, layer 6a": "#/$defs/_Peri6A", + "Perirhinal area, layer 6b": "#/$defs/_Peri6B", + "Peritrigeminal zone": "#/$defs/_P5", + "Periventricular hypothalamic nucleus, anterior part": "#/$defs/_Pva", + "Periventricular hypothalamic nucleus, intermediate part": "#/$defs/_Pvi", + "Periventricular hypothalamic nucleus, posterior part": "#/$defs/_Pvp", + "Periventricular hypothalamic nucleus, preoptic part": "#/$defs/_Pvpo", + "Periventricular region": "#/$defs/_Pvr", + "Periventricular zone": "#/$defs/_Pvz", + "Piriform area": "#/$defs/_Pir", + "Piriform-amygdalar area": "#/$defs/_Paa", + "Pons": "#/$defs/_P", + "Pons, behavioral state related": "#/$defs/_P_Sat", + "Pons, motor related": "#/$defs/_P_Mot", + "Pons, sensory related": "#/$defs/_P_Sen", + "Pontine central gray": "#/$defs/_Pcg", + "Pontine gray": "#/$defs/_Pg", + "Pontine reticular nucleus": "#/$defs/_Prnr", + "Pontine reticular nucleus, caudal part": "#/$defs/_Prnc", + "Posterior amygdalar nucleus": "#/$defs/_Pa", + "Posterior auditory area": "#/$defs/_Audpo", + "Posterior auditory area, layer 1": "#/$defs/_Audpo1", + "Posterior auditory area, layer 2/3": "#/$defs/_Audpo2_3", + "Posterior auditory area, layer 4": "#/$defs/_Audpo4", + "Posterior auditory area, layer 5": "#/$defs/_Audpo5", + "Posterior auditory area, layer 6a": "#/$defs/_Audpo6A", + "Posterior auditory area, layer 6b": "#/$defs/_Audpo6B", + "Posterior complex of the thalamus": "#/$defs/_Po", + "Posterior hypothalamic nucleus": "#/$defs/_Ph", + "Posterior intralaminar thalamic nucleus": "#/$defs/_Pil", + "Posterior limiting nucleus of the thalamus": "#/$defs/_Pol", + "Posterior parietal association areas": "#/$defs/_Ptlp", + "Posterior pretectal nucleus": "#/$defs/_Ppt", + "Posterior triangular thalamic nucleus": "#/$defs/_Pot", + "Posterodorsal preoptic nucleus": "#/$defs/_Pd", + "Posterodorsal tegmental nucleus": "#/$defs/_Pdtg", + "Posterolateral visual area": "#/$defs/_Vispl", + "Posterolateral visual area, layer 1": "#/$defs/_Vispl1", + "Posterolateral visual area, layer 2/3": "#/$defs/_Vispl2_3", + "Posterolateral visual area, layer 4": "#/$defs/_Vispl4", + "Posterolateral visual area, layer 5": "#/$defs/_Vispl5", + "Posterolateral visual area, layer 6a": "#/$defs/_Vispl6A", + "Posterolateral visual area, layer 6b": "#/$defs/_Vispl6B", + "Postpiriform transition area": "#/$defs/_Tr", + "Postrhinal area": "#/$defs/_Vispor", + "Postrhinal area, layer 1": "#/$defs/_Vispor1", + "Postrhinal area, layer 2/3": "#/$defs/_Vispor2_3", + "Postrhinal area, layer 4": "#/$defs/_Vispor4", + "Postrhinal area, layer 5": "#/$defs/_Vispor5", + "Postrhinal area, layer 6a": "#/$defs/_Vispor6A", + "Postrhinal area, layer 6b": "#/$defs/_Vispor6B", + "Postsubiculum": "#/$defs/_Post", + "Precommissural nucleus": "#/$defs/_Prc", + "Prelimbic area": "#/$defs/_Pl", + "Prelimbic area, layer 1": "#/$defs/_Pl1", + "Prelimbic area, layer 2/3": "#/$defs/_Pl2_3", + "Prelimbic area, layer 5": "#/$defs/_Pl5", + "Prelimbic area, layer 6a": "#/$defs/_Pl6A", + "Prelimbic area, layer 6b": "#/$defs/_Pl6B", + "Preparasubthalamic nucleus": "#/$defs/_Pst", + "Presubiculum": "#/$defs/_Pre", + "Pretectal region": "#/$defs/_Prt", + "Primary auditory area": "#/$defs/_Audp", + "Primary auditory area, layer 1": "#/$defs/_Audp1", + "Primary auditory area, layer 2/3": "#/$defs/_Audp2_3", + "Primary auditory area, layer 4": "#/$defs/_Audp4", + "Primary auditory area, layer 5": "#/$defs/_Audp5", + "Primary auditory area, layer 6a": "#/$defs/_Audp6A", + "Primary auditory area, layer 6b": "#/$defs/_Audp6B", + "Primary motor area": "#/$defs/_Mop", + "Primary motor area, Layer 1": "#/$defs/_Mop1", + "Primary motor area, Layer 2/3": "#/$defs/_Mop2_3", + "Primary motor area, Layer 5": "#/$defs/_Mop5", + "Primary motor area, Layer 6a": "#/$defs/_Mop6A", + "Primary motor area, Layer 6b": "#/$defs/_Mop6B", + "Primary somatosensory area": "#/$defs/_Ssp", + "Primary somatosensory area, barrel field": "#/$defs/_Ssp_Bfd", + "Primary somatosensory area, barrel field, layer 1": "#/$defs/_Ssp_Bfd1", + "Primary somatosensory area, barrel field, layer 2/3": "#/$defs/_Ssp_Bfd2_3", + "Primary somatosensory area, barrel field, layer 4": "#/$defs/_Ssp_Bfd4", + "Primary somatosensory area, barrel field, layer 5": "#/$defs/_Ssp_Bfd5", + "Primary somatosensory area, barrel field, layer 6a": "#/$defs/_Ssp_Bfd6A", + "Primary somatosensory area, barrel field, layer 6b": "#/$defs/_Ssp_Bfd6B", + "Primary somatosensory area, lower limb": "#/$defs/_Ssp_Ll", + "Primary somatosensory area, lower limb, layer 1": "#/$defs/_Ssp_Ll1", + "Primary somatosensory area, lower limb, layer 2/3": "#/$defs/_Ssp_Ll2_3", + "Primary somatosensory area, lower limb, layer 4": "#/$defs/_Ssp_Ll4", + "Primary somatosensory area, lower limb, layer 5": "#/$defs/_Ssp_Ll5", + "Primary somatosensory area, lower limb, layer 6a": "#/$defs/_Ssp_Ll6A", + "Primary somatosensory area, lower limb, layer 6b": "#/$defs/_Ssp_Ll6B", + "Primary somatosensory area, mouth": "#/$defs/_Ssp_M", + "Primary somatosensory area, mouth, layer 1": "#/$defs/_Ssp_M1", + "Primary somatosensory area, mouth, layer 2/3": "#/$defs/_Ssp_M2_3", + "Primary somatosensory area, mouth, layer 4": "#/$defs/_Ssp_M4", + "Primary somatosensory area, mouth, layer 5": "#/$defs/_Ssp_M5", + "Primary somatosensory area, mouth, layer 6a": "#/$defs/_Ssp_M6A", + "Primary somatosensory area, mouth, layer 6b": "#/$defs/_Ssp_M6B", + "Primary somatosensory area, nose": "#/$defs/_Ssp_N", + "Primary somatosensory area, nose, layer 1": "#/$defs/_Ssp_N1", + "Primary somatosensory area, nose, layer 2/3": "#/$defs/_Ssp_N2_3", + "Primary somatosensory area, nose, layer 4": "#/$defs/_Ssp_N4", + "Primary somatosensory area, nose, layer 5": "#/$defs/_Ssp_N5", + "Primary somatosensory area, nose, layer 6a": "#/$defs/_Ssp_N6A", + "Primary somatosensory area, nose, layer 6b": "#/$defs/_Ssp_N6B", + "Primary somatosensory area, trunk": "#/$defs/_Ssp_Tr", + "Primary somatosensory area, trunk, layer 1": "#/$defs/_Ssp_Tr1", + "Primary somatosensory area, trunk, layer 2/3": "#/$defs/_Ssp_Tr2_3", + "Primary somatosensory area, trunk, layer 4": "#/$defs/_Ssp_Tr4", + "Primary somatosensory area, trunk, layer 5": "#/$defs/_Ssp_Tr5", + "Primary somatosensory area, trunk, layer 6a": "#/$defs/_Ssp_Tr6A", + "Primary somatosensory area, trunk, layer 6b": "#/$defs/_Ssp_Tr6B", + "Primary somatosensory area, unassigned": "#/$defs/_Ssp_Un", + "Primary somatosensory area, unassigned, layer 1": "#/$defs/_Ssp_Un1", + "Primary somatosensory area, unassigned, layer 2/3": "#/$defs/_Ssp_Un2_3", + "Primary somatosensory area, unassigned, layer 4": "#/$defs/_Ssp_Un4", + "Primary somatosensory area, unassigned, layer 5": "#/$defs/_Ssp_Un5", + "Primary somatosensory area, unassigned, layer 6a": "#/$defs/_Ssp_Un6A", + "Primary somatosensory area, unassigned, layer 6b": "#/$defs/_Ssp_Un6B", + "Primary somatosensory area, upper limb": "#/$defs/_Ssp_Ul", + "Primary somatosensory area, upper limb, layer 1": "#/$defs/_Ssp_Ul1", + "Primary somatosensory area, upper limb, layer 2/3": "#/$defs/_Ssp_Ul2_3", + "Primary somatosensory area, upper limb, layer 4": "#/$defs/_Ssp_Ul4", + "Primary somatosensory area, upper limb, layer 5": "#/$defs/_Ssp_Ul5", + "Primary somatosensory area, upper limb, layer 6a": "#/$defs/_Ssp_Ul6A", + "Primary somatosensory area, upper limb, layer 6b": "#/$defs/_Ssp_Ul6B", + "Primary visual area": "#/$defs/_Visp", + "Primary visual area, layer 1": "#/$defs/_Visp1", + "Primary visual area, layer 2/3": "#/$defs/_Visp2_3", + "Primary visual area, layer 4": "#/$defs/_Visp4", + "Primary visual area, layer 5": "#/$defs/_Visp5", + "Primary visual area, layer 6a": "#/$defs/_Visp6A", + "Primary visual area, layer 6b": "#/$defs/_Visp6B", + "Principal sensory nucleus of the trigeminal": "#/$defs/_Psv", + "Prosubiculum": "#/$defs/_Pros", + "Pyramus (VIII)": "#/$defs/_Pyr", + "Red nucleus": "#/$defs/_Rn", + "Reticular nucleus of the thalamus": "#/$defs/_Rt", + "Retrochiasmatic area": "#/$defs/_Rch", + "Retrohippocampal region": "#/$defs/_Rhp", + "Retroparafascicular nucleus": "#/$defs/_Rpf", + "Retrosplenial area": "#/$defs/_Rsp", + "Retrosplenial area, dorsal part": "#/$defs/_Rspd", + "Retrosplenial area, dorsal part, layer 1": "#/$defs/_Rspd1", + "Retrosplenial area, dorsal part, layer 2/3": "#/$defs/_Rspd2_3", + "Retrosplenial area, dorsal part, layer 4": "#/$defs/_Rspd4", + "Retrosplenial area, dorsal part, layer 5": "#/$defs/_Rspd5", + "Retrosplenial area, dorsal part, layer 6a": "#/$defs/_Rspd6A", + "Retrosplenial area, dorsal part, layer 6b": "#/$defs/_Rspd6B", + "Retrosplenial area, lateral agranular part": "#/$defs/_Rspagl", + "Retrosplenial area, lateral agranular part, layer 1": "#/$defs/_Rspagl1", + "Retrosplenial area, lateral agranular part, layer 2/3": "#/$defs/_Rspagl2_3", + "Retrosplenial area, lateral agranular part, layer 5": "#/$defs/_Rspagl5", + "Retrosplenial area, lateral agranular part, layer 6a": "#/$defs/_Rspagl6A", + "Retrosplenial area, lateral agranular part, layer 6b": "#/$defs/_Rspagl6B", + "Retrosplenial area, ventral part": "#/$defs/_Rspv", + "Retrosplenial area, ventral part, layer 1": "#/$defs/_Rspv1", + "Retrosplenial area, ventral part, layer 2/3": "#/$defs/_Rspv2_3", + "Retrosplenial area, ventral part, layer 5": "#/$defs/_Rspv5", + "Retrosplenial area, ventral part, layer 6a": "#/$defs/_Rspv6A", + "Retrosplenial area, ventral part, layer 6b": "#/$defs/_Rspv6B", + "Rhomboid nucleus": "#/$defs/_Rh", + "Rostral linear nucleus raphe": "#/$defs/_Rl", + "Rostrolateral area, layer 1": "#/$defs/_Visrl1", + "Rostrolateral area, layer 2/3": "#/$defs/_Visrl2_3", + "Rostrolateral area, layer 4": "#/$defs/_Visrl4", + "Rostrolateral area, layer 5": "#/$defs/_Visrl5", + "Rostrolateral area, layer 6a": "#/$defs/_Visrl6A", + "Rostrolateral area, layer 6b": "#/$defs/_Visrl6B", + "Rostrolateral visual area": "#/$defs/_Visrl", + "Secondary motor area": "#/$defs/_Mos", + "Secondary motor area, layer 1": "#/$defs/_Mos1", + "Secondary motor area, layer 2/3": "#/$defs/_Mos2_3", + "Secondary motor area, layer 5": "#/$defs/_Mos5", + "Secondary motor area, layer 6a": "#/$defs/_Mos6A", + "Secondary motor area, layer 6b": "#/$defs/_Mos6B", + "Septofimbrial nucleus": "#/$defs/_Sf", + "Septohippocampal nucleus": "#/$defs/_Sh", + "Simple lobule": "#/$defs/_Sim", + "Somatomotor areas": "#/$defs/_Mo", + "Somatosensory areas": "#/$defs/_Ss", + "Spinal nucleus of the trigeminal, caudal part": "#/$defs/_Spvc", + "Spinal nucleus of the trigeminal, interpolar part": "#/$defs/_Spvi", + "Spinal nucleus of the trigeminal, oral part": "#/$defs/_Spvo", + "Spinal vestibular nucleus": "#/$defs/_Spiv", + "Striatum": "#/$defs/_Str", + "Striatum dorsal region": "#/$defs/_Strd", + "Striatum ventral region": "#/$defs/_Strv", + "Striatum-like amygdalar nuclei": "#/$defs/_Samy", + "Subceruleus nucleus": "#/$defs/_Slc", + "Subcommissural organ": "#/$defs/_Sco", + "Subfornical organ": "#/$defs/_Sfo", + "Subgeniculate nucleus": "#/$defs/_Subg", + "Subiculum": "#/$defs/_Sub", + "Sublaterodorsal nucleus": "#/$defs/_Sld", + "Submedial nucleus of the thalamus": "#/$defs/_Smt", + "Subparafascicular area": "#/$defs/_Spa", + "Subparafascicular nucleus": "#/$defs/_Spf", + "Subparafascicular nucleus, magnocellular part": "#/$defs/_Spfm", + "Subparafascicular nucleus, parvicellular part": "#/$defs/_Spfp", + "Subparaventricular zone": "#/$defs/_Sbpv", + "Substantia innominata": "#/$defs/_Si", + "Substantia nigra, compact part": "#/$defs/_Snc", + "Substantia nigra, reticular part": "#/$defs/_Snr", + "Subthalamic nucleus": "#/$defs/_Stn", + "Superior central nucleus raphe": "#/$defs/_Cs", + "Superior colliculus, motor related": "#/$defs/_Scm", + "Superior colliculus, motor related, deep gray layer": "#/$defs/_Scdg", + "Superior colliculus, motor related, deep white layer": "#/$defs/_Scdw", + "Superior colliculus, motor related, intermediate gray layer": "#/$defs/_Scig", + "Superior colliculus, motor related, intermediate white layer": "#/$defs/_Sciw", + "Superior colliculus, optic layer": "#/$defs/_Scop", + "Superior colliculus, sensory related": "#/$defs/_Scs", + "Superior colliculus, superficial gray layer": "#/$defs/_Scsg", + "Superior colliculus, zonal layer": "#/$defs/_Sczo", + "Superior olivary complex": "#/$defs/_Soc", + "Superior olivary complex, lateral part": "#/$defs/_Socl", + "Superior olivary complex, medial part": "#/$defs/_Socm", + "Superior olivary complex, periolivary region": "#/$defs/_Por", + "Superior vestibular nucleus": "#/$defs/_Suv", + "Supplemental somatosensory area": "#/$defs/_Sss", + "Supplemental somatosensory area, layer 1": "#/$defs/_Sss1", + "Supplemental somatosensory area, layer 2/3": "#/$defs/_Sss2_3", + "Supplemental somatosensory area, layer 4": "#/$defs/_Sss4", + "Supplemental somatosensory area, layer 5": "#/$defs/_Sss5", + "Supplemental somatosensory area, layer 6a": "#/$defs/_Sss6A", + "Supplemental somatosensory area, layer 6b": "#/$defs/_Sss6B", + "Suprachiasmatic nucleus": "#/$defs/_Sch", + "Suprageniculate nucleus": "#/$defs/_Sgn", + "Supragenual nucleus": "#/$defs/_Sg", + "Supramammillary nucleus": "#/$defs/_Sum", + "Supraoculomotor periaqueductal gray": "#/$defs/_Su3", + "Supraoptic nucleus": "#/$defs/_So", + "Supratrigeminal nucleus": "#/$defs/_Sut", + "Taenia tecta": "#/$defs/_Tt", + "Taenia tecta, dorsal part": "#/$defs/_Ttd", + "Taenia tecta, ventral part": "#/$defs/_Ttv", + "Tegmental reticular nucleus": "#/$defs/_Trn", + "Temporal association areas": "#/$defs/_Tea", + "Temporal association areas, layer 1": "#/$defs/_Tea1", + "Temporal association areas, layer 2/3": "#/$defs/_Tea2_3", + "Temporal association areas, layer 4": "#/$defs/_Tea4", + "Temporal association areas, layer 5": "#/$defs/_Tea5", + "Temporal association areas, layer 6a": "#/$defs/_Tea6A", + "Temporal association areas, layer 6b": "#/$defs/_Tea6B", + "Thalamus": "#/$defs/_Th", + "Thalamus, polymodal association cortex related": "#/$defs/_Dorpm", + "Thalamus, sensory-motor cortex related": "#/$defs/_Dorsm", + "Triangular nucleus of septum": "#/$defs/_Trs", + "Trochlear nucleus": "#/$defs/_Iv", + "Tuberal nucleus": "#/$defs/_Tu", + "Tuberomammillary nucleus": "#/$defs/_Tm", + "Tuberomammillary nucleus, dorsal part": "#/$defs/_Tmd", + "Tuberomammillary nucleus, ventral part": "#/$defs/_Tmv", + "Uvula (IX)": "#/$defs/_Uvu", + "Vascular organ of the lamina terminalis": "#/$defs/_Ov", + "Ventral anterior-lateral complex of the thalamus": "#/$defs/_Val", + "Ventral auditory area": "#/$defs/_Audv", + "Ventral auditory area, layer 1": "#/$defs/_Audv1", + "Ventral auditory area, layer 2/3": "#/$defs/_Audv2_3", + "Ventral auditory area, layer 4": "#/$defs/_Audv4", + "Ventral auditory area, layer 5": "#/$defs/_Audv5", + "Ventral auditory area, layer 6a": "#/$defs/_Audv6A", + "Ventral auditory area, layer 6b": "#/$defs/_Audv6B", + "Ventral cochlear nucleus": "#/$defs/_Vco", + "Ventral group of the dorsal thalamus": "#/$defs/_Vent", + "Ventral medial nucleus of the thalamus": "#/$defs/_Vm", + "Ventral part of the lateral geniculate complex": "#/$defs/_Lgv", + "Ventral posterior complex of the thalamus": "#/$defs/_Vp", + "Ventral posterolateral nucleus of the thalamus": "#/$defs/_Vpl", + "Ventral posterolateral nucleus of the thalamus, parvicellular part": "#/$defs/_Vplpc", + "Ventral posteromedial nucleus of the thalamus": "#/$defs/_Vpm", + "Ventral posteromedial nucleus of the thalamus, parvicellular part": "#/$defs/_Vpmpc", + "Ventral premammillary nucleus": "#/$defs/_Pmv", + "Ventral tegmental area": "#/$defs/_Vta", + "Ventral tegmental nucleus": "#/$defs/_Vtn", + "Ventrolateral preoptic nucleus": "#/$defs/_Vlpo", + "Ventromedial hypothalamic nucleus": "#/$defs/_Vmh", + "Ventromedial preoptic nucleus": "#/$defs/_Vmpo", + "Vermal regions": "#/$defs/_Verm", + "Vestibular nuclei": "#/$defs/_Vnc", + "Vestibulocerebellar nucleus": "#/$defs/_Vecb", + "Visceral area": "#/$defs/_Visc", + "Visceral area, layer 1": "#/$defs/_Visc1", + "Visceral area, layer 2/3": "#/$defs/_Visc2_3", + "Visceral area, layer 4": "#/$defs/_Visc4", + "Visceral area, layer 5": "#/$defs/_Visc5", + "Visceral area, layer 6a": "#/$defs/_Visc6A", + "Visceral area, layer 6b": "#/$defs/_Visc6B", + "Visual areas": "#/$defs/_Vis", + "Xiphoid thalamic nucleus": "#/$defs/_Xi", + "Zona incerta": "#/$defs/_Zi", + "alveus": "#/$defs/_Alv", + "amygdalar capsule": "#/$defs/_Amc", + "anterior commissure, olfactory limb": "#/$defs/_Aco", + "anterior commissure, temporal limb": "#/$defs/_Act", + "arbor vitae": "#/$defs/_Arb", + "auditory radiation": "#/$defs/_Ar", + "brachium of the inferior colliculus": "#/$defs/_Bic", + "brachium of the superior colliculus": "#/$defs/_Bsc", + "central canal, spinal cord/medulla": "#/$defs/_C", + "cerebal peduncle": "#/$defs/_Cpd", + "cerebellar commissure": "#/$defs/_Cbc", + "cerebellar peduncles": "#/$defs/_Cbp", + "cerebellum related fiber tracts": "#/$defs/_Cbf", + "cerebral aqueduct": "#/$defs/_Aq", + "cerebral nuclei related": "#/$defs/_Epsc", + "cerebrum related": "#/$defs/_Mfbc", + "cervicothalamic tract": "#/$defs/_Cett", + "choroid plexus": "#/$defs/_Chpl", + "cingulum bundle": "#/$defs/_Cing", + "cochlear nerve": "#/$defs/_Cviiin", + "columns of the fornix": "#/$defs/_Fx", + "commissural branch of stria terminalis": "#/$defs/_Stc", + "corpus callosum": "#/$defs/_Cc", + "corpus callosum, anterior forceps": "#/$defs/_Fa", + "corpus callosum, body": "#/$defs/_Ccb", + "corpus callosum, extreme capsule": "#/$defs/_Ee", + "corpus callosum, posterior forceps": "#/$defs/_Fp", + "corpus callosum, splenium": "#/$defs/_Ccs", + "corticospinal tract": "#/$defs/_Cst", + "cranial nerves": "#/$defs/_Cne", + "crossed tectospinal pathway": "#/$defs/_Tspc", + "cuneate fascicle": "#/$defs/_Cuf", + "direct tectospinal pathway": "#/$defs/_Tspd", + "doral tegmental decussation": "#/$defs/_Dtd", + "dorsal acoustic stria": "#/$defs/_Das", + "dorsal column": "#/$defs/_Dc", + "dorsal fornix": "#/$defs/_Df", + "dorsal hippocampal commissure": "#/$defs/_Dhc", + "dorsal limb": "#/$defs/_Lotd", + "dorsal roots": "#/$defs/_Drt", + "dorsal spinocerebellar tract": "#/$defs/_Sctd", + "epithalamus related": "#/$defs/_Mfbse", + "external capsule": "#/$defs/_Ec", + "external medullary lamina of the thalamus": "#/$defs/_Em", + "extrapyramidal fiber systems": "#/$defs/_Eps", + "facial nerve": "#/$defs/_Viin", + "fasciculus retroflexus": "#/$defs/_Fr", + "fiber tracts": "#/$defs/_Fiber_Tracts", + "fimbria": "#/$defs/_Fi", + "fornix system": "#/$defs/_Fxs", + "fourth ventricle": "#/$defs/_V4", + "genu of corpus callosum": "#/$defs/_Ccg", + "genu of the facial nerve": "#/$defs/_Gviin", + "habenular commissure": "#/$defs/_Hbc", + "hippocampal commissures": "#/$defs/_Hc", + "hypothalamus related": "#/$defs/_Mfsbshy", + "inferior cerebellar peduncle": "#/$defs/_Icp", + "inferior colliculus commissure": "#/$defs/_Cic", + "internal capsule": "#/$defs/_Int", + "lateral forebrain bundle system": "#/$defs/_Lfbs", + "lateral lemniscus": "#/$defs/_Ll", + "lateral olfactory tract, body": "#/$defs/_Lot", + "lateral olfactory tract, general": "#/$defs/_Lotg", + "lateral recess": "#/$defs/_V4R", + "lateral ventricle": "#/$defs/_Vl", + "mammillary peduncle": "#/$defs/_Mp", + "mammillary related": "#/$defs/_Mfbsma", + "mammillotegmental tract": "#/$defs/_Mtg", + "mammillothalamic tract": "#/$defs/_Mtt", + "medial corticohypothalamic tract": "#/$defs/_Mct", + "medial forebrain bundle": "#/$defs/_Mfb", + "medial forebrain bundle system": "#/$defs/_Mfbs", + "medial lemniscus": "#/$defs/_Ml", + "medial longitudinal fascicle": "#/$defs/_Mlf", + "middle cerebellar peduncle": "#/$defs/_Mcp", + "motor root of the trigeminal nerve": "#/$defs/_Mov", + "nigrostriatal tract": "#/$defs/_Nst", + "oculomotor nerve": "#/$defs/_Iiin", + "olfactory nerve": "#/$defs/_In", + "olfactory nerve layer of main olfactory bulb": "#/$defs/_Onl", + "optic chiasm": "#/$defs/_Och", + "optic nerve": "#/$defs/_Iin", + "optic radiation": "#/$defs/_Or", + "optic tract": "#/$defs/_Opt", + "postcommissural fornix": "#/$defs/_Fxpo", + "posterior commissure": "#/$defs/_Pc", + "posteromedial visual area": "#/$defs/_Vispm", + "posteromedial visual area, layer 1": "#/$defs/_Vispm1", + "posteromedial visual area, layer 2/3": "#/$defs/_Vispm2_3", + "posteromedial visual area, layer 4": "#/$defs/_Vispm4", + "posteromedial visual area, layer 5": "#/$defs/_Vispm5", + "posteromedial visual area, layer 6a": "#/$defs/_Vispm6A", + "posteromedial visual area, layer 6b": "#/$defs/_Vispm6B", + "principal mammillary tract": "#/$defs/_Pm", + "pyramid": "#/$defs/_Py", + "pyramidal decussation": "#/$defs/_Pyd", + "root": "#/$defs/_Root", + "rubrospinal tract": "#/$defs/_Rust", + "sensory root of the trigeminal nerve": "#/$defs/_Sv", + "solitary tract": "#/$defs/_Ts", + "spinal tract of the trigeminal nerve": "#/$defs/_Sptv", + "stria medullaris": "#/$defs/_Sm", + "stria terminalis": "#/$defs/_St", + "subependymal zone": "#/$defs/_Sez", + "superior cerebelar peduncles": "#/$defs/_Scp", + "superior cerebellar peduncle decussation": "#/$defs/_Dscp", + "superior colliculus commissure": "#/$defs/_Csc", + "supra-callosal cerebral white matter": "#/$defs/_Scwm", + "supraoptic commissures": "#/$defs/_Sup", + "tectospinal pathway": "#/$defs/_Tsp", + "thalamus related": "#/$defs/_Lfbst", + "third ventricle": "#/$defs/_V3", + "trapezoid body": "#/$defs/_Tb", + "trigeminal nerve": "#/$defs/_Vn", + "trochlear nerve": "#/$defs/_Ivn", + "uncinate fascicle": "#/$defs/_Uf", + "vagus nerve": "#/$defs/_Xn", + "ventral hippocampal commissure": "#/$defs/_Vhc", + "ventral spinocerebellar tract": "#/$defs/_Sctv", + "ventral tegmental decussation": "#/$defs/_Vtd", + "ventricular systems": "#/$defs/_Vs", + "vestibular nerve": "#/$defs/_Vviiin", + "vestibulocochlear nerve": "#/$defs/_Viiin", + "vomeronasal nerve": "#/$defs/_Von" + }, + "propertyName": "name" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Vi" + }, + { + "$ref": "#/$defs/_Acvii" + }, + { + "$ref": "#/$defs/_Aob" + }, + { + "$ref": "#/$defs/_Aobgl" + }, + { + "$ref": "#/$defs/_Aobgr" + }, + { + "$ref": "#/$defs/_Aobmi" + }, + { + "$ref": "#/$defs/_Aso" + }, + { + "$ref": "#/$defs/_Acs5" + }, + { + "$ref": "#/$defs/_Ai" + }, + { + "$ref": "#/$defs/_Aid" + }, + { + "$ref": "#/$defs/_Aid1" + }, + { + "$ref": "#/$defs/_Aid2_3" + }, + { + "$ref": "#/$defs/_Aid5" + }, + { + "$ref": "#/$defs/_Aid6A" + }, + { + "$ref": "#/$defs/_Aid6B" + }, + { + "$ref": "#/$defs/_Aip" + }, + { + "$ref": "#/$defs/_Aip1" + }, + { + "$ref": "#/$defs/_Aip2_3" + }, + { + "$ref": "#/$defs/_Aip5" + }, + { + "$ref": "#/$defs/_Aip6A" + }, + { + "$ref": "#/$defs/_Aip6B" + }, + { + "$ref": "#/$defs/_Aiv" + }, + { + "$ref": "#/$defs/_Aiv1" + }, + { + "$ref": "#/$defs/_Aiv2_3" + }, + { + "$ref": "#/$defs/_Aiv5" + }, + { + "$ref": "#/$defs/_Aiv6A" + }, + { + "$ref": "#/$defs/_Aiv6B" + }, + { + "$ref": "#/$defs/_Ca" + }, + { + "$ref": "#/$defs/_An" + }, + { + "$ref": "#/$defs/_Aaa" + }, + { + "$ref": "#/$defs/_Visa" + }, + { + "$ref": "#/$defs/_Visa1" + }, + { + "$ref": "#/$defs/_Visa2_3" + }, + { + "$ref": "#/$defs/_Visa4" + }, + { + "$ref": "#/$defs/_Visa5" + }, + { + "$ref": "#/$defs/_Visa6A" + }, + { + "$ref": "#/$defs/_Visa6B" + }, + { + "$ref": "#/$defs/_Aca" + }, + { + "$ref": "#/$defs/_Acad" + }, + { + "$ref": "#/$defs/_Acad1" + }, + { + "$ref": "#/$defs/_Acad2_3" + }, + { + "$ref": "#/$defs/_Acad5" + }, + { + "$ref": "#/$defs/_Acad6A" + }, + { + "$ref": "#/$defs/_Acad6B" + }, + { + "$ref": "#/$defs/_Acav" + }, + { + "$ref": "#/$defs/_Acav6A" + }, + { + "$ref": "#/$defs/_Acav6B" + }, + { + "$ref": "#/$defs/_Acav1" + }, + { + "$ref": "#/$defs/_Acav2_3" + }, + { + "$ref": "#/$defs/_Acav5" + }, + { + "$ref": "#/$defs/_Atn" + }, + { + "$ref": "#/$defs/_Ahn" + }, + { + "$ref": "#/$defs/_Aon" + }, + { + "$ref": "#/$defs/_Apn" + }, + { + "$ref": "#/$defs/_At" + }, + { + "$ref": "#/$defs/_Ad" + }, + { + "$ref": "#/$defs/_Adp" + }, + { + "$ref": "#/$defs/_Visal" + }, + { + "$ref": "#/$defs/_Visal1" + }, + { + "$ref": "#/$defs/_Visal2_3" + }, + { + "$ref": "#/$defs/_Visal4" + }, + { + "$ref": "#/$defs/_Visal5" + }, + { + "$ref": "#/$defs/_Visal6A" + }, + { + "$ref": "#/$defs/_Visal6B" + }, + { + "$ref": "#/$defs/_Am" + }, + { + "$ref": "#/$defs/_Amd" + }, + { + "$ref": "#/$defs/_Amv" + }, + { + "$ref": "#/$defs/_Visam" + }, + { + "$ref": "#/$defs/_Visam1" + }, + { + "$ref": "#/$defs/_Visam2_3" + }, + { + "$ref": "#/$defs/_Visam4" + }, + { + "$ref": "#/$defs/_Visam5" + }, + { + "$ref": "#/$defs/_Visam6A" + }, + { + "$ref": "#/$defs/_Visam6B" + }, + { + "$ref": "#/$defs/_Av" + }, + { + "$ref": "#/$defs/_Avpv" + }, + { + "$ref": "#/$defs/_Avp" + }, + { + "$ref": "#/$defs/_Arh" + }, + { + "$ref": "#/$defs/_Ap" + }, + { + "$ref": "#/$defs/_Apr" + }, + { + "$ref": "#/$defs/_Aud" + }, + { + "$ref": "#/$defs/_B" + }, + { + "$ref": "#/$defs/_Grey" + }, + { + "$ref": "#/$defs/_Bla" + }, + { + "$ref": "#/$defs/_Blaa" + }, + { + "$ref": "#/$defs/_Blap" + }, + { + "$ref": "#/$defs/_Blav" + }, + { + "$ref": "#/$defs/_Bma" + }, + { + "$ref": "#/$defs/_Bmaa" + }, + { + "$ref": "#/$defs/_Bmap" + }, + { + "$ref": "#/$defs/_Bst" + }, + { + "$ref": "#/$defs/_Ba" + }, + { + "$ref": "#/$defs/_Bac" + }, + { + "$ref": "#/$defs/_Bs" + }, + { + "$ref": "#/$defs/_Cp" + }, + { + "$ref": "#/$defs/_Cea" + }, + { + "$ref": "#/$defs/_Ceac" + }, + { + "$ref": "#/$defs/_Ceal" + }, + { + "$ref": "#/$defs/_Ceam" + }, + { + "$ref": "#/$defs/_Cl" + }, + { + "$ref": "#/$defs/_Cli" + }, + { + "$ref": "#/$defs/_Cent" + }, + { + "$ref": "#/$defs/_Cm" + }, + { + "$ref": "#/$defs/_Cbx" + }, + { + "$ref": "#/$defs/_Cbn" + }, + { + "$ref": "#/$defs/_Cb" + }, + { + "$ref": "#/$defs/_Ctx" + }, + { + "$ref": "#/$defs/_Cnu" + }, + { + "$ref": "#/$defs/_Ch" + }, + { + "$ref": "#/$defs/_Cla" + }, + { + "$ref": "#/$defs/_Cn" + }, + { + "$ref": "#/$defs/_Copy" + }, + { + "$ref": "#/$defs/_Coa" + }, + { + "$ref": "#/$defs/_Coaa" + }, + { + "$ref": "#/$defs/_Coap" + }, + { + "$ref": "#/$defs/_Coapl" + }, + { + "$ref": "#/$defs/_Coapm" + }, + { + "$ref": "#/$defs/_Ctxpl" + }, + { + "$ref": "#/$defs/_Ctxsp" + }, + { + "$ref": "#/$defs/_Ancr1" + }, + { + "$ref": "#/$defs/_Ancr2" + }, + { + "$ref": "#/$defs/_Cul" + }, + { + "$ref": "#/$defs/_Cu" + }, + { + "$ref": "#/$defs/_Cun" + }, + { + "$ref": "#/$defs/_Dec" + }, + { + "$ref": "#/$defs/_Dg" + }, + { + "$ref": "#/$defs/_Dg_Sg" + }, + { + "$ref": "#/$defs/_Dg_Mo" + }, + { + "$ref": "#/$defs/_Dg_Po" + }, + { + "$ref": "#/$defs/_Dn" + }, + { + "$ref": "#/$defs/_Ndb" + }, + { + "$ref": "#/$defs/_Audd" + }, + { + "$ref": "#/$defs/_Audd1" + }, + { + "$ref": "#/$defs/_Audd2_3" + }, + { + "$ref": "#/$defs/_Audd4" + }, + { + "$ref": "#/$defs/_Audd5" + }, + { + "$ref": "#/$defs/_Audd6A" + }, + { + "$ref": "#/$defs/_Audd6B" + }, + { + "$ref": "#/$defs/_Dco" + }, + { + "$ref": "#/$defs/_Dcn" + }, + { + "$ref": "#/$defs/_Dmx" + }, + { + "$ref": "#/$defs/_Dr" + }, + { + "$ref": "#/$defs/_Lgd" + }, + { + "$ref": "#/$defs/_Lgd_Co" + }, + { + "$ref": "#/$defs/_Lgd_Ip" + }, + { + "$ref": "#/$defs/_Lgd_Sh" + }, + { + "$ref": "#/$defs/_Dp" + }, + { + "$ref": "#/$defs/_Pmd" + }, + { + "$ref": "#/$defs/_Dtn" + }, + { + "$ref": "#/$defs/_Dt" + }, + { + "$ref": "#/$defs/_Dmh" + }, + { + "$ref": "#/$defs/_Ect" + }, + { + "$ref": "#/$defs/_Ect1" + }, + { + "$ref": "#/$defs/_Ect2_3" + }, + { + "$ref": "#/$defs/_Ect5" + }, + { + "$ref": "#/$defs/_Ect6A" + }, + { + "$ref": "#/$defs/_Ect6B" + }, + { + "$ref": "#/$defs/_Ew" + }, + { + "$ref": "#/$defs/_Ep" + }, + { + "$ref": "#/$defs/_Epd" + }, + { + "$ref": "#/$defs/_Epv" + }, + { + "$ref": "#/$defs/_Ent" + }, + { + "$ref": "#/$defs/_Entl" + }, + { + "$ref": "#/$defs/_Entl1" + }, + { + "$ref": "#/$defs/_Entl2" + }, + { + "$ref": "#/$defs/_Entl3" + }, + { + "$ref": "#/$defs/_Entl5" + }, + { + "$ref": "#/$defs/_Entl6A" + }, + { + "$ref": "#/$defs/_Entm" + }, + { + "$ref": "#/$defs/_Entm1" + }, + { + "$ref": "#/$defs/_Entm2" + }, + { + "$ref": "#/$defs/_Entm3" + }, + { + "$ref": "#/$defs/_Entm5" + }, + { + "$ref": "#/$defs/_Entm6" + }, + { + "$ref": "#/$defs/_Epi" + }, + { + "$ref": "#/$defs/_Eth" + }, + { + "$ref": "#/$defs/_Ecu" + }, + { + "$ref": "#/$defs/_Vii" + }, + { + "$ref": "#/$defs/_Fc" + }, + { + "$ref": "#/$defs/_Fn" + }, + { + "$ref": "#/$defs/_Ca1" + }, + { + "$ref": "#/$defs/_Ca2" + }, + { + "$ref": "#/$defs/_Ca3" + }, + { + "$ref": "#/$defs/_Ff" + }, + { + "$ref": "#/$defs/_Fl" + }, + { + "$ref": "#/$defs/_Fotu" + }, + { + "$ref": "#/$defs/_Frp" + }, + { + "$ref": "#/$defs/_Frp1" + }, + { + "$ref": "#/$defs/_Frp2_3" + }, + { + "$ref": "#/$defs/_Frp5" + }, + { + "$ref": "#/$defs/_Frp6A" + }, + { + "$ref": "#/$defs/_Frp6B" + }, + { + "$ref": "#/$defs/_Fs" + }, + { + "$ref": "#/$defs/_Gend" + }, + { + "$ref": "#/$defs/_Genv" + }, + { + "$ref": "#/$defs/_Grn" + }, + { + "$ref": "#/$defs/_Gpe" + }, + { + "$ref": "#/$defs/_Gpi" + }, + { + "$ref": "#/$defs/_Gr" + }, + { + "$ref": "#/$defs/_Gu" + }, + { + "$ref": "#/$defs/_Gu1" + }, + { + "$ref": "#/$defs/_Gu2_3" + }, + { + "$ref": "#/$defs/_Gu4" + }, + { + "$ref": "#/$defs/_Gu5" + }, + { + "$ref": "#/$defs/_Gu6A" + }, + { + "$ref": "#/$defs/_Gu6B" + }, + { + "$ref": "#/$defs/_Hem" + }, + { + "$ref": "#/$defs/_Hb" + }, + { + "$ref": "#/$defs/_Hpf" + }, + { + "$ref": "#/$defs/_Hip" + }, + { + "$ref": "#/$defs/_Hata" + }, + { + "$ref": "#/$defs/_Xii" + }, + { + "$ref": "#/$defs/_Lz" + }, + { + "$ref": "#/$defs/_Mez" + }, + { + "$ref": "#/$defs/_Hy" + }, + { + "$ref": "#/$defs/_Ig" + }, + { + "$ref": "#/$defs/_Ic" + }, + { + "$ref": "#/$defs/_Icc" + }, + { + "$ref": "#/$defs/_Icd" + }, + { + "$ref": "#/$defs/_Ice" + }, + { + "$ref": "#/$defs/_Io" + }, + { + "$ref": "#/$defs/_Isn" + }, + { + "$ref": "#/$defs/_Icb" + }, + { + "$ref": "#/$defs/_Ila" + }, + { + "$ref": "#/$defs/_Ila1" + }, + { + "$ref": "#/$defs/_Ila2_3" + }, + { + "$ref": "#/$defs/_Ila5" + }, + { + "$ref": "#/$defs/_Ila6A" + }, + { + "$ref": "#/$defs/_Ila6B" + }, + { + "$ref": "#/$defs/_Iad" + }, + { + "$ref": "#/$defs/_Iam" + }, + { + "$ref": "#/$defs/_Ib" + }, + { + "$ref": "#/$defs/_Ia" + }, + { + "$ref": "#/$defs/_If" + }, + { + "$ref": "#/$defs/_Igl" + }, + { + "$ref": "#/$defs/_Intg" + }, + { + "$ref": "#/$defs/_Irn" + }, + { + "$ref": "#/$defs/_Imd" + }, + { + "$ref": "#/$defs/_Ipn" + }, + { + "$ref": "#/$defs/_Ipa" + }, + { + "$ref": "#/$defs/_Ipc" + }, + { + "$ref": "#/$defs/_Ipdl" + }, + { + "$ref": "#/$defs/_Ipdm" + }, + { + "$ref": "#/$defs/_Ipi" + }, + { + "$ref": "#/$defs/_Ipl" + }, + { + "$ref": "#/$defs/_Ipr" + }, + { + "$ref": "#/$defs/_Iprl" + }, + { + "$ref": "#/$defs/_Ip" + }, + { + "$ref": "#/$defs/_Inc" + }, + { + "$ref": "#/$defs/_I5" + }, + { + "$ref": "#/$defs/_Ilm" + }, + { + "$ref": "#/$defs/_Isocortex" + }, + { + "$ref": "#/$defs/_Kf" + }, + { + "$ref": "#/$defs/_La" + }, + { + "$ref": "#/$defs/_Ld" + }, + { + "$ref": "#/$defs/_Lat" + }, + { + "$ref": "#/$defs/_Lh" + }, + { + "$ref": "#/$defs/_Lha" + }, + { + "$ref": "#/$defs/_Lm" + }, + { + "$ref": "#/$defs/_Lp" + }, + { + "$ref": "#/$defs/_Lpo" + }, + { + "$ref": "#/$defs/_Lrn" + }, + { + "$ref": "#/$defs/_Lrnm" + }, + { + "$ref": "#/$defs/_Lrnp" + }, + { + "$ref": "#/$defs/_Lsx" + }, + { + "$ref": "#/$defs/_Ls" + }, + { + "$ref": "#/$defs/_Lsc" + }, + { + "$ref": "#/$defs/_Lsr" + }, + { + "$ref": "#/$defs/_Lsv" + }, + { + "$ref": "#/$defs/_Lt" + }, + { + "$ref": "#/$defs/_Lav" + }, + { + "$ref": "#/$defs/_Visl" + }, + { + "$ref": "#/$defs/_Visl1" + }, + { + "$ref": "#/$defs/_Visl2_3" + }, + { + "$ref": "#/$defs/_Visl4" + }, + { + "$ref": "#/$defs/_Visl5" + }, + { + "$ref": "#/$defs/_Visl6A" + }, + { + "$ref": "#/$defs/_Visl6B" + }, + { + "$ref": "#/$defs/_Ldt" + }, + { + "$ref": "#/$defs/_Visli" + }, + { + "$ref": "#/$defs/_Visli1" + }, + { + "$ref": "#/$defs/_Visli2_3" + }, + { + "$ref": "#/$defs/_Visli4" + }, + { + "$ref": "#/$defs/_Visli5" + }, + { + "$ref": "#/$defs/_Visli6A" + }, + { + "$ref": "#/$defs/_Visli6B" + }, + { + "$ref": "#/$defs/_Lin" + }, + { + "$ref": "#/$defs/_Ling" + }, + { + "$ref": "#/$defs/_Cent2" + }, + { + "$ref": "#/$defs/_Cent3" + }, + { + "$ref": "#/$defs/_Cul4_5" + }, + { + "$ref": "#/$defs/_Lc" + }, + { + "$ref": "#/$defs/_Ma" + }, + { + "$ref": "#/$defs/_Marn" + }, + { + "$ref": "#/$defs/_Mob" + }, + { + "$ref": "#/$defs/_Mbo" + }, + { + "$ref": "#/$defs/_Ma3" + }, + { + "$ref": "#/$defs/_Mea" + }, + { + "$ref": "#/$defs/_Mg" + }, + { + "$ref": "#/$defs/_Mgd" + }, + { + "$ref": "#/$defs/_Mgm" + }, + { + "$ref": "#/$defs/_Mgv" + }, + { + "$ref": "#/$defs/_Med" + }, + { + "$ref": "#/$defs/_Mh" + }, + { + "$ref": "#/$defs/_Mm" + }, + { + "$ref": "#/$defs/_Mmd" + }, + { + "$ref": "#/$defs/_Mml" + }, + { + "$ref": "#/$defs/_Mmm" + }, + { + "$ref": "#/$defs/_Mmme" + }, + { + "$ref": "#/$defs/_Mmp" + }, + { + "$ref": "#/$defs/_Mpo" + }, + { + "$ref": "#/$defs/_Mpn" + }, + { + "$ref": "#/$defs/_Mpt" + }, + { + "$ref": "#/$defs/_Msc" + }, + { + "$ref": "#/$defs/_Ms" + }, + { + "$ref": "#/$defs/_Mt" + }, + { + "$ref": "#/$defs/_Mv" + }, + { + "$ref": "#/$defs/_Me" + }, + { + "$ref": "#/$defs/_Mepo" + }, + { + "$ref": "#/$defs/_Md" + }, + { + "$ref": "#/$defs/_My" + }, + { + "$ref": "#/$defs/_My_Sat" + }, + { + "$ref": "#/$defs/_My_Mot" + }, + { + "$ref": "#/$defs/_My_Sen" + }, + { + "$ref": "#/$defs/_Mdrn" + }, + { + "$ref": "#/$defs/_Mdrnd" + }, + { + "$ref": "#/$defs/_Mdrnv" + }, + { + "$ref": "#/$defs/_Mb" + }, + { + "$ref": "#/$defs/_Ramb" + }, + { + "$ref": "#/$defs/_Mrn" + }, + { + "$ref": "#/$defs/_Rr" + }, + { + "$ref": "#/$defs/_Mev" + }, + { + "$ref": "#/$defs/_Mbsta" + }, + { + "$ref": "#/$defs/_Mbmot" + }, + { + "$ref": "#/$defs/_Mbsen" + }, + { + "$ref": "#/$defs/_Mtn" + }, + { + "$ref": "#/$defs/_V" + }, + { + "$ref": "#/$defs/_Nod" + }, + { + "$ref": "#/$defs/_Acb" + }, + { + "$ref": "#/$defs/_Amb" + }, + { + "$ref": "#/$defs/_Ambd" + }, + { + "$ref": "#/$defs/_Ambv" + }, + { + "$ref": "#/$defs/_Ni" + }, + { + "$ref": "#/$defs/_Nd" + }, + { + "$ref": "#/$defs/_Nr" + }, + { + "$ref": "#/$defs/_Re" + }, + { + "$ref": "#/$defs/_Nb" + }, + { + "$ref": "#/$defs/_Nll" + }, + { + "$ref": "#/$defs/_Nlot" + }, + { + "$ref": "#/$defs/_Nlot3" + }, + { + "$ref": "#/$defs/_Nlot1" + }, + { + "$ref": "#/$defs/_Nlot2" + }, + { + "$ref": "#/$defs/_Not" + }, + { + "$ref": "#/$defs/_Npc" + }, + { + "$ref": "#/$defs/_Nts" + }, + { + "$ref": "#/$defs/_Ntb" + }, + { + "$ref": "#/$defs/_Prp" + }, + { + "$ref": "#/$defs/_Rm" + }, + { + "$ref": "#/$defs/_Ro" + }, + { + "$ref": "#/$defs/_Rpa" + }, + { + "$ref": "#/$defs/_Rpo" + }, + { + "$ref": "#/$defs/_Sag" + }, + { + "$ref": "#/$defs/_X" + }, + { + "$ref": "#/$defs/_Y" + }, + { + "$ref": "#/$defs/_Iii" + }, + { + "$ref": "#/$defs/_Olf" + }, + { + "$ref": "#/$defs/_Ot" + }, + { + "$ref": "#/$defs/_Op" + }, + { + "$ref": "#/$defs/_Orb" + }, + { + "$ref": "#/$defs/_Orbl" + }, + { + "$ref": "#/$defs/_Orbl1" + }, + { + "$ref": "#/$defs/_Orbl2_3" + }, + { + "$ref": "#/$defs/_Orbl5" + }, + { + "$ref": "#/$defs/_Orbl6A" + }, + { + "$ref": "#/$defs/_Orbl6B" + }, + { + "$ref": "#/$defs/_Orbm" + }, + { + "$ref": "#/$defs/_Orbm1" + }, + { + "$ref": "#/$defs/_Orbm2_3" + }, + { + "$ref": "#/$defs/_Orbm5" + }, + { + "$ref": "#/$defs/_Orbm6A" + }, + { + "$ref": "#/$defs/_Orbm6B" + }, + { + "$ref": "#/$defs/_Orbvl" + }, + { + "$ref": "#/$defs/_Orbvl1" + }, + { + "$ref": "#/$defs/_Orbvl2_3" + }, + { + "$ref": "#/$defs/_Orbvl5" + }, + { + "$ref": "#/$defs/_Orbvl6A" + }, + { + "$ref": "#/$defs/_Orbvl6B" + }, + { + "$ref": "#/$defs/_Pal" + }, + { + "$ref": "#/$defs/_Palc" + }, + { + "$ref": "#/$defs/_Pald" + }, + { + "$ref": "#/$defs/_Palm" + }, + { + "$ref": "#/$defs/_Palv" + }, + { + "$ref": "#/$defs/_Pbg" + }, + { + "$ref": "#/$defs/_Pb" + }, + { + "$ref": "#/$defs/_Pcn" + }, + { + "$ref": "#/$defs/_Pf" + }, + { + "$ref": "#/$defs/_Pfl" + }, + { + "$ref": "#/$defs/_Pgrn" + }, + { + "$ref": "#/$defs/_Pgrnd" + }, + { + "$ref": "#/$defs/_Pgrnl" + }, + { + "$ref": "#/$defs/_Prm" + }, + { + "$ref": "#/$defs/_Pn" + }, + { + "$ref": "#/$defs/_Ppy" + }, + { + "$ref": "#/$defs/_Pas" + }, + { + "$ref": "#/$defs/_Ps" + }, + { + "$ref": "#/$defs/_Par" + }, + { + "$ref": "#/$defs/_Pstn" + }, + { + "$ref": "#/$defs/_Pt" + }, + { + "$ref": "#/$defs/_Pa5" + }, + { + "$ref": "#/$defs/_Pa4" + }, + { + "$ref": "#/$defs/_Pvh" + }, + { + "$ref": "#/$defs/_Pvhd" + }, + { + "$ref": "#/$defs/_Pvt" + }, + { + "$ref": "#/$defs/_Pc5" + }, + { + "$ref": "#/$defs/_Parn" + }, + { + "$ref": "#/$defs/_Ppn" + }, + { + "$ref": "#/$defs/_Pag" + }, + { + "$ref": "#/$defs/_Pef" + }, + { + "$ref": "#/$defs/_Phy" + }, + { + "$ref": "#/$defs/_Pp" + }, + { + "$ref": "#/$defs/_Pr" + }, + { + "$ref": "#/$defs/_Peri" + }, + { + "$ref": "#/$defs/_Peri1" + }, + { + "$ref": "#/$defs/_Peri2_3" + }, + { + "$ref": "#/$defs/_Peri5" + }, + { + "$ref": "#/$defs/_Peri6A" + }, + { + "$ref": "#/$defs/_Peri6B" + }, + { + "$ref": "#/$defs/_P5" + }, + { + "$ref": "#/$defs/_Pva" + }, + { + "$ref": "#/$defs/_Pvi" + }, + { + "$ref": "#/$defs/_Pvp" + }, + { + "$ref": "#/$defs/_Pvpo" + }, + { + "$ref": "#/$defs/_Pvr" + }, + { + "$ref": "#/$defs/_Pvz" + }, + { + "$ref": "#/$defs/_Pir" + }, + { + "$ref": "#/$defs/_Paa" + }, + { + "$ref": "#/$defs/_P" + }, + { + "$ref": "#/$defs/_P_Sat" + }, + { + "$ref": "#/$defs/_P_Mot" + }, + { + "$ref": "#/$defs/_P_Sen" + }, + { + "$ref": "#/$defs/_Pcg" + }, + { + "$ref": "#/$defs/_Pg" + }, + { + "$ref": "#/$defs/_Prnr" + }, + { + "$ref": "#/$defs/_Prnc" + }, + { + "$ref": "#/$defs/_Pa" + }, + { + "$ref": "#/$defs/_Audpo" + }, + { + "$ref": "#/$defs/_Audpo1" + }, + { + "$ref": "#/$defs/_Audpo2_3" + }, + { + "$ref": "#/$defs/_Audpo4" + }, + { + "$ref": "#/$defs/_Audpo5" + }, + { + "$ref": "#/$defs/_Audpo6A" + }, + { + "$ref": "#/$defs/_Audpo6B" + }, + { + "$ref": "#/$defs/_Po" + }, + { + "$ref": "#/$defs/_Ph" + }, + { + "$ref": "#/$defs/_Pil" + }, + { + "$ref": "#/$defs/_Pol" + }, + { + "$ref": "#/$defs/_Ptlp" + }, + { + "$ref": "#/$defs/_Ppt" + }, + { + "$ref": "#/$defs/_Pot" + }, + { + "$ref": "#/$defs/_Pd" + }, + { + "$ref": "#/$defs/_Pdtg" + }, + { + "$ref": "#/$defs/_Vispl" + }, + { + "$ref": "#/$defs/_Vispl1" + }, + { + "$ref": "#/$defs/_Vispl2_3" + }, + { + "$ref": "#/$defs/_Vispl4" + }, + { + "$ref": "#/$defs/_Vispl5" + }, + { + "$ref": "#/$defs/_Vispl6A" + }, + { + "$ref": "#/$defs/_Vispl6B" + }, + { + "$ref": "#/$defs/_Tr" + }, + { + "$ref": "#/$defs/_Vispor" + }, + { + "$ref": "#/$defs/_Vispor1" + }, + { + "$ref": "#/$defs/_Vispor2_3" + }, + { + "$ref": "#/$defs/_Vispor4" + }, + { + "$ref": "#/$defs/_Vispor5" + }, + { + "$ref": "#/$defs/_Vispor6A" + }, + { + "$ref": "#/$defs/_Vispor6B" + }, + { + "$ref": "#/$defs/_Post" + }, + { + "$ref": "#/$defs/_Prc" + }, + { + "$ref": "#/$defs/_Pl" + }, + { + "$ref": "#/$defs/_Pl1" + }, + { + "$ref": "#/$defs/_Pl2_3" + }, + { + "$ref": "#/$defs/_Pl5" + }, + { + "$ref": "#/$defs/_Pl6A" + }, + { + "$ref": "#/$defs/_Pl6B" + }, + { + "$ref": "#/$defs/_Pst" + }, + { + "$ref": "#/$defs/_Pre" + }, + { + "$ref": "#/$defs/_Prt" + }, + { + "$ref": "#/$defs/_Audp" + }, + { + "$ref": "#/$defs/_Audp1" + }, + { + "$ref": "#/$defs/_Audp2_3" + }, + { + "$ref": "#/$defs/_Audp4" + }, + { + "$ref": "#/$defs/_Audp5" + }, + { + "$ref": "#/$defs/_Audp6A" + }, + { + "$ref": "#/$defs/_Audp6B" + }, + { + "$ref": "#/$defs/_Mop" + }, + { + "$ref": "#/$defs/_Mop1" + }, + { + "$ref": "#/$defs/_Mop2_3" + }, + { + "$ref": "#/$defs/_Mop5" + }, + { + "$ref": "#/$defs/_Mop6A" + }, + { + "$ref": "#/$defs/_Mop6B" + }, + { + "$ref": "#/$defs/_Ssp" + }, + { + "$ref": "#/$defs/_Ssp_Bfd" + }, + { + "$ref": "#/$defs/_Ssp_Bfd1" + }, + { + "$ref": "#/$defs/_Ssp_Bfd2_3" + }, + { + "$ref": "#/$defs/_Ssp_Bfd4" + }, + { + "$ref": "#/$defs/_Ssp_Bfd5" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6A" + }, + { + "$ref": "#/$defs/_Ssp_Bfd6B" + }, + { + "$ref": "#/$defs/_Ssp_Ll" + }, + { + "$ref": "#/$defs/_Ssp_Ll1" + }, + { + "$ref": "#/$defs/_Ssp_Ll2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ll4" + }, + { + "$ref": "#/$defs/_Ssp_Ll5" + }, + { + "$ref": "#/$defs/_Ssp_Ll6A" + }, + { + "$ref": "#/$defs/_Ssp_Ll6B" + }, + { + "$ref": "#/$defs/_Ssp_M" + }, + { + "$ref": "#/$defs/_Ssp_M1" + }, + { + "$ref": "#/$defs/_Ssp_M2_3" + }, + { + "$ref": "#/$defs/_Ssp_M4" + }, + { + "$ref": "#/$defs/_Ssp_M5" + }, + { + "$ref": "#/$defs/_Ssp_M6A" + }, + { + "$ref": "#/$defs/_Ssp_M6B" + }, + { + "$ref": "#/$defs/_Ssp_N" + }, + { + "$ref": "#/$defs/_Ssp_N1" + }, + { + "$ref": "#/$defs/_Ssp_N2_3" + }, + { + "$ref": "#/$defs/_Ssp_N4" + }, + { + "$ref": "#/$defs/_Ssp_N5" + }, + { + "$ref": "#/$defs/_Ssp_N6A" + }, + { + "$ref": "#/$defs/_Ssp_N6B" + }, + { + "$ref": "#/$defs/_Ssp_Tr" + }, + { + "$ref": "#/$defs/_Ssp_Tr1" + }, + { + "$ref": "#/$defs/_Ssp_Tr2_3" + }, + { + "$ref": "#/$defs/_Ssp_Tr4" + }, + { + "$ref": "#/$defs/_Ssp_Tr5" + }, + { + "$ref": "#/$defs/_Ssp_Tr6A" + }, + { + "$ref": "#/$defs/_Ssp_Tr6B" + }, + { + "$ref": "#/$defs/_Ssp_Un" + }, + { + "$ref": "#/$defs/_Ssp_Un1" + }, + { + "$ref": "#/$defs/_Ssp_Un2_3" + }, + { + "$ref": "#/$defs/_Ssp_Un4" + }, + { + "$ref": "#/$defs/_Ssp_Un5" + }, + { + "$ref": "#/$defs/_Ssp_Un6A" + }, + { + "$ref": "#/$defs/_Ssp_Un6B" + }, + { + "$ref": "#/$defs/_Ssp_Ul" + }, + { + "$ref": "#/$defs/_Ssp_Ul1" + }, + { + "$ref": "#/$defs/_Ssp_Ul2_3" + }, + { + "$ref": "#/$defs/_Ssp_Ul4" + }, + { + "$ref": "#/$defs/_Ssp_Ul5" + }, + { + "$ref": "#/$defs/_Ssp_Ul6A" + }, + { + "$ref": "#/$defs/_Ssp_Ul6B" + }, + { + "$ref": "#/$defs/_Visp" + }, + { + "$ref": "#/$defs/_Visp1" + }, + { + "$ref": "#/$defs/_Visp2_3" + }, + { + "$ref": "#/$defs/_Visp4" + }, + { + "$ref": "#/$defs/_Visp5" + }, + { + "$ref": "#/$defs/_Visp6A" + }, + { + "$ref": "#/$defs/_Visp6B" + }, + { + "$ref": "#/$defs/_Psv" + }, + { + "$ref": "#/$defs/_Pros" + }, + { + "$ref": "#/$defs/_Pyr" + }, + { + "$ref": "#/$defs/_Rn" + }, + { + "$ref": "#/$defs/_Rt" + }, + { + "$ref": "#/$defs/_Rch" + }, + { + "$ref": "#/$defs/_Rhp" + }, + { + "$ref": "#/$defs/_Rpf" + }, + { + "$ref": "#/$defs/_Rsp" + }, + { + "$ref": "#/$defs/_Rspd" + }, + { + "$ref": "#/$defs/_Rspd1" + }, + { + "$ref": "#/$defs/_Rspd2_3" + }, + { + "$ref": "#/$defs/_Rspd4" + }, + { + "$ref": "#/$defs/_Rspd5" + }, + { + "$ref": "#/$defs/_Rspd6A" + }, + { + "$ref": "#/$defs/_Rspd6B" + }, + { + "$ref": "#/$defs/_Rspagl" + }, + { + "$ref": "#/$defs/_Rspagl1" + }, + { + "$ref": "#/$defs/_Rspagl2_3" + }, + { + "$ref": "#/$defs/_Rspagl5" + }, + { + "$ref": "#/$defs/_Rspagl6A" + }, + { + "$ref": "#/$defs/_Rspagl6B" + }, + { + "$ref": "#/$defs/_Rspv" + }, + { + "$ref": "#/$defs/_Rspv1" + }, + { + "$ref": "#/$defs/_Rspv2_3" + }, + { + "$ref": "#/$defs/_Rspv5" + }, + { + "$ref": "#/$defs/_Rspv6A" + }, + { + "$ref": "#/$defs/_Rspv6B" + }, + { + "$ref": "#/$defs/_Rh" + }, + { + "$ref": "#/$defs/_Rl" + }, + { + "$ref": "#/$defs/_Visrl1" + }, + { + "$ref": "#/$defs/_Visrl2_3" + }, + { + "$ref": "#/$defs/_Visrl4" + }, + { + "$ref": "#/$defs/_Visrl5" + }, + { + "$ref": "#/$defs/_Visrl6A" + }, + { + "$ref": "#/$defs/_Visrl6B" + }, + { + "$ref": "#/$defs/_Visrl" + }, + { + "$ref": "#/$defs/_Mos" + }, + { + "$ref": "#/$defs/_Mos1" + }, + { + "$ref": "#/$defs/_Mos2_3" + }, + { + "$ref": "#/$defs/_Mos5" + }, + { + "$ref": "#/$defs/_Mos6A" + }, + { + "$ref": "#/$defs/_Mos6B" + }, + { + "$ref": "#/$defs/_Sf" + }, + { + "$ref": "#/$defs/_Sh" + }, + { + "$ref": "#/$defs/_Sim" + }, + { + "$ref": "#/$defs/_Mo" + }, + { + "$ref": "#/$defs/_Ss" + }, + { + "$ref": "#/$defs/_Spvc" + }, + { + "$ref": "#/$defs/_Spvi" + }, + { + "$ref": "#/$defs/_Spvo" + }, + { + "$ref": "#/$defs/_Spiv" + }, + { + "$ref": "#/$defs/_Str" + }, + { + "$ref": "#/$defs/_Strd" + }, + { + "$ref": "#/$defs/_Strv" + }, + { + "$ref": "#/$defs/_Samy" + }, + { + "$ref": "#/$defs/_Slc" + }, + { + "$ref": "#/$defs/_Sco" + }, + { + "$ref": "#/$defs/_Sfo" + }, + { + "$ref": "#/$defs/_Subg" + }, + { + "$ref": "#/$defs/_Sub" + }, + { + "$ref": "#/$defs/_Sld" + }, + { + "$ref": "#/$defs/_Smt" + }, + { + "$ref": "#/$defs/_Spa" + }, + { + "$ref": "#/$defs/_Spf" + }, + { + "$ref": "#/$defs/_Spfm" + }, + { + "$ref": "#/$defs/_Spfp" + }, + { + "$ref": "#/$defs/_Sbpv" + }, + { + "$ref": "#/$defs/_Si" + }, + { + "$ref": "#/$defs/_Snc" + }, + { + "$ref": "#/$defs/_Snr" + }, + { + "$ref": "#/$defs/_Stn" + }, + { + "$ref": "#/$defs/_Cs" + }, + { + "$ref": "#/$defs/_Scm" + }, + { + "$ref": "#/$defs/_Scdg" + }, + { + "$ref": "#/$defs/_Scdw" + }, + { + "$ref": "#/$defs/_Scig" + }, + { + "$ref": "#/$defs/_Sciw" + }, + { + "$ref": "#/$defs/_Scop" + }, + { + "$ref": "#/$defs/_Scs" + }, + { + "$ref": "#/$defs/_Scsg" + }, + { + "$ref": "#/$defs/_Sczo" + }, + { + "$ref": "#/$defs/_Soc" + }, + { + "$ref": "#/$defs/_Socl" + }, + { + "$ref": "#/$defs/_Socm" + }, + { + "$ref": "#/$defs/_Por" + }, + { + "$ref": "#/$defs/_Suv" + }, + { + "$ref": "#/$defs/_Sss" + }, + { + "$ref": "#/$defs/_Sss1" + }, + { + "$ref": "#/$defs/_Sss2_3" + }, + { + "$ref": "#/$defs/_Sss4" + }, + { + "$ref": "#/$defs/_Sss5" + }, + { + "$ref": "#/$defs/_Sss6A" + }, + { + "$ref": "#/$defs/_Sss6B" + }, + { + "$ref": "#/$defs/_Sch" + }, + { + "$ref": "#/$defs/_Sgn" + }, + { + "$ref": "#/$defs/_Sg" + }, + { + "$ref": "#/$defs/_Sum" + }, + { + "$ref": "#/$defs/_Su3" + }, + { + "$ref": "#/$defs/_So" + }, + { + "$ref": "#/$defs/_Sut" + }, + { + "$ref": "#/$defs/_Tt" + }, + { + "$ref": "#/$defs/_Ttd" + }, + { + "$ref": "#/$defs/_Ttv" + }, + { + "$ref": "#/$defs/_Trn" + }, + { + "$ref": "#/$defs/_Tea" + }, + { + "$ref": "#/$defs/_Tea1" + }, + { + "$ref": "#/$defs/_Tea2_3" + }, + { + "$ref": "#/$defs/_Tea4" + }, + { + "$ref": "#/$defs/_Tea5" + }, + { + "$ref": "#/$defs/_Tea6A" + }, + { + "$ref": "#/$defs/_Tea6B" + }, + { + "$ref": "#/$defs/_Th" + }, + { + "$ref": "#/$defs/_Dorpm" + }, + { + "$ref": "#/$defs/_Dorsm" + }, + { + "$ref": "#/$defs/_Trs" + }, + { + "$ref": "#/$defs/_Iv" + }, + { + "$ref": "#/$defs/_Tu" + }, + { + "$ref": "#/$defs/_Tm" + }, + { + "$ref": "#/$defs/_Tmd" + }, + { + "$ref": "#/$defs/_Tmv" + }, + { + "$ref": "#/$defs/_Uvu" + }, + { + "$ref": "#/$defs/_Ov" + }, + { + "$ref": "#/$defs/_Val" + }, + { + "$ref": "#/$defs/_Audv" + }, + { + "$ref": "#/$defs/_Audv1" + }, + { + "$ref": "#/$defs/_Audv2_3" + }, + { + "$ref": "#/$defs/_Audv4" + }, + { + "$ref": "#/$defs/_Audv5" + }, + { + "$ref": "#/$defs/_Audv6A" + }, + { + "$ref": "#/$defs/_Audv6B" + }, + { + "$ref": "#/$defs/_Vco" + }, + { + "$ref": "#/$defs/_Vent" + }, + { + "$ref": "#/$defs/_Vm" + }, + { + "$ref": "#/$defs/_Lgv" + }, + { + "$ref": "#/$defs/_Vp" + }, + { + "$ref": "#/$defs/_Vpl" + }, + { + "$ref": "#/$defs/_Vplpc" + }, + { + "$ref": "#/$defs/_Vpm" + }, + { + "$ref": "#/$defs/_Vpmpc" + }, + { + "$ref": "#/$defs/_Pmv" + }, + { + "$ref": "#/$defs/_Vta" + }, + { + "$ref": "#/$defs/_Vtn" + }, + { + "$ref": "#/$defs/_Vlpo" + }, + { + "$ref": "#/$defs/_Vmh" + }, + { + "$ref": "#/$defs/_Vmpo" + }, + { + "$ref": "#/$defs/_Verm" + }, + { + "$ref": "#/$defs/_Vnc" + }, + { + "$ref": "#/$defs/_Vecb" + }, + { + "$ref": "#/$defs/_Visc" + }, { - "$ref": "#/$defs/_Aa_Opto_Electronic" + "$ref": "#/$defs/_Visc1" }, { - "$ref": "#/$defs/_Asus" + "$ref": "#/$defs/_Visc2_3" }, { - "$ref": "#/$defs/_Abcam" + "$ref": "#/$defs/_Visc4" }, { - "$ref": "#/$defs/aind_data_schema_models__organizations___Addgene" + "$ref": "#/$defs/_Visc5" }, { - "$ref": "#/$defs/_Ailipu_Technology_Co" + "$ref": "#/$defs/_Visc6A" }, { - "$ref": "#/$defs/_Allen_Institute" + "$ref": "#/$defs/_Visc6B" }, { - "$ref": "#/$defs/_Allen_Institute_For_Brain_Science" + "$ref": "#/$defs/_Vis" }, { - "$ref": "#/$defs/_Allen_Institute_For_Neural_Dynamics" + "$ref": "#/$defs/_Xi" }, { - "$ref": "#/$defs/_Allied" + "$ref": "#/$defs/_Zi" }, { - "$ref": "#/$defs/_Applied_Scientific_Instrumentation" + "$ref": "#/$defs/_Alv" }, { - "$ref": "#/$defs/_Arecont_Vision_Costar" + "$ref": "#/$defs/_Amc" }, { - "$ref": "#/$defs/_Basler" + "$ref": "#/$defs/_Aco" }, { - "$ref": "#/$defs/_Cambridge_Technology" + "$ref": "#/$defs/_Act" }, { - "$ref": "#/$defs/_Carl_Zeiss" + "$ref": "#/$defs/_Arb" }, { - "$ref": "#/$defs/_Champalimaud_Foundation" + "$ref": "#/$defs/_Ar" }, { - "$ref": "#/$defs/_Chan_Zuckerberg_Initiative" + "$ref": "#/$defs/_Bic" }, { - "$ref": "#/$defs/_Chroma" + "$ref": "#/$defs/_Bsc" }, { - "$ref": "#/$defs/_Coherent_Scientific" + "$ref": "#/$defs/_C" }, { - "$ref": "#/$defs/_Columbia_University" + "$ref": "#/$defs/_Cpd" }, { - "$ref": "#/$defs/_Computar" + "$ref": "#/$defs/_Cbc" }, { - "$ref": "#/$defs/_Conoptics" + "$ref": "#/$defs/_Cbp" }, { - "$ref": "#/$defs/_Custom" + "$ref": "#/$defs/_Cbf" }, { - "$ref": "#/$defs/_Dodotronic" + "$ref": "#/$defs/_Aq" }, { - "$ref": "#/$defs/_Doric" + "$ref": "#/$defs/_Epsc" }, { - "$ref": "#/$defs/_Ealing" + "$ref": "#/$defs/_Mfbc" }, { - "$ref": "#/$defs/_Edmund_Optics" + "$ref": "#/$defs/_Cett" }, { - "$ref": "#/$defs/_Emory_University" + "$ref": "#/$defs/_Chpl" }, { - "$ref": "#/$defs/_Euresys" + "$ref": "#/$defs/_Cing" }, { - "$ref": "#/$defs/_Fujinon" + "$ref": "#/$defs/_Cviiin" }, { - "$ref": "#/$defs/_Hamamatsu" + "$ref": "#/$defs/_Fx" }, { - "$ref": "#/$defs/_Hamilton" + "$ref": "#/$defs/_Stc" }, { - "$ref": "#/$defs/_Huazhong_University_Of_Science_And_Technology" + "$ref": "#/$defs/_Cc" }, { - "$ref": "#/$defs/_Ir_Robot_Co" + "$ref": "#/$defs/_Fa" }, { - "$ref": "#/$defs/_Isl_Products_International" + "$ref": "#/$defs/_Ccb" }, { - "$ref": "#/$defs/_Infinity_Photo_Optical" + "$ref": "#/$defs/_Ee" }, { - "$ref": "#/$defs/_Integrated_Dna_Technologies" + "$ref": "#/$defs/_Fp" }, { - "$ref": "#/$defs/_Interuniversity_Microelectronics_Center" + "$ref": "#/$defs/_Ccs" }, { - "$ref": "#/$defs/_Invitrogen" + "$ref": "#/$defs/_Cst" }, { - "$ref": "#/$defs/_Jackson_Laboratory" + "$ref": "#/$defs/_Cne" }, { - "$ref": "#/$defs/_Janelia_Research_Campus" + "$ref": "#/$defs/_Tspc" }, { - "$ref": "#/$defs/_Julabo" + "$ref": "#/$defs/_Cuf" }, { - "$ref": "#/$defs/_Lg" + "$ref": "#/$defs/_Tspd" }, { - "$ref": "#/$defs/_Leica" + "$ref": "#/$defs/_Dtd" }, { - "$ref": "#/$defs/_Lumen_Dynamics" + "$ref": "#/$defs/_Das" }, { - "$ref": "#/$defs/_Lifecanvas" + "$ref": "#/$defs/_Dc" }, { - "$ref": "#/$defs/_Mbf_Bioscience" + "$ref": "#/$defs/_Df" }, { - "$ref": "#/$defs/_Mks_Newport" + "$ref": "#/$defs/_Dhc" }, { - "$ref": "#/$defs/_Mpi" + "$ref": "#/$defs/_Lotd" }, { - "$ref": "#/$defs/_Meadowlark_Optics" + "$ref": "#/$defs/_Drt" }, { - "$ref": "#/$defs/_Michael_J_Fox_Foundation_For_Parkinson_S_Research" + "$ref": "#/$defs/_Sctd" }, { - "$ref": "#/$defs/_Midwest_Optical_Systems_Inc_" + "$ref": "#/$defs/_Mfbse" }, { - "$ref": "#/$defs/_Mitutuyo" + "$ref": "#/$defs/_Ec" }, { - "$ref": "#/$defs/_Nresearch_Inc" + "$ref": "#/$defs/_Em" }, { - "$ref": "#/$defs/_National_Center_For_Complementary_And_Integrative_Health" + "$ref": "#/$defs/_Eps" }, { - "$ref": "#/$defs/_National_Institute_Of_Mental_Health" + "$ref": "#/$defs/_Viin" }, { - "$ref": "#/$defs/_National_Institute_Of_Neurological_Disorders_And_Stroke" + "$ref": "#/$defs/_Fr" }, { - "$ref": "#/$defs/_National_Instruments" + "$ref": "#/$defs/_Fiber_Tracts" }, { - "$ref": "#/$defs/_Navitar" + "$ref": "#/$defs/_Fi" }, { - "$ref": "#/$defs/_Neurophotometrics" + "$ref": "#/$defs/_Fxs" }, { - "$ref": "#/$defs/_New_Scale_Technologies" + "$ref": "#/$defs/_V4" }, { - "$ref": "#/$defs/_New_York_University" + "$ref": "#/$defs/_Ccg" }, { - "$ref": "#/$defs/_Nikon" + "$ref": "#/$defs/_Gviin" }, { - "$ref": "#/$defs/_Olympus" + "$ref": "#/$defs/_Hbc" }, { - "$ref": "#/$defs/_Open_Ephys_Production_Site" + "$ref": "#/$defs/_Hc" }, { - "$ref": "#/$defs/_Optotune" + "$ref": "#/$defs/_Mfsbshy" }, { - "$ref": "#/$defs/_Other" + "$ref": "#/$defs/_Icp" }, { - "$ref": "#/$defs/_Oxxius" + "$ref": "#/$defs/_Cic" }, { - "$ref": "#/$defs/_Prizmatix" + "$ref": "#/$defs/_Int" }, { - "$ref": "#/$defs/_Quantifi" + "$ref": "#/$defs/_Lfbs" }, { - "$ref": "#/$defs/_Raspberry_Pi" + "$ref": "#/$defs/_Ll" }, { - "$ref": "#/$defs/_Sicgen" + "$ref": "#/$defs/_Lot" }, { - "$ref": "#/$defs/_Schneider_Kreuznach" + "$ref": "#/$defs/_Lotg" }, { - "$ref": "#/$defs/_Second_Order_Effects" + "$ref": "#/$defs/_V4R" }, { - "$ref": "#/$defs/_Semrock" + "$ref": "#/$defs/_Vl" }, { - "$ref": "#/$defs/_Sigma_Aldrich" + "$ref": "#/$defs/_Mp" }, { - "$ref": "#/$defs/_Simons_Foundation" + "$ref": "#/$defs/_Mfbsma" }, { - "$ref": "#/$defs/_Spinnaker" + "$ref": "#/$defs/_Mtg" }, { - "$ref": "#/$defs/_Tamron" + "$ref": "#/$defs/_Mtt" }, { - "$ref": "#/$defs/_Technical_Manufacturing_Corporation" + "$ref": "#/$defs/_Mct" }, { - "$ref": "#/$defs/_Teledyne_Flir" + "$ref": "#/$defs/_Mfb" }, { - "$ref": "#/$defs/_Templeton_World_Charity_Foundation" + "$ref": "#/$defs/_Mfbs" }, { - "$ref": "#/$defs/_The_Imaging_Source" + "$ref": "#/$defs/_Ml" }, { - "$ref": "#/$defs/_The_Lee_Company" + "$ref": "#/$defs/_Mlf" }, { - "$ref": "#/$defs/_Thermo_Fisher_Scientific" + "$ref": "#/$defs/_Mcp" }, { - "$ref": "#/$defs/_Thorlabs" + "$ref": "#/$defs/_Mov" }, { - "$ref": "#/$defs/_Tymphany" + "$ref": "#/$defs/_Nst" }, { - "$ref": "#/$defs/_Vieworks" + "$ref": "#/$defs/_Iiin" + }, + { + "$ref": "#/$defs/_In" + }, + { + "$ref": "#/$defs/_Onl" + }, + { + "$ref": "#/$defs/_Och" + }, + { + "$ref": "#/$defs/_Iin" + }, + { + "$ref": "#/$defs/_Or" + }, + { + "$ref": "#/$defs/_Opt" + }, + { + "$ref": "#/$defs/_Fxpo" + }, + { + "$ref": "#/$defs/_Pc" + }, + { + "$ref": "#/$defs/_Vispm" + }, + { + "$ref": "#/$defs/_Vispm1" + }, + { + "$ref": "#/$defs/_Vispm2_3" + }, + { + "$ref": "#/$defs/_Vispm4" + }, + { + "$ref": "#/$defs/_Vispm5" + }, + { + "$ref": "#/$defs/_Vispm6A" + }, + { + "$ref": "#/$defs/_Vispm6B" + }, + { + "$ref": "#/$defs/_Pm" + }, + { + "$ref": "#/$defs/_Py" + }, + { + "$ref": "#/$defs/_Pyd" + }, + { + "$ref": "#/$defs/_Root" + }, + { + "$ref": "#/$defs/_Rust" + }, + { + "$ref": "#/$defs/_Sv" + }, + { + "$ref": "#/$defs/_Ts" + }, + { + "$ref": "#/$defs/_Sptv" + }, + { + "$ref": "#/$defs/_Sm" + }, + { + "$ref": "#/$defs/_St" + }, + { + "$ref": "#/$defs/_Sez" + }, + { + "$ref": "#/$defs/_Scp" + }, + { + "$ref": "#/$defs/_Dscp" + }, + { + "$ref": "#/$defs/_Csc" + }, + { + "$ref": "#/$defs/_Scwm" + }, + { + "$ref": "#/$defs/_Sup" + }, + { + "$ref": "#/$defs/_Tsp" + }, + { + "$ref": "#/$defs/_Lfbst" + }, + { + "$ref": "#/$defs/_V3" + }, + { + "$ref": "#/$defs/_Tb" + }, + { + "$ref": "#/$defs/_Vn" + }, + { + "$ref": "#/$defs/_Ivn" + }, + { + "$ref": "#/$defs/_Uf" + }, + { + "$ref": "#/$defs/_Xn" + }, + { + "$ref": "#/$defs/_Vhc" + }, + { + "$ref": "#/$defs/_Sctv" + }, + { + "$ref": "#/$defs/_Vtd" + }, + { + "$ref": "#/$defs/_Vs" + }, + { + "$ref": "#/$defs/_Vviiin" + }, + { + "$ref": "#/$defs/_Viiin" + }, + { + "$ref": "#/$defs/_Von" + } + ] + }, + { + "type": "null" + } + ], + "default": null, + "title": "Targeted structure" + } + }, + "required": [ + "channels", + "number_of_planes", + "step_size", + "number_of_plane_repeats_per_volume", + "number_of_volume_repeats", + "fov_coordinate_ml", + "fov_coordinate_ap", + "fov_reference", + "fov_width", + "fov_height", + "fov_scale_factor", + "frame_rate" + ], + "title": "Stack", + "type": "object" + }, + "StackChannel": { + "additionalProperties": false, + "description": "Description of a Channel used in a Stack", + "properties": { + "channel_name": { + "title": "Channel", + "type": "string" + }, + "light_source_name": { + "description": "Must match device name", + "title": "Light source name", + "type": "string" + }, + "filter_names": { + "description": "Must match device names", + "items": { + "type": "string" + }, + "title": "Filter names", + "type": "array" + }, + "detector_name": { + "description": "Must match device name", + "title": "Detector name", + "type": "string" + }, + "additional_device_names": { + "default": [], + "items": { + "type": "string" + }, + "title": "Additional device names", + "type": "array" + }, + "excitation_wavelength": { + "maximum": 1000, + "minimum": 300, + "title": "Wavelength", + "type": "integer" + }, + "excitation_wavelength_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "nanometer", + "title": "Laser wavelength unit" + }, + "excitation_power": { + "maximum": 2000.0, + "title": "Laser power", + "type": "number" + }, + "excitation_power_unit": { + "$ref": "#/$defs/PowerUnit", + "default": "milliwatt", + "title": "Laser power unit" + }, + "filter_wheel_index": { + "title": "Filter wheel index", + "type": "integer" + }, + "dilation": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Dilation (pixels)" + }, + "dilation_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "pixel", + "title": "Dilation unit" + }, + "description": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Description" + }, + "start_depth": { + "title": "Starting depth (um)", + "type": "integer" + }, + "end_depth": { + "title": "Ending depth (um)", + "type": "integer" + }, + "depth_unit": { + "$ref": "#/$defs/SizeUnit", + "default": "micrometer", + "title": "Depth unit" + } + }, + "required": [ + "channel_name", + "light_source_name", + "filter_names", + "detector_name", + "excitation_wavelength", + "excitation_power", + "filter_wheel_index", + "start_depth", + "end_depth" + ], + "title": "StackChannel", + "type": "object" + }, + "StimulusEpoch": { + "additionalProperties": false, + "description": "Description of stimulus used during session", + "properties": { + "stimulus_start_time": { + "description": "When a specific stimulus begins. This might be the same as the session start time.", + "format": "date-time", + "title": "Stimulus start time", + "type": "string" + }, + "stimulus_end_time": { + "description": "When a specific stimulus ends. This might be the same as the session end time.", + "format": "date-time", + "title": "Stimulus end time", + "type": "string" + }, + "stimulus_name": { + "title": "Stimulus name", + "type": "string" + }, + "session_number": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Session number" + }, + "software": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/Software" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": [], + "description": "The software used to control the behavior/stimulus (e.g. Bonsai)", + "title": "Software" + }, + "script": { + "anyOf": [ + { + "$ref": "#/$defs/Software" + }, + { + "type": "null" + } + ], + "default": null, + "description": "provide URL to the commit of the script and the parameters used", + "title": "Script" + }, + "stimulus_modalities": { + "items": { + "$ref": "#/$defs/StimulusModality" + }, + "title": "Stimulus modalities", + "type": "array" + }, + "stimulus_parameters": { + "anyOf": [ + { + "items": { + "discriminator": { + "mapping": { + "Auditory Stimulation": "#/$defs/AuditoryStimulation", + "Olfactory Stimulation": "#/$defs/OlfactoryStimulation", + "Opto Stimulation": "#/$defs/OptoStimulation", + "Photo Stimulation": "#/$defs/PhotoStimulation", + "Visual Stimulation": "#/$defs/VisualStimulation" + }, + "propertyName": "stimulus_type" }, - { - "$ref": "#/$defs/_Vortran" + "oneOf": [ + { + "$ref": "#/$defs/AuditoryStimulation" + }, + { + "$ref": "#/$defs/OptoStimulation" + }, + { + "$ref": "#/$defs/OlfactoryStimulation" + }, + { + "$ref": "#/$defs/PhotoStimulation" + }, + { + "$ref": "#/$defs/VisualStimulation" + } + ] + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Stimulus parameters" + }, + "stimulus_device_names": { + "default": [], + "items": { + "type": "string" + }, + "title": "Stimulus devices", + "type": "array" + }, + "speaker_config": { + "anyOf": [ + { + "$ref": "#/$defs/SpeakerConfig" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Speaker Config" + }, + "light_source_config": { + "anyOf": [ + { + "items": { + "discriminator": { + "mapping": { + "Laser": "#/$defs/LaserConfig", + "Light emitting diode": "#/$defs/LightEmittingDiodeConfig" + }, + "propertyName": "device_type" }, - { - "$ref": "#/$defs/_Ams_Osram" - } - ] + "oneOf": [ + { + "$ref": "#/$defs/LightEmittingDiodeConfig" + }, + { + "$ref": "#/$defs/LaserConfig" + } + ] + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": [], + "description": "Light sources for stimulation", + "title": "Light source config" + }, + "output_parameters": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "title": "Performance metrics" + }, + "reward_consumed_during_epoch": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Reward consumed during training (uL)" + }, + "reward_consumed_unit": { + "$ref": "#/$defs/VolumeUnit", + "default": "microliter", + "title": "Reward consumed unit" + }, + "trials_total": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Total trials" + }, + "trials_finished": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Finished trials" + }, + "trials_rewarded": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Rewarded trials" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "stimulus_start_time", + "stimulus_end_time", + "stimulus_name", + "stimulus_modalities" + ], + "title": "StimulusEpoch", + "type": "object" + }, + "StimulusModality": { + "description": "Types of stimulus modalities", + "enum": [ + "Auditory", + "Olfactory", + "Optogenetics", + "None", + "Virtual reality", + "Visual", + "Wheel friction" + ], + "title": "StimulusModality", + "type": "string" + }, + "Stream": { + "additionalProperties": false, + "description": "Data streams with a start and stop time", + "properties": { + "stream_start_time": { + "format": "date-time", + "title": "Stream start time", + "type": "string" + }, + "stream_end_time": { + "format": "date-time", + "title": "Stream stop time", + "type": "string" + }, + "daq_names": { + "default": [], + "items": { + "type": "string" + }, + "title": "DAQ devices", + "type": "array" + }, + "camera_names": { + "default": [], + "items": { + "type": "string" + }, + "title": "Cameras", + "type": "array" + }, + "light_sources": { + "default": [], + "items": { + "discriminator": { + "mapping": { + "Laser": "#/$defs/LaserConfig", + "Light emitting diode": "#/$defs/LightEmittingDiodeConfig" + }, + "propertyName": "device_type" + }, + "oneOf": [ + { + "$ref": "#/$defs/LightEmittingDiodeConfig" + }, + { + "$ref": "#/$defs/LaserConfig" + } + ] + }, + "title": "Light Sources", + "type": "array" + }, + "ephys_modules": { + "default": [], + "items": { + "$ref": "#/$defs/ManipulatorModule" + }, + "title": "Ephys modules", + "type": "array" + }, + "stick_microscopes": { + "default": [], + "description": "Must match stick microscope assemblies in rig file", + "items": { + "$ref": "#/$defs/DomeModule" + }, + "title": "Stick microscopes", + "type": "array" + }, + "manipulator_modules": { + "default": [], + "items": { + "$ref": "#/$defs/ManipulatorModule" + }, + "title": "Manipulator modules", + "type": "array" + }, + "detectors": { + "default": [], + "items": { + "$ref": "#/$defs/DetectorConfig" + }, + "title": "Detectors", + "type": "array" + }, + "fiber_connections": { + "default": [], + "items": { + "$ref": "#/$defs/FiberConnectionConfig" + }, + "title": "Implanted fiber photometry devices", + "type": "array" + }, + "fiber_modules": { + "default": [], + "items": { + "$ref": "#/$defs/FiberModule" + }, + "title": "Inserted fiber modules", + "type": "array" + }, + "ophys_fovs": { + "default": [], + "items": { + "$ref": "#/$defs/FieldOfView" + }, + "title": "Fields of view", + "type": "array" + }, + "slap_fovs": { + "default": [], + "items": { + "$ref": "#/$defs/SlapFieldOfView" + }, + "title": "Slap2 fields of view", + "type": "array" + }, + "stack_parameters": { + "anyOf": [ + { + "$ref": "#/$defs/Stack" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Stack parameters" + }, + "mri_scans": { + "default": [], + "items": { + "$ref": "#/$defs/MRIScan" + }, + "title": "MRI scans", + "type": "array" + }, + "stream_modalities": { + "items": { + "discriminator": { + "mapping": { + "EMG": "#/$defs/_Emg", + "ISI": "#/$defs/_Isi", + "MRI": "#/$defs/_Mri", + "SPIM": "#/$defs/_Spim", + "behavior": "#/$defs/_Behavior", + "behavior-videos": "#/$defs/_Behavior_Videos", + "confocal": "#/$defs/_Confocal", + "ecephys": "#/$defs/_Ecephys", + "fMOST": "#/$defs/_Fmost", + "fib": "#/$defs/_Fib", + "icephys": "#/$defs/_Icephys", + "merfish": "#/$defs/_Merfish", + "pophys": "#/$defs/_Pophys", + "slap": "#/$defs/_Slap" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/_Behavior" + }, + { + "$ref": "#/$defs/_Behavior_Videos" + }, + { + "$ref": "#/$defs/_Confocal" + }, + { + "$ref": "#/$defs/_Emg" + }, + { + "$ref": "#/$defs/_Ecephys" + }, + { + "$ref": "#/$defs/_Fib" + }, + { + "$ref": "#/$defs/_Fmost" + }, + { + "$ref": "#/$defs/_Icephys" + }, + { + "$ref": "#/$defs/_Isi" + }, + { + "$ref": "#/$defs/_Mri" + }, + { + "$ref": "#/$defs/_Merfish" + }, + { + "$ref": "#/$defs/_Pophys" + }, + { + "$ref": "#/$defs/_Slap" + }, + { + "$ref": "#/$defs/_Spim" + } + ] + }, + "title": "Modalities", + "type": "array" + }, + "software": { + "anyOf": [ + { + "items": { + "$ref": "#/$defs/Software" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": [], + "title": "Data stream software information" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "stream_start_time", + "stream_end_time", + "stream_modalities" + ], + "title": "Stream", + "type": "object" + }, + "SubjectPosition": { + "description": "Subject position", + "enum": [ + "Prone", + "Supine" + ], + "title": "SubjectPosition", + "type": "string" + }, + "TimeUnit": { + "description": "Enumeration of Time Measurements", + "enum": [ + "hour", + "minute", + "second", + "millisecond", + "microsecond", + "nanosecond" + ], + "title": "TimeUnit", + "type": "string" + }, + "Translation3dTransform": { + "additionalProperties": false, + "description": "Values to be vector-added to a 3D position. Often needed to specify a device or tile's origin.", + "properties": { + "type": { + "const": "translation", + "default": "translation", + "title": "Type", + "type": "string" + }, + "translation": { + "items": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ] + }, + "maxItems": 3, + "minItems": 3, + "title": "3D translation parameters", + "type": "array" + } + }, + "required": [ + "translation" + ], + "title": "Translation3dTransform", + "type": "object" + }, + "TriggerType": { + "description": "Types of detector triggers", + "enum": [ + "Internal", + "External" + ], + "title": "TriggerType", + "type": "string" + }, + "VisualStimulation": { + "additionalProperties": false, + "description": "Description of visual stimulus parameters. Provides a high level description of stimulus.", + "properties": { + "stimulus_type": { + "const": "Visual Stimulation", + "default": "Visual Stimulation", + "title": "Stimulus Type", + "type": "string" + }, + "stimulus_name": { + "title": "Stimulus name", + "type": "string" + }, + "stimulus_parameters": { + "$ref": "#/$defs/AindGeneric", + "default": {}, + "description": "Define and list the parameter values used (e.g. all TF or orientation values)", + "title": "Stimulus parameters" + }, + "stimulus_template_name": { + "default": [], + "description": "Name of image set or movie displayed", + "items": { + "type": "string" + }, + "title": "Stimulus template name", + "type": "array" + }, + "notes": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Notes" + } + }, + "required": [ + "stimulus_name" + ], + "title": "VisualStimulation", + "type": "object" + }, + "VolumeUnit": { + "description": "Enumeration of Volume Measurements", + "enum": [ + "liter", + "milliliter", + "microliter", + "nanoliter" + ], + "title": "VolumeUnit", + "type": "string" + }, + "_Aa_Opto_Electronic": { + "description": "Model AA Opto Electronic", + "properties": { + "name": { + "const": "AA Opto Electronic", + "default": "AA Opto Electronic", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Aa_Opto_Electronic", + "type": "object" + }, + "_Aaa": { + "description": "Model AAA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior amygdalar area", + "default": "Anterior amygdalar area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AAA", + "default": "AAA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "23", + "default": "23", + "title": "Id", + "type": "string" + } + }, + "title": "_Aaa", + "type": "object" + }, + "_Abcam": { + "description": "Model Abcam", + "properties": { + "name": { + "const": "Abcam", + "default": "Abcam", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02e1wjw63", + "default": "02e1wjw63", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Abcam", + "type": "object" + }, + "_Aca": { + "description": "Model ACA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area", + "default": "Anterior cingulate area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACA", + "default": "ACA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "31", + "default": "31", + "title": "Id", + "type": "string" + } + }, + "title": "_Aca", + "type": "object" + }, + "_Acad": { + "description": "Model ACAd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part", + "default": "Anterior cingulate area, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd", + "default": "ACAd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "39", + "default": "39", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad", + "type": "object" + }, + "_Acad1": { + "description": "Model ACAd1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part, layer 1", + "default": "Anterior cingulate area, dorsal part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd1", + "default": "ACAd1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "935", + "default": "935", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad1", + "type": "object" + }, + "_Acad2_3": { + "description": "Model ACAd2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part, layer 2/3", + "default": "Anterior cingulate area, dorsal part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd2/3", + "default": "ACAd2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "211", + "default": "211", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad2_3", + "type": "object" + }, + "_Acad5": { + "description": "Model ACAd5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part, layer 5", + "default": "Anterior cingulate area, dorsal part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd5", + "default": "ACAd5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1015", + "default": "1015", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad5", + "type": "object" + }, + "_Acad6A": { + "description": "Model ACAd6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part, layer 6a", + "default": "Anterior cingulate area, dorsal part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd6a", + "default": "ACAd6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "919", + "default": "919", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad6A", + "type": "object" + }, + "_Acad6B": { + "description": "Model ACAd6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, dorsal part, layer 6b", + "default": "Anterior cingulate area, dorsal part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAd6b", + "default": "ACAd6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "927", + "default": "927", + "title": "Id", + "type": "string" + } + }, + "title": "_Acad6B", + "type": "object" + }, + "_Acav": { + "description": "Model ACAv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part", + "default": "Anterior cingulate area, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv", + "default": "ACAv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "48", + "default": "48", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav", + "type": "object" + }, + "_Acav1": { + "description": "Model ACAv1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part, layer 1", + "default": "Anterior cingulate area, ventral part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv1", + "default": "ACAv1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "588", + "default": "588", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav1", + "type": "object" + }, + "_Acav2_3": { + "description": "Model ACAv2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part, layer 2/3", + "default": "Anterior cingulate area, ventral part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv2/3", + "default": "ACAv2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "296", + "default": "296", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav2_3", + "type": "object" + }, + "_Acav5": { + "description": "Model ACAv5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part, layer 5", + "default": "Anterior cingulate area, ventral part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv5", + "default": "ACAv5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "772", + "default": "772", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav5", + "type": "object" + }, + "_Acav6A": { + "description": "Model ACAv6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part, 6a", + "default": "Anterior cingulate area, ventral part, 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv6a", + "default": "ACAv6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "810", + "default": "810", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav6A", + "type": "object" + }, + "_Acav6B": { + "description": "Model ACAv6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior cingulate area, ventral part, 6b", + "default": "Anterior cingulate area, ventral part, 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACAv6b", + "default": "ACAv6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "819", + "default": "819", + "title": "Id", + "type": "string" + } + }, + "title": "_Acav6B", + "type": "object" + }, + "_Acb": { + "description": "Model ACB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus accumbens", + "default": "Nucleus accumbens", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACB", + "default": "ACB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "56", + "default": "56", + "title": "Id", + "type": "string" + } + }, + "title": "_Acb", + "type": "object" + }, + "_Aco": { + "description": "Model aco", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "anterior commissure, olfactory limb", + "default": "anterior commissure, olfactory limb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "aco", + "default": "aco", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "900", + "default": "900", + "title": "Id", + "type": "string" + } + }, + "title": "_Aco", + "type": "object" + }, + "_Acs5": { + "description": "Model Acs5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory trigeminal nucleus", + "default": "Accessory trigeminal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "Acs5", + "default": "Acs5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "549009219", + "default": "549009219", + "title": "Id", + "type": "string" + } + }, + "title": "_Acs5", + "type": "object" + }, + "_Act": { + "description": "Model act", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "anterior commissure, temporal limb", + "default": "anterior commissure, temporal limb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "act", + "default": "act", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "908", + "default": "908", + "title": "Id", + "type": "string" + } + }, + "title": "_Act", + "type": "object" + }, + "_Acvii": { + "description": "Model ACVII", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory facial motor nucleus", + "default": "Accessory facial motor nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ACVII", + "default": "ACVII", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "576", + "default": "576", + "title": "Id", + "type": "string" + } + }, + "title": "_Acvii", + "type": "object" + }, + "_Ad": { + "description": "Model AD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterodorsal nucleus", + "default": "Anterodorsal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AD", + "default": "AD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "64", + "default": "64", + "title": "Id", + "type": "string" + } + }, + "title": "_Ad", + "type": "object" + }, + "_Adp": { + "description": "Model ADP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterodorsal preoptic nucleus", + "default": "Anterodorsal preoptic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ADP", + "default": "ADP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "72", + "default": "72", + "title": "Id", + "type": "string" + } + }, + "title": "_Adp", + "type": "object" + }, + "_Ahn": { + "description": "Model AHN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior hypothalamic nucleus", + "default": "Anterior hypothalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AHN", + "default": "AHN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "88", + "default": "88", + "title": "Id", + "type": "string" + } + }, + "title": "_Ahn", + "type": "object" + }, + "_Ai": { + "description": "Model AI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area", + "default": "Agranular insular area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AI", + "default": "AI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "95", + "default": "95", + "title": "Id", + "type": "string" + } + }, + "title": "_Ai", + "type": "object" + }, + "_Aid": { + "description": "Model AId", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part", + "default": "Agranular insular area, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId", + "default": "AId", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "104", + "default": "104", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid", + "type": "object" + }, + "_Aid1": { + "description": "Model AId1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part, layer 1", + "default": "Agranular insular area, dorsal part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId1", + "default": "AId1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "996", + "default": "996", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid1", + "type": "object" + }, + "_Aid2_3": { + "description": "Model AId2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part, layer 2/3", + "default": "Agranular insular area, dorsal part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId2/3", + "default": "AId2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "328", + "default": "328", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid2_3", + "type": "object" + }, + "_Aid5": { + "description": "Model AId5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part, layer 5", + "default": "Agranular insular area, dorsal part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId5", + "default": "AId5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1101", + "default": "1101", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid5", + "type": "object" + }, + "_Aid6A": { + "description": "Model AId6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part, layer 6a", + "default": "Agranular insular area, dorsal part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId6a", + "default": "AId6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "783", + "default": "783", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid6A", + "type": "object" + }, + "_Aid6B": { + "description": "Model AId6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, dorsal part, layer 6b", + "default": "Agranular insular area, dorsal part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AId6b", + "default": "AId6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "831", + "default": "831", + "title": "Id", + "type": "string" + } + }, + "title": "_Aid6B", + "type": "object" + }, + "_Ailipu_Technology_Co": { + "description": "Model Ailipu Technology Co", + "properties": { + "name": { + "const": "Ailipu Technology Co", + "default": "Ailipu Technology Co", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Ailipu", + "default": "Ailipu", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Ailipu_Technology_Co", + "type": "object" + }, + "_Aip": { + "description": "Model AIp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part", + "default": "Agranular insular area, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp", + "default": "AIp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "111", + "default": "111", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip", + "type": "object" + }, + "_Aip1": { + "description": "Model AIp1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part, layer 1", + "default": "Agranular insular area, posterior part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp1", + "default": "AIp1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "120", + "default": "120", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip1", + "type": "object" + }, + "_Aip2_3": { + "description": "Model AIp2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part, layer 2/3", + "default": "Agranular insular area, posterior part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp2/3", + "default": "AIp2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "163", + "default": "163", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip2_3", + "type": "object" + }, + "_Aip5": { + "description": "Model AIp5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part, layer 5", + "default": "Agranular insular area, posterior part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp5", + "default": "AIp5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "344", + "default": "344", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip5", + "type": "object" + }, + "_Aip6A": { + "description": "Model AIp6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part, layer 6a", + "default": "Agranular insular area, posterior part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp6a", + "default": "AIp6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "314", + "default": "314", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip6A", + "type": "object" + }, + "_Aip6B": { + "description": "Model AIp6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, posterior part, layer 6b", + "default": "Agranular insular area, posterior part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIp6b", + "default": "AIp6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "355", + "default": "355", + "title": "Id", + "type": "string" + } + }, + "title": "_Aip6B", + "type": "object" + }, + "_Aiv": { + "description": "Model AIv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part", + "default": "Agranular insular area, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv", + "default": "AIv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "119", + "default": "119", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv", + "type": "object" + }, + "_Aiv1": { + "description": "Model AIv1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part, layer 1", + "default": "Agranular insular area, ventral part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv1", + "default": "AIv1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "704", + "default": "704", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv1", + "type": "object" + }, + "_Aiv2_3": { + "description": "Model AIv2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part, layer 2/3", + "default": "Agranular insular area, ventral part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv2/3", + "default": "AIv2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "694", + "default": "694", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv2_3", + "type": "object" + }, + "_Aiv5": { + "description": "Model AIv5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part, layer 5", + "default": "Agranular insular area, ventral part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv5", + "default": "AIv5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "800", + "default": "800", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv5", + "type": "object" + }, + "_Aiv6A": { + "description": "Model AIv6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part, layer 6a", + "default": "Agranular insular area, ventral part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv6a", + "default": "AIv6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "675", + "default": "675", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv6A", + "type": "object" + }, + "_Aiv6B": { + "description": "Model AIv6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Agranular insular area, ventral part, layer 6b", + "default": "Agranular insular area, ventral part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AIv6b", + "default": "AIv6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "699", + "default": "699", + "title": "Id", + "type": "string" + } + }, + "title": "_Aiv6B", + "type": "object" + }, + "_Allen_Institute": { + "description": "Model Allen Institute", + "properties": { + "name": { + "const": "Allen Institute", + "default": "Allen Institute", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "AI", + "default": "AI", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03cpe7c52", + "default": "03cpe7c52", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Allen_Institute", + "type": "object" + }, + "_Allen_Institute_For_Brain_Science": { + "description": "Model Allen Institute for Brain Science", + "properties": { + "name": { + "const": "Allen Institute for Brain Science", + "default": "Allen Institute for Brain Science", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "AIBS", + "default": "AIBS", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00dcv1019", + "default": "00dcv1019", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Allen_Institute_For_Brain_Science", + "type": "object" + }, + "_Allen_Institute_For_Neural_Dynamics": { + "description": "Model Allen Institute for Neural Dynamics", + "properties": { + "name": { + "const": "Allen Institute for Neural Dynamics", + "default": "Allen Institute for Neural Dynamics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "AIND", + "default": "AIND", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "04szwah67", + "default": "04szwah67", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Allen_Institute_For_Neural_Dynamics", + "type": "object" + }, + "_Allied": { + "description": "Model Allied", + "properties": { + "name": { + "const": "Allied", + "default": "Allied", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Allied", + "type": "object" + }, + "_Alv": { + "description": "Model alv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "alveus", + "default": "alveus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "alv", + "default": "alv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "466", + "default": "466", + "title": "Id", + "type": "string" + } + }, + "title": "_Alv", + "type": "object" + }, + "_Am": { + "description": "Model AM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteromedial nucleus", + "default": "Anteromedial nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AM", + "default": "AM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "127", + "default": "127", + "title": "Id", + "type": "string" + } + }, + "title": "_Am", + "type": "object" + }, + "_Amb": { + "description": "Model AMB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus ambiguus", + "default": "Nucleus ambiguus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AMB", + "default": "AMB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "135", + "default": "135", + "title": "Id", + "type": "string" + } + }, + "title": "_Amb", + "type": "object" + }, + "_Ambd": { + "description": "Model AMBd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus ambiguus, dorsal division", + "default": "Nucleus ambiguus, dorsal division", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AMBd", + "default": "AMBd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "939", + "default": "939", + "title": "Id", + "type": "string" + } + }, + "title": "_Ambd", + "type": "object" + }, + "_Ambv": { + "description": "Model AMBv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus ambiguus, ventral division", + "default": "Nucleus ambiguus, ventral division", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AMBv", + "default": "AMBv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "143", + "default": "143", + "title": "Id", + "type": "string" + } + }, + "title": "_Ambv", + "type": "object" + }, + "_Amc": { + "description": "Model amc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "amygdalar capsule", + "default": "amygdalar capsule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "amc", + "default": "amc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "884", + "default": "884", + "title": "Id", + "type": "string" + } + }, + "title": "_Amc", + "type": "object" + }, + "_Amd": { + "description": "Model AMd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteromedial nucleus, dorsal part", + "default": "Anteromedial nucleus, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AMd", + "default": "AMd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1096", + "default": "1096", + "title": "Id", + "type": "string" + } + }, + "title": "_Amd", + "type": "object" + }, + "_Ams_Osram": { + "description": "Model ams OSRAM", + "properties": { + "name": { + "const": "ams OSRAM", + "default": "ams OSRAM", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "045d0h266", + "default": "045d0h266", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Ams_Osram", + "type": "object" + }, + "_Amv": { + "description": "Model AMv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteromedial nucleus, ventral part", + "default": "Anteromedial nucleus, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AMv", + "default": "AMv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1104", + "default": "1104", + "title": "Id", + "type": "string" + } + }, + "title": "_Amv", + "type": "object" + }, + "_An": { + "description": "Model AN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ansiform lobule", + "default": "Ansiform lobule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AN", + "default": "AN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1017", + "default": "1017", + "title": "Id", + "type": "string" + } + }, + "title": "_An", + "type": "object" + }, + "_Ancr1": { + "description": "Model ANcr1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Crus 1", + "default": "Crus 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ANcr1", + "default": "ANcr1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1056", + "default": "1056", + "title": "Id", + "type": "string" + } + }, + "title": "_Ancr1", + "type": "object" + }, + "_Ancr2": { + "description": "Model ANcr2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Crus 2", + "default": "Crus 2", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ANcr2", + "default": "ANcr2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1064", + "default": "1064", + "title": "Id", + "type": "string" + } + }, + "title": "_Ancr2", + "type": "object" + }, + "_Aob": { + "description": "Model AOB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory olfactory bulb", + "default": "Accessory olfactory bulb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AOB", + "default": "AOB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "151", + "default": "151", + "title": "Id", + "type": "string" + } + }, + "title": "_Aob", + "type": "object" + }, + "_Aobgl": { + "description": "Model AOBgl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory olfactory bulb, glomerular layer", + "default": "Accessory olfactory bulb, glomerular layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AOBgl", + "default": "AOBgl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "188", + "default": "188", + "title": "Id", + "type": "string" + } + }, + "title": "_Aobgl", + "type": "object" + }, + "_Aobgr": { + "description": "Model AOBgr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory olfactory bulb, granular layer", + "default": "Accessory olfactory bulb, granular layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AOBgr", + "default": "AOBgr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "196", + "default": "196", + "title": "Id", + "type": "string" + } + }, + "title": "_Aobgr", + "type": "object" + }, + "_Aobmi": { + "description": "Model AOBmi", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory olfactory bulb, mitral layer", + "default": "Accessory olfactory bulb, mitral layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AOBmi", + "default": "AOBmi", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "204", + "default": "204", + "title": "Id", + "type": "string" + } + }, + "title": "_Aobmi", + "type": "object" + }, + "_Aon": { + "description": "Model AON", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior olfactory nucleus", + "default": "Anterior olfactory nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AON", + "default": "AON", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "159", + "default": "159", + "title": "Id", + "type": "string" + } + }, + "title": "_Aon", + "type": "object" + }, + "_Ap": { + "description": "Model AP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Area postrema", + "default": "Area postrema", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AP", + "default": "AP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "207", + "default": "207", + "title": "Id", + "type": "string" + } + }, + "title": "_Ap", + "type": "object" + }, + "_Apn": { + "description": "Model APN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior pretectal nucleus", + "default": "Anterior pretectal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "APN", + "default": "APN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "215", + "default": "215", + "title": "Id", + "type": "string" + } + }, + "title": "_Apn", + "type": "object" + }, + "_Applied_Scientific_Instrumentation": { + "description": "Model Applied Scientific Instrumentation", + "properties": { + "name": { + "const": "Applied Scientific Instrumentation", + "default": "Applied Scientific Instrumentation", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "ASI", + "default": "ASI", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Applied_Scientific_Instrumentation", + "type": "object" + }, + "_Apr": { + "description": "Model APr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Area prostriata", + "default": "Area prostriata", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "APr", + "default": "APr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682508", + "default": "484682508", + "title": "Id", + "type": "string" + } + }, + "title": "_Apr", + "type": "object" + }, + "_Aq": { + "description": "Model AQ", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebral aqueduct", + "default": "cerebral aqueduct", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AQ", + "default": "AQ", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "140", + "default": "140", + "title": "Id", + "type": "string" + } + }, + "title": "_Aq", + "type": "object" + }, + "_Ar": { + "description": "Model ar", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "auditory radiation", + "default": "auditory radiation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ar", + "default": "ar", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682524", + "default": "484682524", + "title": "Id", + "type": "string" + } + }, + "title": "_Ar", + "type": "object" + }, + "_Arb": { + "description": "Model arb", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "arbor vitae", + "default": "arbor vitae", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "arb", + "default": "arb", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "728", + "default": "728", + "title": "Id", + "type": "string" + } + }, + "title": "_Arb", + "type": "object" + }, + "_Arecont_Vision_Costar": { + "description": "Model Arecont Vision Costar", + "properties": { + "name": { + "const": "Arecont Vision Costar", + "default": "Arecont Vision Costar", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Arecont_Vision_Costar", + "type": "object" + }, + "_Arh": { + "description": "Model ARH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Arcuate hypothalamic nucleus", + "default": "Arcuate hypothalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ARH", + "default": "ARH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "223", + "default": "223", + "title": "Id", + "type": "string" + } + }, + "title": "_Arh", + "type": "object" + }, + "_Aso": { + "description": "Model ASO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Accessory supraoptic group", + "default": "Accessory supraoptic group", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ASO", + "default": "ASO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "332", + "default": "332", + "title": "Id", + "type": "string" + } + }, + "title": "_Aso", + "type": "object" + }, + "_Asus": { + "description": "Model ASUS", + "properties": { + "name": { + "const": "ASUS", + "default": "ASUS", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00bxkz165", + "default": "00bxkz165", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Asus", + "type": "object" + }, + "_At": { + "description": "Model AT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior tegmental nucleus", + "default": "Anterior tegmental nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AT", + "default": "AT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "231", + "default": "231", + "title": "Id", + "type": "string" + } + }, + "title": "_At", + "type": "object" + }, + "_Atn": { + "description": "Model ATN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior group of the dorsal thalamus", + "default": "Anterior group of the dorsal thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ATN", + "default": "ATN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "239", + "default": "239", + "title": "Id", + "type": "string" + } + }, + "title": "_Atn", + "type": "object" + }, + "_Aud": { + "description": "Model AUD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Auditory areas", + "default": "Auditory areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUD", + "default": "AUD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "247", + "default": "247", + "title": "Id", + "type": "string" + } + }, + "title": "_Aud", + "type": "object" + }, + "_Audd": { + "description": "Model AUDd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area", + "default": "Dorsal auditory area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd", + "default": "AUDd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1011", + "default": "1011", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd", + "type": "object" + }, + "_Audd1": { + "description": "Model AUDd1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 1", + "default": "Dorsal auditory area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd1", + "default": "AUDd1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "527", + "default": "527", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd1", + "type": "object" + }, + "_Audd2_3": { + "description": "Model AUDd2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 2/3", + "default": "Dorsal auditory area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd2/3", + "default": "AUDd2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "600", + "default": "600", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd2_3", + "type": "object" + }, + "_Audd4": { + "description": "Model AUDd4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 4", + "default": "Dorsal auditory area, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd4", + "default": "AUDd4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "678", + "default": "678", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd4", + "type": "object" + }, + "_Audd5": { + "description": "Model AUDd5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 5", + "default": "Dorsal auditory area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd5", + "default": "AUDd5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "252", + "default": "252", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd5", + "type": "object" + }, + "_Audd6A": { + "description": "Model AUDd6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 6a", + "default": "Dorsal auditory area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd6a", + "default": "AUDd6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "156", + "default": "156", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd6A", + "type": "object" + }, + "_Audd6B": { + "description": "Model AUDd6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal auditory area, layer 6b", + "default": "Dorsal auditory area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDd6b", + "default": "AUDd6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "243", + "default": "243", + "title": "Id", + "type": "string" + } + }, + "title": "_Audd6B", + "type": "object" + }, + "_Audp": { + "description": "Model AUDp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area", + "default": "Primary auditory area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp", + "default": "AUDp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1002", + "default": "1002", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp", + "type": "object" + }, + "_Audp1": { + "description": "Model AUDp1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 1", + "default": "Primary auditory area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp1", + "default": "AUDp1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "735", + "default": "735", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp1", + "type": "object" + }, + "_Audp2_3": { + "description": "Model AUDp2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 2/3", + "default": "Primary auditory area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp2/3", + "default": "AUDp2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "251", + "default": "251", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp2_3", + "type": "object" + }, + "_Audp4": { + "description": "Model AUDp4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 4", + "default": "Primary auditory area, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp4", + "default": "AUDp4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "816", + "default": "816", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp4", + "type": "object" + }, + "_Audp5": { + "description": "Model AUDp5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 5", + "default": "Primary auditory area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp5", + "default": "AUDp5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "847", + "default": "847", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp5", + "type": "object" + }, + "_Audp6A": { + "description": "Model AUDp6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 6a", + "default": "Primary auditory area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp6a", + "default": "AUDp6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "954", + "default": "954", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp6A", + "type": "object" + }, + "_Audp6B": { + "description": "Model AUDp6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary auditory area, layer 6b", + "default": "Primary auditory area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDp6b", + "default": "AUDp6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1005", + "default": "1005", + "title": "Id", + "type": "string" + } + }, + "title": "_Audp6B", + "type": "object" + }, + "_Audpo": { + "description": "Model AUDpo", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area", + "default": "Posterior auditory area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo", + "default": "AUDpo", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1027", + "default": "1027", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo", + "type": "object" + }, + "_Audpo1": { + "description": "Model AUDpo1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 1", + "default": "Posterior auditory area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo1", + "default": "AUDpo1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "696", + "default": "696", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo1", + "type": "object" + }, + "_Audpo2_3": { + "description": "Model AUDpo2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 2/3", + "default": "Posterior auditory area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo2/3", + "default": "AUDpo2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "643", + "default": "643", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo2_3", + "type": "object" + }, + "_Audpo4": { + "description": "Model AUDpo4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 4", + "default": "Posterior auditory area, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo4", + "default": "AUDpo4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "759", + "default": "759", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo4", + "type": "object" + }, + "_Audpo5": { + "description": "Model AUDpo5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 5", + "default": "Posterior auditory area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo5", + "default": "AUDpo5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "791", + "default": "791", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo5", + "type": "object" + }, + "_Audpo6A": { + "description": "Model AUDpo6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 6a", + "default": "Posterior auditory area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo6a", + "default": "AUDpo6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "249", + "default": "249", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo6A", + "type": "object" + }, + "_Audpo6B": { + "description": "Model AUDpo6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior auditory area, layer 6b", + "default": "Posterior auditory area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDpo6b", + "default": "AUDpo6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "456", + "default": "456", + "title": "Id", + "type": "string" + } + }, + "title": "_Audpo6B", + "type": "object" + }, + "_Audv": { + "description": "Model AUDv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area", + "default": "Ventral auditory area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv", + "default": "AUDv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1018", + "default": "1018", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv", + "type": "object" + }, + "_Audv1": { + "description": "Model AUDv1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 1", + "default": "Ventral auditory area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv1", + "default": "AUDv1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "959", + "default": "959", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv1", + "type": "object" + }, + "_Audv2_3": { + "description": "Model AUDv2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 2/3", + "default": "Ventral auditory area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv2/3", + "default": "AUDv2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "755", + "default": "755", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv2_3", + "type": "object" + }, + "_Audv4": { + "description": "Model AUDv4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 4", + "default": "Ventral auditory area, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv4", + "default": "AUDv4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "990", + "default": "990", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv4", + "type": "object" + }, + "_Audv5": { + "description": "Model AUDv5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 5", + "default": "Ventral auditory area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv5", + "default": "AUDv5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1023", + "default": "1023", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv5", + "type": "object" + }, + "_Audv6A": { + "description": "Model AUDv6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 6a", + "default": "Ventral auditory area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv6a", + "default": "AUDv6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "520", + "default": "520", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv6A", + "type": "object" + }, + "_Audv6B": { + "description": "Model AUDv6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral auditory area, layer 6b", + "default": "Ventral auditory area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AUDv6b", + "default": "AUDv6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "598", + "default": "598", + "title": "Id", + "type": "string" + } + }, + "title": "_Audv6B", + "type": "object" + }, + "_Av": { + "description": "Model AV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteroventral nucleus of thalamus", + "default": "Anteroventral nucleus of thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AV", + "default": "AV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "255", + "default": "255", + "title": "Id", + "type": "string" + } + }, + "title": "_Av", + "type": "object" + }, + "_Avp": { + "description": "Model AVP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteroventral preoptic nucleus", + "default": "Anteroventral preoptic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AVP", + "default": "AVP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "263", + "default": "263", + "title": "Id", + "type": "string" + } + }, + "title": "_Avp", + "type": "object" + }, + "_Avpv": { + "description": "Model AVPV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anteroventral periventricular nucleus", + "default": "Anteroventral periventricular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "AVPV", + "default": "AVPV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "272", + "default": "272", + "title": "Id", + "type": "string" + } + }, + "title": "_Avpv", + "type": "object" + }, + "_B": { + "description": "Model B", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Barrington's nucleus", + "default": "Barrington's nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "B", + "default": "B", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "280", + "default": "280", + "title": "Id", + "type": "string" + } + }, + "title": "_B", + "type": "object" + }, + "_Ba": { + "description": "Model BA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Bed nucleus of the accessory olfactory tract", + "default": "Bed nucleus of the accessory olfactory tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BA", + "default": "BA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "292", + "default": "292", + "title": "Id", + "type": "string" + } + }, + "title": "_Ba", + "type": "object" + }, + "_Bac": { + "description": "Model BAC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Bed nucleus of the anterior commissure", + "default": "Bed nucleus of the anterior commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BAC", + "default": "BAC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "287", + "default": "287", + "title": "Id", + "type": "string" + } + }, + "title": "_Bac", + "type": "object" + }, + "_Basler": { + "description": "Model Basler", + "properties": { + "name": { + "const": "Basler", + "default": "Basler", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Basler", + "type": "object" + }, + "_Behavior": { + "additionalProperties": false, + "description": "Model behavior", + "properties": { + "name": { + "const": "Behavior", + "default": "Behavior", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "behavior", + "default": "behavior", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Behavior", + "type": "object" + }, + "_Behavior_Videos": { + "additionalProperties": false, + "description": "Model behavior-videos", + "properties": { + "name": { + "const": "Behavior videos", + "default": "Behavior videos", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "behavior-videos", + "default": "behavior-videos", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Behavior_Videos", + "type": "object" + }, + "_Bic": { + "description": "Model bic", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "brachium of the inferior colliculus", + "default": "brachium of the inferior colliculus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "bic", + "default": "bic", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "482", + "default": "482", + "title": "Id", + "type": "string" + } + }, + "title": "_Bic", + "type": "object" + }, + "_Bla": { + "description": "Model BLA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basolateral amygdalar nucleus", + "default": "Basolateral amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BLA", + "default": "BLA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "295", + "default": "295", + "title": "Id", + "type": "string" + } + }, + "title": "_Bla", + "type": "object" + }, + "_Blaa": { + "description": "Model BLAa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basolateral amygdalar nucleus, anterior part", + "default": "Basolateral amygdalar nucleus, anterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BLAa", + "default": "BLAa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "303", + "default": "303", + "title": "Id", + "type": "string" + } + }, + "title": "_Blaa", + "type": "object" + }, + "_Blap": { + "description": "Model BLAp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basolateral amygdalar nucleus, posterior part", + "default": "Basolateral amygdalar nucleus, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BLAp", + "default": "BLAp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "311", + "default": "311", + "title": "Id", + "type": "string" + } + }, + "title": "_Blap", + "type": "object" + }, + "_Blav": { + "description": "Model BLAv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basolateral amygdalar nucleus, ventral part", + "default": "Basolateral amygdalar nucleus, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BLAv", + "default": "BLAv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "451", + "default": "451", + "title": "Id", + "type": "string" + } + }, + "title": "_Blav", + "type": "object" + }, + "_Bma": { + "description": "Model BMA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basomedial amygdalar nucleus", + "default": "Basomedial amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BMA", + "default": "BMA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "319", + "default": "319", + "title": "Id", + "type": "string" + } + }, + "title": "_Bma", + "type": "object" + }, + "_Bmaa": { + "description": "Model BMAa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basomedial amygdalar nucleus, anterior part", + "default": "Basomedial amygdalar nucleus, anterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BMAa", + "default": "BMAa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "327", + "default": "327", + "title": "Id", + "type": "string" + } + }, + "title": "_Bmaa", + "type": "object" + }, + "_Bmap": { + "description": "Model BMAp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basomedial amygdalar nucleus, posterior part", + "default": "Basomedial amygdalar nucleus, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BMAp", + "default": "BMAp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "334", + "default": "334", + "title": "Id", + "type": "string" + } + }, + "title": "_Bmap", + "type": "object" + }, + "_Bs": { + "description": "Model BS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Brain stem", + "default": "Brain stem", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BS", + "default": "BS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "343", + "default": "343", + "title": "Id", + "type": "string" + } + }, + "title": "_Bs", + "type": "object" + }, + "_Bsc": { + "description": "Model bsc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "brachium of the superior colliculus", + "default": "brachium of the superior colliculus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "bsc", + "default": "bsc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "916", + "default": "916", + "title": "Id", + "type": "string" + } + }, + "title": "_Bsc", + "type": "object" + }, + "_Bst": { + "description": "Model BST", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Bed nuclei of the stria terminalis", + "default": "Bed nuclei of the stria terminalis", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "BST", + "default": "BST", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "351", + "default": "351", + "title": "Id", + "type": "string" + } + }, + "title": "_Bst", + "type": "object" + }, + "_C": { + "description": "Model c", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "central canal, spinal cord/medulla", + "default": "central canal, spinal cord/medulla", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "c", + "default": "c", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "164", + "default": "164", + "title": "Id", + "type": "string" + } + }, + "title": "_C", + "type": "object" + }, + "_Ca": { + "description": "Model CA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ammon's horn", + "default": "Ammon's horn", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CA", + "default": "CA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "375", + "default": "375", + "title": "Id", + "type": "string" + } + }, + "title": "_Ca", + "type": "object" + }, + "_Ca1": { + "description": "Model CA1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Field CA1", + "default": "Field CA1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CA1", + "default": "CA1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "382", + "default": "382", + "title": "Id", + "type": "string" + } + }, + "title": "_Ca1", + "type": "object" + }, + "_Ca2": { + "description": "Model CA2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Field CA2", + "default": "Field CA2", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CA2", + "default": "CA2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "423", + "default": "423", + "title": "Id", + "type": "string" + } + }, + "title": "_Ca2", + "type": "object" + }, + "_Ca3": { + "description": "Model CA3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Field CA3", + "default": "Field CA3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CA3", + "default": "CA3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "463", + "default": "463", + "title": "Id", + "type": "string" + } + }, + "title": "_Ca3", + "type": "object" + }, + "_Cambridge_Technology": { + "description": "Model Cambridge Technology", + "properties": { + "name": { + "const": "Cambridge Technology", + "default": "Cambridge Technology", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Cambridge_Technology", + "type": "object" + }, + "_Carl_Zeiss": { + "description": "Model Carl Zeiss", + "properties": { + "name": { + "const": "Carl Zeiss", + "default": "Carl Zeiss", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "01xk5xs43", + "default": "01xk5xs43", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Carl_Zeiss", + "type": "object" + }, + "_Cb": { + "description": "Model CB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebellum", + "default": "Cerebellum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CB", + "default": "CB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "512", + "default": "512", + "title": "Id", + "type": "string" + } + }, + "title": "_Cb", + "type": "object" + }, + "_Cbc": { + "description": "Model cbc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebellar commissure", + "default": "cerebellar commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cbc", + "default": "cbc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "744", + "default": "744", + "title": "Id", + "type": "string" + } + }, + "title": "_Cbc", + "type": "object" + }, + "_Cbf": { + "description": "Model cbf", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebellum related fiber tracts", + "default": "cerebellum related fiber tracts", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cbf", + "default": "cbf", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "960", + "default": "960", + "title": "Id", + "type": "string" + } + }, + "title": "_Cbf", + "type": "object" + }, + "_Cbn": { + "description": "Model CBN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebellar nuclei", + "default": "Cerebellar nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CBN", + "default": "CBN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "519", + "default": "519", + "title": "Id", + "type": "string" + } + }, + "title": "_Cbn", + "type": "object" + }, + "_Cbp": { + "description": "Model cbp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebellar peduncles", + "default": "cerebellar peduncles", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cbp", + "default": "cbp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "752", + "default": "752", + "title": "Id", + "type": "string" + } + }, + "title": "_Cbp", + "type": "object" + }, + "_Cbx": { + "description": "Model CBX", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebellar cortex", + "default": "Cerebellar cortex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CBX", + "default": "CBX", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "528", + "default": "528", + "title": "Id", + "type": "string" + } + }, + "title": "_Cbx", + "type": "object" + }, + "_Cc": { + "description": "Model cc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum", + "default": "corpus callosum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cc", + "default": "cc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "776", + "default": "776", + "title": "Id", + "type": "string" + } + }, + "title": "_Cc", + "type": "object" + }, + "_Ccb": { + "description": "Model ccb", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum, body", + "default": "corpus callosum, body", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ccb", + "default": "ccb", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682516", + "default": "484682516", + "title": "Id", + "type": "string" + } + }, + "title": "_Ccb", + "type": "object" + }, + "_Ccg": { + "description": "Model ccg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "genu of corpus callosum", + "default": "genu of corpus callosum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ccg", + "default": "ccg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1108", + "default": "1108", + "title": "Id", + "type": "string" + } + }, + "title": "_Ccg", + "type": "object" + }, + "_Ccs": { + "description": "Model ccs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum, splenium", + "default": "corpus callosum, splenium", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ccs", + "default": "ccs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "986", + "default": "986", + "title": "Id", + "type": "string" + } + }, + "title": "_Ccs", + "type": "object" + }, + "_Cea": { + "description": "Model CEA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central amygdalar nucleus", + "default": "Central amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CEA", + "default": "CEA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "536", + "default": "536", + "title": "Id", + "type": "string" + } + }, + "title": "_Cea", + "type": "object" + }, + "_Ceac": { + "description": "Model CEAc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central amygdalar nucleus, capsular part", + "default": "Central amygdalar nucleus, capsular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CEAc", + "default": "CEAc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "544", + "default": "544", + "title": "Id", + "type": "string" + } + }, + "title": "_Ceac", + "type": "object" + }, + "_Ceal": { + "description": "Model CEAl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central amygdalar nucleus, lateral part", + "default": "Central amygdalar nucleus, lateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CEAl", + "default": "CEAl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "551", + "default": "551", + "title": "Id", + "type": "string" + } + }, + "title": "_Ceal", + "type": "object" + }, + "_Ceam": { + "description": "Model CEAm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central amygdalar nucleus, medial part", + "default": "Central amygdalar nucleus, medial part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CEAm", + "default": "CEAm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "559", + "default": "559", + "title": "Id", + "type": "string" + } + }, + "title": "_Ceam", + "type": "object" + }, + "_Cent": { + "description": "Model CENT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central lobule", + "default": "Central lobule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CENT", + "default": "CENT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "920", + "default": "920", + "title": "Id", + "type": "string" + } + }, + "title": "_Cent", + "type": "object" + }, + "_Cent2": { + "description": "Model CENT2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lobule II", + "default": "Lobule II", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CENT2", + "default": "CENT2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "976", + "default": "976", + "title": "Id", + "type": "string" + } + }, + "title": "_Cent2", + "type": "object" + }, + "_Cent3": { + "description": "Model CENT3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lobule III", + "default": "Lobule III", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CENT3", + "default": "CENT3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "984", + "default": "984", + "title": "Id", + "type": "string" + } + }, + "title": "_Cent3", + "type": "object" + }, + "_Cett": { + "description": "Model cett", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cervicothalamic tract", + "default": "cervicothalamic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cett", + "default": "cett", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "932", + "default": "932", + "title": "Id", + "type": "string" + } + }, + "title": "_Cett", + "type": "object" + }, + "_Ch": { + "description": "Model CH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebrum", + "default": "Cerebrum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CH", + "default": "CH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "567", + "default": "567", + "title": "Id", + "type": "string" + } + }, + "title": "_Ch", + "type": "object" + }, + "_Champalimaud_Foundation": { + "description": "Model Champalimaud Foundation", + "properties": { + "name": { + "const": "Champalimaud Foundation", + "default": "Champalimaud Foundation", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Champalimaud", + "default": "Champalimaud", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03g001n57", + "default": "03g001n57", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Champalimaud_Foundation", + "type": "object" + }, + "_Chan_Zuckerberg_Initiative": { + "description": "Model Chan Zuckerberg Initiative", + "properties": { + "name": { + "const": "Chan Zuckerberg Initiative", + "default": "Chan Zuckerberg Initiative", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "CZI", + "default": "CZI", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02qenvm24", + "default": "02qenvm24", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Chan_Zuckerberg_Initiative", + "type": "object" + }, + "_Charles_River_Laboratories": { + "description": "Model Charles River Laboratories", + "properties": { + "name": { + "const": "Charles River Laboratories", + "default": "Charles River Laboratories", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "CRL", + "default": "CRL", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03ndmsg87", + "default": "03ndmsg87", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Charles_River_Laboratories", + "type": "object" + }, + "_Chpl": { + "description": "Model chpl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "choroid plexus", + "default": "choroid plexus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "chpl", + "default": "chpl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "108", + "default": "108", + "title": "Id", + "type": "string" + } + }, + "title": "_Chpl", + "type": "object" + }, + "_Chroma": { + "description": "Model Chroma", + "properties": { + "name": { + "const": "Chroma", + "default": "Chroma", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Chroma", + "type": "object" + }, + "_Cic": { + "description": "Model cic", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "inferior colliculus commissure", + "default": "inferior colliculus commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cic", + "default": "cic", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "633", + "default": "633", + "title": "Id", + "type": "string" + } + }, + "title": "_Cic", + "type": "object" + }, + "_Cing": { + "description": "Model cing", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cingulum bundle", + "default": "cingulum bundle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cing", + "default": "cing", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "940", + "default": "940", + "title": "Id", + "type": "string" + } + }, + "title": "_Cing", + "type": "object" + }, + "_Cl": { + "description": "Model CL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central lateral nucleus of the thalamus", + "default": "Central lateral nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CL", + "default": "CL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "575", + "default": "575", + "title": "Id", + "type": "string" + } + }, + "title": "_Cl", + "type": "object" + }, + "_Cla": { + "description": "Model CLA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Claustrum", + "default": "Claustrum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CLA", + "default": "CLA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "583", + "default": "583", + "title": "Id", + "type": "string" + } + }, + "title": "_Cla", + "type": "object" + }, + "_Cli": { + "description": "Model CLI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central linear nucleus raphe", + "default": "Central linear nucleus raphe", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CLI", + "default": "CLI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "591", + "default": "591", + "title": "Id", + "type": "string" + } + }, + "title": "_Cli", + "type": "object" + }, + "_Cm": { + "description": "Model CM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Central medial nucleus of the thalamus", + "default": "Central medial nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CM", + "default": "CM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "599", + "default": "599", + "title": "Id", + "type": "string" + } + }, + "title": "_Cm", + "type": "object" + }, + "_Cn": { + "description": "Model CN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cochlear nuclei", + "default": "Cochlear nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CN", + "default": "CN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607", + "default": "607", + "title": "Id", + "type": "string" + } + }, + "title": "_Cn", + "type": "object" + }, + "_Cne": { + "description": "Model cne", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cranial nerves", + "default": "cranial nerves", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cne", + "default": "cne", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "967", + "default": "967", + "title": "Id", + "type": "string" + } + }, + "title": "_Cne", + "type": "object" + }, + "_Cnu": { + "description": "Model CNU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebral nuclei", + "default": "Cerebral nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CNU", + "default": "CNU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "623", + "default": "623", + "title": "Id", + "type": "string" + } + }, + "title": "_Cnu", + "type": "object" + }, + "_Coa": { + "description": "Model COA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical amygdalar area", + "default": "Cortical amygdalar area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COA", + "default": "COA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "631", + "default": "631", + "title": "Id", + "type": "string" + } + }, + "title": "_Coa", + "type": "object" + }, + "_Coaa": { + "description": "Model COAa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical amygdalar area, anterior part", + "default": "Cortical amygdalar area, anterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COAa", + "default": "COAa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "639", + "default": "639", + "title": "Id", + "type": "string" + } + }, + "title": "_Coaa", + "type": "object" + }, + "_Coap": { + "description": "Model COAp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical amygdalar area, posterior part", + "default": "Cortical amygdalar area, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COAp", + "default": "COAp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "647", + "default": "647", + "title": "Id", + "type": "string" + } + }, + "title": "_Coap", + "type": "object" + }, + "_Coapl": { + "description": "Model COApl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical amygdalar area, posterior part, lateral zone", + "default": "Cortical amygdalar area, posterior part, lateral zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COApl", + "default": "COApl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "655", + "default": "655", + "title": "Id", + "type": "string" + } + }, + "title": "_Coapl", + "type": "object" + }, + "_Coapm": { + "description": "Model COApm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical amygdalar area, posterior part, medial zone", + "default": "Cortical amygdalar area, posterior part, medial zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COApm", + "default": "COApm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "663", + "default": "663", + "title": "Id", + "type": "string" + } + }, + "title": "_Coapm", + "type": "object" + }, + "_Coherent_Scientific": { + "description": "Model Coherent Scientific", + "properties": { + "name": { + "const": "Coherent Scientific", + "default": "Coherent Scientific", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "031tysd23", + "default": "031tysd23", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Coherent_Scientific", + "type": "object" + }, + "_Columbia_University": { + "description": "Model Columbia University", + "properties": { + "name": { + "const": "Columbia University", + "default": "Columbia University", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Columbia", + "default": "Columbia", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00hj8s172", + "default": "00hj8s172", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Columbia_University", + "type": "object" + }, + "_Computar": { + "description": "Model Computar", + "properties": { + "name": { + "const": "Computar", + "default": "Computar", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Computar", + "type": "object" + }, + "_Confocal": { + "additionalProperties": false, + "description": "Model confocal", + "properties": { + "name": { + "const": "Confocal microscopy", + "default": "Confocal microscopy", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "confocal", + "default": "confocal", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Confocal", + "type": "object" + }, + "_Conoptics": { + "description": "Model Conoptics", + "properties": { + "name": { + "const": "Conoptics", + "default": "Conoptics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Conoptics", + "type": "object" + }, + "_Copy": { + "description": "Model COPY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Copula pyramidis", + "default": "Copula pyramidis", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "COPY", + "default": "COPY", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1033", + "default": "1033", + "title": "Id", + "type": "string" + } + }, + "title": "_Copy", + "type": "object" + }, + "_Cp": { + "description": "Model CP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Caudoputamen", + "default": "Caudoputamen", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CP", + "default": "CP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "672", + "default": "672", + "title": "Id", + "type": "string" + } + }, + "title": "_Cp", + "type": "object" + }, + "_Cpd": { + "description": "Model cpd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebal peduncle", + "default": "cerebal peduncle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cpd", + "default": "cpd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "924", + "default": "924", + "title": "Id", + "type": "string" + } + }, + "title": "_Cpd", + "type": "object" + }, + "_Cs": { + "description": "Model CS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior central nucleus raphe", + "default": "Superior central nucleus raphe", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CS", + "default": "CS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "679", + "default": "679", + "title": "Id", + "type": "string" + } + }, + "title": "_Cs", + "type": "object" + }, + "_Csc": { + "description": "Model csc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "superior colliculus commissure", + "default": "superior colliculus commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "csc", + "default": "csc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "336", + "default": "336", + "title": "Id", + "type": "string" + } + }, + "title": "_Csc", + "type": "object" + }, + "_Cst": { + "description": "Model cst", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corticospinal tract", + "default": "corticospinal tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cst", + "default": "cst", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "784", + "default": "784", + "title": "Id", + "type": "string" + } + }, + "title": "_Cst", + "type": "object" + }, + "_Ctx": { + "description": "Model CTX", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cerebral cortex", + "default": "Cerebral cortex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CTX", + "default": "CTX", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "688", + "default": "688", + "title": "Id", + "type": "string" + } + }, + "title": "_Ctx", + "type": "object" + }, + "_Ctxpl": { + "description": "Model CTXpl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical plate", + "default": "Cortical plate", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CTXpl", + "default": "CTXpl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "695", + "default": "695", + "title": "Id", + "type": "string" + } + }, + "title": "_Ctxpl", + "type": "object" + }, + "_Ctxsp": { + "description": "Model CTXsp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cortical subplate", + "default": "Cortical subplate", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CTXsp", + "default": "CTXsp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "703", + "default": "703", + "title": "Id", + "type": "string" + } + }, + "title": "_Ctxsp", + "type": "object" + }, + "_Cu": { + "description": "Model CU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cuneate nucleus", + "default": "Cuneate nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CU", + "default": "CU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "711", + "default": "711", + "title": "Id", + "type": "string" + } + }, + "title": "_Cu", + "type": "object" + }, + "_Cuf": { + "description": "Model cuf", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cuneate fascicle", + "default": "cuneate fascicle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cuf", + "default": "cuf", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "380", + "default": "380", + "title": "Id", + "type": "string" + } + }, + "title": "_Cuf", + "type": "object" + }, + "_Cul": { + "description": "Model CUL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Culmen", + "default": "Culmen", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CUL", + "default": "CUL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "928", + "default": "928", + "title": "Id", + "type": "string" + } + }, + "title": "_Cul", + "type": "object" + }, + "_Cul4_5": { + "description": "Model CUL4, 5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lobules IV-V", + "default": "Lobules IV-V", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CUL4, 5", + "default": "CUL4, 5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1091", + "default": "1091", + "title": "Id", + "type": "string" + } + }, + "title": "_Cul4_5", + "type": "object" + }, + "_Cun": { + "description": "Model CUN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Cuneiform nucleus", + "default": "Cuneiform nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "CUN", + "default": "CUN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "616", + "default": "616", + "title": "Id", + "type": "string" + } + }, + "title": "_Cun", + "type": "object" + }, + "_Custom": { + "description": "Model Custom", + "properties": { + "name": { + "const": "Custom", + "default": "Custom", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Custom", + "type": "object" + }, + "_Cviiin": { + "description": "Model cVIIIn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cochlear nerve", + "default": "cochlear nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "cVIIIn", + "default": "cVIIIn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "948", + "default": "948", + "title": "Id", + "type": "string" + } + }, + "title": "_Cviiin", + "type": "object" + }, + "_Das": { + "description": "Model das", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal acoustic stria", + "default": "dorsal acoustic stria", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "das", + "default": "das", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "506", + "default": "506", + "title": "Id", + "type": "string" + } + }, + "title": "_Das", + "type": "object" + }, + "_Dc": { + "description": "Model dc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal column", + "default": "dorsal column", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "dc", + "default": "dc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "514", + "default": "514", + "title": "Id", + "type": "string" + } + }, + "title": "_Dc", + "type": "object" + }, + "_Dcn": { + "description": "Model DCN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal column nuclei", + "default": "Dorsal column nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DCN", + "default": "DCN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "720", + "default": "720", + "title": "Id", + "type": "string" + } + }, + "title": "_Dcn", + "type": "object" + }, + "_Dco": { + "description": "Model DCO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal cochlear nucleus", + "default": "Dorsal cochlear nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DCO", + "default": "DCO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "96", + "default": "96", + "title": "Id", + "type": "string" + } + }, + "title": "_Dco", + "type": "object" + }, + "_Dec": { + "description": "Model DEC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Declive (VI)", + "default": "Declive (VI)", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DEC", + "default": "DEC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "936", + "default": "936", + "title": "Id", + "type": "string" + } + }, + "title": "_Dec", + "type": "object" + }, + "_Df": { + "description": "Model df", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal fornix", + "default": "dorsal fornix", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "df", + "default": "df", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "530", + "default": "530", + "title": "Id", + "type": "string" + } + }, + "title": "_Df", + "type": "object" + }, + "_Dg": { + "description": "Model DG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dentate gyrus", + "default": "Dentate gyrus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DG", + "default": "DG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "726", + "default": "726", + "title": "Id", + "type": "string" + } + }, + "title": "_Dg", + "type": "object" + }, + "_Dg_Mo": { + "description": "Model DG-mo", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dentate gyrus, molecular layer", + "default": "Dentate gyrus, molecular layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DG-mo", + "default": "DG-mo", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "10703", + "default": "10703", + "title": "Id", + "type": "string" + } + }, + "title": "_Dg_Mo", + "type": "object" + }, + "_Dg_Po": { + "description": "Model DG-po", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dentate gyrus, polymorph layer", + "default": "Dentate gyrus, polymorph layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DG-po", + "default": "DG-po", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "10704", + "default": "10704", + "title": "Id", + "type": "string" + } + }, + "title": "_Dg_Po", + "type": "object" + }, + "_Dg_Sg": { + "description": "Model DG-sg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dentate gyrus, granule cell layer", + "default": "Dentate gyrus, granule cell layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DG-sg", + "default": "DG-sg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "632", + "default": "632", + "title": "Id", + "type": "string" + } + }, + "title": "_Dg_Sg", + "type": "object" + }, + "_Dhc": { + "description": "Model dhc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal hippocampal commissure", + "default": "dorsal hippocampal commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "dhc", + "default": "dhc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "443", + "default": "443", + "title": "Id", + "type": "string" + } + }, + "title": "_Dhc", + "type": "object" + }, + "_Digikey": { + "description": "Model DigiKey", + "properties": { + "name": { + "const": "DigiKey", + "default": "DigiKey", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Digikey", + "type": "object" + }, + "_Dmh": { + "description": "Model DMH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsomedial nucleus of the hypothalamus", + "default": "Dorsomedial nucleus of the hypothalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DMH", + "default": "DMH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "830", + "default": "830", + "title": "Id", + "type": "string" + } + }, + "title": "_Dmh", + "type": "object" + }, + "_Dmx": { + "description": "Model DMX", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal motor nucleus of the vagus nerve", + "default": "Dorsal motor nucleus of the vagus nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DMX", + "default": "DMX", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "839", + "default": "839", + "title": "Id", + "type": "string" + } + }, + "title": "_Dmx", + "type": "object" + }, + "_Dn": { + "description": "Model DN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dentate nucleus", + "default": "Dentate nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DN", + "default": "DN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "846", + "default": "846", + "title": "Id", + "type": "string" + } + }, + "title": "_Dn", + "type": "object" + }, + "_Dodotronic": { + "description": "Model Dodotronic", + "properties": { + "name": { + "const": "Dodotronic", + "default": "Dodotronic", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Dodotronic", + "type": "object" + }, + "_Doric": { + "description": "Model Doric", + "properties": { + "name": { + "const": "Doric", + "default": "Doric", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "059n53q30", + "default": "059n53q30", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Doric", + "type": "object" + }, + "_Dorpm": { + "description": "Model DORpm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Thalamus, polymodal association cortex related", + "default": "Thalamus, polymodal association cortex related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DORpm", + "default": "DORpm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "856", + "default": "856", + "title": "Id", + "type": "string" + } + }, + "title": "_Dorpm", + "type": "object" + }, + "_Dorsm": { + "description": "Model DORsm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Thalamus, sensory-motor cortex related", + "default": "Thalamus, sensory-motor cortex related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DORsm", + "default": "DORsm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "864", + "default": "864", + "title": "Id", + "type": "string" + } + }, + "title": "_Dorsm", + "type": "object" + }, + "_Dp": { + "description": "Model DP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal peduncular area", + "default": "Dorsal peduncular area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DP", + "default": "DP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "814", + "default": "814", + "title": "Id", + "type": "string" + } + }, + "title": "_Dp", + "type": "object" + }, + "_Dr": { + "description": "Model DR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal nucleus raphe", + "default": "Dorsal nucleus raphe", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DR", + "default": "DR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "872", + "default": "872", + "title": "Id", + "type": "string" + } + }, + "title": "_Dr", + "type": "object" + }, + "_Drt": { + "description": "Model drt", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal roots", + "default": "dorsal roots", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "drt", + "default": "drt", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "792", + "default": "792", + "title": "Id", + "type": "string" + } + }, + "title": "_Drt", + "type": "object" + }, + "_Dscp": { + "description": "Model dscp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "superior cerebellar peduncle decussation", + "default": "superior cerebellar peduncle decussation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "dscp", + "default": "dscp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "812", + "default": "812", + "title": "Id", + "type": "string" + } + }, + "title": "_Dscp", + "type": "object" + }, + "_Dt": { + "description": "Model DT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal terminal nucleus of the accessory optic tract", + "default": "Dorsal terminal nucleus of the accessory optic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DT", + "default": "DT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "75", + "default": "75", + "title": "Id", + "type": "string" + } + }, + "title": "_Dt", + "type": "object" + }, + "_Dtd": { + "description": "Model dtd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "doral tegmental decussation", + "default": "doral tegmental decussation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "dtd", + "default": "dtd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1060", + "default": "1060", + "title": "Id", + "type": "string" + } + }, + "title": "_Dtd", + "type": "object" + }, + "_Dtn": { + "description": "Model DTN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal tegmental nucleus", + "default": "Dorsal tegmental nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "DTN", + "default": "DTN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "880", + "default": "880", + "title": "Id", + "type": "string" + } + }, + "title": "_Dtn", + "type": "object" + }, + "_Ealing": { + "description": "Model Ealing", + "properties": { + "name": { + "const": "Ealing", + "default": "Ealing", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Ealing", + "type": "object" + }, + "_Ec": { + "description": "Model ec", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "external capsule", + "default": "external capsule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ec", + "default": "ec", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "579", + "default": "579", + "title": "Id", + "type": "string" + } + }, + "title": "_Ec", + "type": "object" + }, + "_Ecephys": { + "additionalProperties": false, + "description": "Model ecephys", + "properties": { + "name": { + "const": "Extracellular electrophysiology", + "default": "Extracellular electrophysiology", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "ecephys", + "default": "ecephys", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Ecephys", + "type": "object" + }, + "_Ect": { + "description": "Model ECT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area", + "default": "Ectorhinal area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT", + "default": "ECT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "895", + "default": "895", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect", + "type": "object" + }, + "_Ect1": { + "description": "Model ECT1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area/Layer 1", + "default": "Ectorhinal area/Layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT1", + "default": "ECT1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "836", + "default": "836", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect1", + "type": "object" + }, + "_Ect2_3": { + "description": "Model ECT2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area/Layer 2/3", + "default": "Ectorhinal area/Layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT2/3", + "default": "ECT2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "427", + "default": "427", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect2_3", + "type": "object" + }, + "_Ect5": { + "description": "Model ECT5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area/Layer 5", + "default": "Ectorhinal area/Layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT5", + "default": "ECT5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "988", + "default": "988", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect5", + "type": "object" + }, + "_Ect6A": { + "description": "Model ECT6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area/Layer 6a", + "default": "Ectorhinal area/Layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT6a", + "default": "ECT6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "977", + "default": "977", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect6A", + "type": "object" + }, + "_Ect6B": { + "description": "Model ECT6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ectorhinal area/Layer 6b", + "default": "Ectorhinal area/Layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECT6b", + "default": "ECT6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1045", + "default": "1045", + "title": "Id", + "type": "string" + } + }, + "title": "_Ect6B", + "type": "object" + }, + "_Ecu": { + "description": "Model ECU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "External cuneate nucleus", + "default": "External cuneate nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ECU", + "default": "ECU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "903", + "default": "903", + "title": "Id", + "type": "string" + } + }, + "title": "_Ecu", + "type": "object" + }, + "_Edmund_Optics": { + "description": "Model Edmund Optics", + "properties": { + "name": { + "const": "Edmund Optics", + "default": "Edmund Optics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "01j1gwp17", + "default": "01j1gwp17", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Edmund_Optics", + "type": "object" + }, + "_Ee": { + "description": "Model ee", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum, extreme capsule", + "default": "corpus callosum, extreme capsule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ee", + "default": "ee", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "964", + "default": "964", + "title": "Id", + "type": "string" + } + }, + "title": "_Ee", + "type": "object" + }, + "_Em": { + "description": "Model em", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "external medullary lamina of the thalamus", + "default": "external medullary lamina of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "em", + "default": "em", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1092", + "default": "1092", + "title": "Id", + "type": "string" + } + }, + "title": "_Em", + "type": "object" + }, + "_Emapa": { + "additionalProperties": false, + "description": "Model EMAPA", + "properties": { + "name": { + "const": "Edinburgh Mouse Atlas Project", + "default": "Edinburgh Mouse Atlas Project", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "EMAPA", + "default": "EMAPA", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Emapa", + "type": "object" + }, + "_Emg": { + "additionalProperties": false, + "description": "Model EMG", + "properties": { + "name": { + "const": "Electromyography", + "default": "Electromyography", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "EMG", + "default": "EMG", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Emg", + "type": "object" + }, + "_Emory_University": { + "description": "Model Emory University", + "properties": { + "name": { + "const": "Emory University", + "default": "Emory University", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Emory", + "default": "Emory", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03czfpz43", + "default": "03czfpz43", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Emory_University", + "type": "object" + }, + "_Ent": { + "description": "Model ENT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area", + "default": "Entorhinal area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENT", + "default": "ENT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "909", + "default": "909", + "title": "Id", + "type": "string" + } + }, + "title": "_Ent", + "type": "object" + }, + "_Entl": { + "description": "Model ENTl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part", + "default": "Entorhinal area, lateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl", + "default": "ENTl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "918", + "default": "918", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl", + "type": "object" + }, + "_Entl1": { + "description": "Model ENTl1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part, layer 1", + "default": "Entorhinal area, lateral part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl1", + "default": "ENTl1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1121", + "default": "1121", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl1", + "type": "object" + }, + "_Entl2": { + "description": "Model ENTl2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part, layer 2", + "default": "Entorhinal area, lateral part, layer 2", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl2", + "default": "ENTl2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "20", + "default": "20", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl2", + "type": "object" + }, + "_Entl3": { + "description": "Model ENTl3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part, layer 3", + "default": "Entorhinal area, lateral part, layer 3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl3", + "default": "ENTl3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "52", + "default": "52", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl3", + "type": "object" + }, + "_Entl5": { + "description": "Model ENTl5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part, layer 5", + "default": "Entorhinal area, lateral part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl5", + "default": "ENTl5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "139", + "default": "139", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl5", + "type": "object" + }, + "_Entl6A": { + "description": "Model ENTl6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, lateral part, layer 6a", + "default": "Entorhinal area, lateral part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTl6a", + "default": "ENTl6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "28", + "default": "28", + "title": "Id", + "type": "string" + } + }, + "title": "_Entl6A", + "type": "object" + }, + "_Entm": { + "description": "Model ENTm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone", + "default": "Entorhinal area, medial part, dorsal zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm", + "default": "ENTm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "926", + "default": "926", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm", + "type": "object" + }, + "_Entm1": { + "description": "Model ENTm1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone, layer 1", + "default": "Entorhinal area, medial part, dorsal zone, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm1", + "default": "ENTm1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "526", + "default": "526", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm1", + "type": "object" + }, + "_Entm2": { + "description": "Model ENTm2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone, layer 2", + "default": "Entorhinal area, medial part, dorsal zone, layer 2", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm2", + "default": "ENTm2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "543", + "default": "543", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm2", + "type": "object" + }, + "_Entm3": { + "description": "Model ENTm3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone, layer 3", + "default": "Entorhinal area, medial part, dorsal zone, layer 3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm3", + "default": "ENTm3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "664", + "default": "664", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm3", + "type": "object" + }, + "_Entm5": { + "description": "Model ENTm5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone, layer 5", + "default": "Entorhinal area, medial part, dorsal zone, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm5", + "default": "ENTm5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "727", + "default": "727", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm5", + "type": "object" + }, + "_Entm6": { + "description": "Model ENTm6", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Entorhinal area, medial part, dorsal zone, layer 6", + "default": "Entorhinal area, medial part, dorsal zone, layer 6", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ENTm6", + "default": "ENTm6", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "743", + "default": "743", + "title": "Id", + "type": "string" + } + }, + "title": "_Entm6", + "type": "object" + }, + "_Ep": { + "description": "Model EP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Endopiriform nucleus", + "default": "Endopiriform nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "EP", + "default": "EP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "942", + "default": "942", + "title": "Id", + "type": "string" + } + }, + "title": "_Ep", + "type": "object" + }, + "_Epd": { + "description": "Model EPd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Endopiriform nucleus, dorsal part", + "default": "Endopiriform nucleus, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "EPd", + "default": "EPd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "952", + "default": "952", + "title": "Id", + "type": "string" + } + }, + "title": "_Epd", + "type": "object" + }, + "_Epi": { + "description": "Model EPI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Epithalamus", + "default": "Epithalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "EPI", + "default": "EPI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "958", + "default": "958", + "title": "Id", + "type": "string" + } + }, + "title": "_Epi", + "type": "object" + }, + "_Eps": { + "description": "Model eps", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "extrapyramidal fiber systems", + "default": "extrapyramidal fiber systems", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "eps", + "default": "eps", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1000", + "default": "1000", + "title": "Id", + "type": "string" + } + }, + "title": "_Eps", + "type": "object" + }, + "_Epsc": { + "description": "Model epsc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebral nuclei related", + "default": "cerebral nuclei related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "epsc", + "default": "epsc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "760", + "default": "760", + "title": "Id", + "type": "string" + } + }, + "title": "_Epsc", + "type": "object" + }, + "_Epv": { + "description": "Model EPv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Endopiriform nucleus, ventral part", + "default": "Endopiriform nucleus, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "EPv", + "default": "EPv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "966", + "default": "966", + "title": "Id", + "type": "string" + } + }, + "title": "_Epv", + "type": "object" + }, + "_Eth": { + "description": "Model Eth", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ethmoid nucleus of the thalamus", + "default": "Ethmoid nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "Eth", + "default": "Eth", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "560581551", + "default": "560581551", + "title": "Id", + "type": "string" + } + }, + "title": "_Eth", + "type": "object" + }, + "_Euresys": { + "description": "Model Euresys", + "properties": { + "name": { + "const": "Euresys", + "default": "Euresys", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Euresys", + "type": "object" + }, + "_Ew": { + "description": "Model EW", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Edinger-Westphal nucleus", + "default": "Edinger-Westphal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "EW", + "default": "EW", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "975", + "default": "975", + "title": "Id", + "type": "string" + } + }, + "title": "_Ew", + "type": "object" + }, + "_Fa": { + "description": "Model fa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum, anterior forceps", + "default": "corpus callosum, anterior forceps", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fa", + "default": "fa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "956", + "default": "956", + "title": "Id", + "type": "string" + } + }, + "title": "_Fa", + "type": "object" + }, + "_Fc": { + "description": "Model FC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Fasciola cinerea", + "default": "Fasciola cinerea", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FC", + "default": "FC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "982", + "default": "982", + "title": "Id", + "type": "string" + } + }, + "title": "_Fc", + "type": "object" + }, + "_Ff": { + "description": "Model FF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Fields of Forel", + "default": "Fields of Forel", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FF", + "default": "FF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "804", + "default": "804", + "title": "Id", + "type": "string" + } + }, + "title": "_Ff", + "type": "object" + }, + "_Fi": { + "description": "Model fi", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "fimbria", + "default": "fimbria", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fi", + "default": "fi", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "603", + "default": "603", + "title": "Id", + "type": "string" + } + }, + "title": "_Fi", + "type": "object" + }, + "_Fib": { + "additionalProperties": false, + "description": "Model fib", + "properties": { + "name": { + "const": "Fiber photometry", + "default": "Fiber photometry", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "fib", + "default": "fib", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Fib", + "type": "object" + }, + "_Fiber_Tracts": { + "description": "Model fiber tracts", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "fiber tracts", + "default": "fiber tracts", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fiber tracts", + "default": "fiber tracts", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1009", + "default": "1009", + "title": "Id", + "type": "string" + } + }, + "title": "_Fiber_Tracts", + "type": "object" + }, + "_Fl": { + "description": "Model FL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Flocculus", + "default": "Flocculus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FL", + "default": "FL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1049", + "default": "1049", + "title": "Id", + "type": "string" + } + }, + "title": "_Fl", + "type": "object" + }, + "_Fmost": { + "additionalProperties": false, + "description": "Model fMOST", + "properties": { + "name": { + "const": "Fluorescence micro-optical sectioning tomography", + "default": "Fluorescence micro-optical sectioning tomography", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "fMOST", + "default": "fMOST", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Fmost", + "type": "object" + }, + "_Fn": { + "description": "Model FN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Fastigial nucleus", + "default": "Fastigial nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FN", + "default": "FN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "989", + "default": "989", + "title": "Id", + "type": "string" + } + }, + "title": "_Fn", + "type": "object" + }, + "_Fotu": { + "description": "Model FOTU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Folium-tuber vermis (VII)", + "default": "Folium-tuber vermis (VII)", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FOTU", + "default": "FOTU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "944", + "default": "944", + "title": "Id", + "type": "string" + } + }, + "title": "_Fotu", + "type": "object" + }, + "_Fp": { + "description": "Model fp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "corpus callosum, posterior forceps", + "default": "corpus callosum, posterior forceps", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fp", + "default": "fp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "971", + "default": "971", + "title": "Id", + "type": "string" + } + }, + "title": "_Fp", + "type": "object" + }, + "_Fr": { + "description": "Model fr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "fasciculus retroflexus", + "default": "fasciculus retroflexus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fr", + "default": "fr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "595", + "default": "595", + "title": "Id", + "type": "string" + } + }, + "title": "_Fr", + "type": "object" + }, + "_Frp": { + "description": "Model FRP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, cerebral cortex", + "default": "Frontal pole, cerebral cortex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP", + "default": "FRP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "184", + "default": "184", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp", + "type": "object" + }, + "_Frp1": { + "description": "Model FRP1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, layer 1", + "default": "Frontal pole, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP1", + "default": "FRP1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "68", + "default": "68", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp1", + "type": "object" + }, + "_Frp2_3": { + "description": "Model FRP2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, layer 2/3", + "default": "Frontal pole, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP2/3", + "default": "FRP2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "667", + "default": "667", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp2_3", + "type": "object" + }, + "_Frp5": { + "description": "Model FRP5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, layer 5", + "default": "Frontal pole, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP5", + "default": "FRP5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "526157192", + "default": "526157192", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp5", + "type": "object" + }, + "_Frp6A": { + "description": "Model FRP6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, layer 6a", + "default": "Frontal pole, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP6a", + "default": "FRP6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "526157196", + "default": "526157196", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp6A", + "type": "object" + }, + "_Frp6B": { + "description": "Model FRP6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Frontal pole, layer 6b", + "default": "Frontal pole, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FRP6b", + "default": "FRP6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "526322264", + "default": "526322264", + "title": "Id", + "type": "string" + } + }, + "title": "_Frp6B", + "type": "object" + }, + "_Fs": { + "description": "Model FS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Fundus of striatum", + "default": "Fundus of striatum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "FS", + "default": "FS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "998", + "default": "998", + "title": "Id", + "type": "string" + } + }, + "title": "_Fs", + "type": "object" + }, + "_Fujinon": { + "description": "Model Fujinon", + "properties": { + "name": { + "const": "Fujinon", + "default": "Fujinon", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Fujinon", + "type": "object" + }, + "_Fx": { + "description": "Model fx", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "columns of the fornix", + "default": "columns of the fornix", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fx", + "default": "fx", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "436", + "default": "436", + "title": "Id", + "type": "string" + } + }, + "title": "_Fx", + "type": "object" + }, + "_Fxpo": { + "description": "Model fxpo", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "postcommissural fornix", + "default": "postcommissural fornix", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fxpo", + "default": "fxpo", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "737", + "default": "737", + "title": "Id", + "type": "string" + } + }, + "title": "_Fxpo", + "type": "object" + }, + "_Fxs": { + "description": "Model fxs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "fornix system", + "default": "fornix system", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "fxs", + "default": "fxs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1099", + "default": "1099", + "title": "Id", + "type": "string" + } + }, + "title": "_Fxs", + "type": "object" + }, + "_Gend": { + "description": "Model GENd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Geniculate group, dorsal thalamus", + "default": "Geniculate group, dorsal thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GENd", + "default": "GENd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1008", + "default": "1008", + "title": "Id", + "type": "string" + } + }, + "title": "_Gend", + "type": "object" + }, + "_Genv": { + "description": "Model GENv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Geniculate group, ventral thalamus", + "default": "Geniculate group, ventral thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GENv", + "default": "GENv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1014", + "default": "1014", + "title": "Id", + "type": "string" + } + }, + "title": "_Genv", + "type": "object" + }, + "_Gpe": { + "description": "Model GPe", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Globus pallidus, external segment", + "default": "Globus pallidus, external segment", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GPe", + "default": "GPe", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1022", + "default": "1022", + "title": "Id", + "type": "string" + } + }, + "title": "_Gpe", + "type": "object" + }, + "_Gpi": { + "description": "Model GPi", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Globus pallidus, internal segment", + "default": "Globus pallidus, internal segment", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GPi", + "default": "GPi", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1031", + "default": "1031", + "title": "Id", + "type": "string" + } + }, + "title": "_Gpi", + "type": "object" + }, + "_Gr": { + "description": "Model GR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gracile nucleus", + "default": "Gracile nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GR", + "default": "GR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1039", + "default": "1039", + "title": "Id", + "type": "string" + } + }, + "title": "_Gr", + "type": "object" + }, + "_Grey": { + "description": "Model grey", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Basic cell groups and regions", + "default": "Basic cell groups and regions", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "grey", + "default": "grey", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "8", + "default": "8", + "title": "Id", + "type": "string" + } + }, + "title": "_Grey", + "type": "object" + }, + "_Grn": { + "description": "Model GRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gigantocellular reticular nucleus", + "default": "Gigantocellular reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GRN", + "default": "GRN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1048", + "default": "1048", + "title": "Id", + "type": "string" + } + }, + "title": "_Grn", + "type": "object" + }, + "_Gu": { + "description": "Model GU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas", + "default": "Gustatory areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU", + "default": "GU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1057", + "default": "1057", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu", + "type": "object" + }, + "_Gu1": { + "description": "Model GU1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 1", + "default": "Gustatory areas, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU1", + "default": "GU1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "36", + "default": "36", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu1", + "type": "object" + }, + "_Gu2_3": { + "description": "Model GU2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 2/3", + "default": "Gustatory areas, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU2/3", + "default": "GU2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "180", + "default": "180", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu2_3", + "type": "object" + }, + "_Gu4": { + "description": "Model GU4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 4", + "default": "Gustatory areas, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU4", + "default": "GU4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "148", + "default": "148", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu4", + "type": "object" + }, + "_Gu5": { + "description": "Model GU5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 5", + "default": "Gustatory areas, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU5", + "default": "GU5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "187", + "default": "187", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu5", + "type": "object" + }, + "_Gu6A": { + "description": "Model GU6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 6a", + "default": "Gustatory areas, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU6a", + "default": "GU6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "638", + "default": "638", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu6A", + "type": "object" + }, + "_Gu6B": { + "description": "Model GU6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Gustatory areas, layer 6b", + "default": "Gustatory areas, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "GU6b", + "default": "GU6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "662", + "default": "662", + "title": "Id", + "type": "string" + } + }, + "title": "_Gu6B", + "type": "object" + }, + "_Gviin": { + "description": "Model gVIIn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "genu of the facial nerve", + "default": "genu of the facial nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "gVIIn", + "default": "gVIIn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1116", + "default": "1116", + "title": "Id", + "type": "string" + } + }, + "title": "_Gviin", + "type": "object" + }, + "_Hamamatsu": { + "description": "Model Hamamatsu", + "properties": { + "name": { + "const": "Hamamatsu", + "default": "Hamamatsu", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03natb733", + "default": "03natb733", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Hamamatsu", + "type": "object" + }, + "_Hamilton": { + "description": "Model Hamilton", + "properties": { + "name": { + "const": "Hamilton", + "default": "Hamilton", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Hamilton", + "type": "object" + }, + "_Hata": { + "description": "Model HATA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hippocampo-amygdalar transition area", + "default": "Hippocampo-amygdalar transition area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HATA", + "default": "HATA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "589508447", + "default": "589508447", + "title": "Id", + "type": "string" + } + }, + "title": "_Hata", + "type": "object" + }, + "_Hb": { + "description": "Model HB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hindbrain", + "default": "Hindbrain", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HB", + "default": "HB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1065", + "default": "1065", + "title": "Id", + "type": "string" + } + }, + "title": "_Hb", + "type": "object" + }, + "_Hbc": { + "description": "Model hbc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "habenular commissure", + "default": "habenular commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "hbc", + "default": "hbc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "611", + "default": "611", + "title": "Id", + "type": "string" + } + }, + "title": "_Hbc", + "type": "object" + }, + "_Hc": { + "description": "Model hc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "hippocampal commissures", + "default": "hippocampal commissures", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "hc", + "default": "hc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "618", + "default": "618", + "title": "Id", + "type": "string" + } + }, + "title": "_Hc", + "type": "object" + }, + "_Hem": { + "description": "Model HEM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hemispheric regions", + "default": "Hemispheric regions", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HEM", + "default": "HEM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1073", + "default": "1073", + "title": "Id", + "type": "string" + } + }, + "title": "_Hem", + "type": "object" + }, + "_Hip": { + "description": "Model HIP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hippocampal region", + "default": "Hippocampal region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HIP", + "default": "HIP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1080", + "default": "1080", + "title": "Id", + "type": "string" + } + }, + "title": "_Hip", + "type": "object" + }, + "_Hpf": { + "description": "Model HPF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hippocampal formation", + "default": "Hippocampal formation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HPF", + "default": "HPF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1089", + "default": "1089", + "title": "Id", + "type": "string" + } + }, + "title": "_Hpf", + "type": "object" + }, + "_Huazhong_University_Of_Science_And_Technology": { + "description": "Model Huazhong University of Science and Technology", + "properties": { + "name": { + "const": "Huazhong University of Science and Technology", + "default": "Huazhong University of Science and Technology", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "HUST", + "default": "HUST", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00p991c53", + "default": "00p991c53", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Huazhong_University_Of_Science_And_Technology", + "type": "object" + }, + "_Hy": { + "description": "Model HY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hypothalamus", + "default": "Hypothalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "HY", + "default": "HY", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1097", + "default": "1097", + "title": "Id", + "type": "string" + } + }, + "title": "_Hy", + "type": "object" + }, + "_I5": { + "description": "Model I5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Intertrigeminal nucleus", + "default": "Intertrigeminal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "I5", + "default": "I5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "549009227", + "default": "549009227", + "title": "Id", + "type": "string" + } + }, + "title": "_I5", + "type": "object" + }, + "_Ia": { + "description": "Model IA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Intercalated amygdalar nucleus", + "default": "Intercalated amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IA", + "default": "IA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1105", + "default": "1105", + "title": "Id", + "type": "string" + } + }, + "title": "_Ia", + "type": "object" + }, + "_Iad": { + "description": "Model IAD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interanterodorsal nucleus of the thalamus", + "default": "Interanterodorsal nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IAD", + "default": "IAD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1113", + "default": "1113", + "title": "Id", + "type": "string" + } + }, + "title": "_Iad", + "type": "object" + }, + "_Iam": { + "description": "Model IAM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interanteromedial nucleus of the thalamus", + "default": "Interanteromedial nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IAM", + "default": "IAM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1120", + "default": "1120", + "title": "Id", + "type": "string" + } + }, + "title": "_Iam", + "type": "object" + }, + "_Ib": { + "description": "Model IB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interbrain", + "default": "Interbrain", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IB", + "default": "IB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1129", + "default": "1129", + "title": "Id", + "type": "string" + } + }, + "title": "_Ib", + "type": "object" + }, + "_Ic": { + "description": "Model IC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Inferior colliculus", + "default": "Inferior colliculus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IC", + "default": "IC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "4", + "default": "4", + "title": "Id", + "type": "string" + } + }, + "title": "_Ic", + "type": "object" + }, + "_Icb": { + "description": "Model ICB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Infracerebellar nucleus", + "default": "Infracerebellar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ICB", + "default": "ICB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "372", + "default": "372", + "title": "Id", + "type": "string" + } + }, + "title": "_Icb", + "type": "object" + }, + "_Icc": { + "description": "Model ICc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Inferior colliculus, central nucleus", + "default": "Inferior colliculus, central nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ICc", + "default": "ICc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "811", + "default": "811", + "title": "Id", + "type": "string" + } + }, + "title": "_Icc", + "type": "object" + }, + "_Icd": { + "description": "Model ICd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Inferior colliculus, dorsal nucleus", + "default": "Inferior colliculus, dorsal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ICd", + "default": "ICd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "820", + "default": "820", + "title": "Id", + "type": "string" + } + }, + "title": "_Icd", + "type": "object" + }, + "_Ice": { + "description": "Model ICe", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Inferior colliculus, external nucleus", + "default": "Inferior colliculus, external nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ICe", + "default": "ICe", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "828", + "default": "828", + "title": "Id", + "type": "string" + } + }, + "title": "_Ice", + "type": "object" + }, + "_Icephys": { + "additionalProperties": false, + "description": "Model icephys", + "properties": { + "name": { + "const": "Intracellular electrophysiology", + "default": "Intracellular electrophysiology", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "icephys", + "default": "icephys", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Icephys", + "type": "object" + }, + "_Icp": { + "description": "Model icp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "inferior cerebellar peduncle", + "default": "inferior cerebellar peduncle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "icp", + "default": "icp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1123", + "default": "1123", + "title": "Id", + "type": "string" + } + }, + "title": "_Icp", + "type": "object" + }, + "_If": { + "description": "Model IF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interfascicular nucleus raphe", + "default": "Interfascicular nucleus raphe", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IF", + "default": "IF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "12", + "default": "12", + "title": "Id", + "type": "string" + } + }, + "title": "_If", + "type": "object" + }, + "_Ig": { + "description": "Model IG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Induseum griseum", + "default": "Induseum griseum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IG", + "default": "IG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "19", + "default": "19", + "title": "Id", + "type": "string" + } + }, + "title": "_Ig", + "type": "object" + }, + "_Igl": { + "description": "Model IGL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Intergeniculate leaflet of the lateral geniculate complex", + "default": "Intergeniculate leaflet of the lateral geniculate complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IGL", + "default": "IGL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "27", + "default": "27", + "title": "Id", + "type": "string" + } + }, + "title": "_Igl", + "type": "object" + }, + "_Iii": { + "description": "Model III", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Oculomotor nucleus", + "default": "Oculomotor nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "III", + "default": "III", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "35", + "default": "35", + "title": "Id", + "type": "string" + } + }, + "title": "_Iii", + "type": "object" + }, + "_Iiin": { + "description": "Model IIIn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "oculomotor nerve", + "default": "oculomotor nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IIIn", + "default": "IIIn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "832", + "default": "832", + "title": "Id", + "type": "string" + } + }, + "title": "_Iiin", + "type": "object" + }, + "_Iin": { + "description": "Model IIn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "optic nerve", + "default": "optic nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IIn", + "default": "IIn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "848", + "default": "848", + "title": "Id", + "type": "string" + } + }, + "title": "_Iin", + "type": "object" + }, + "_Ila": { + "description": "Model ILA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Infralimbic area", + "default": "Infralimbic area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILA", + "default": "ILA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "44", + "default": "44", + "title": "Id", + "type": "string" + } + }, + "title": "_Ila", + "type": "object" + }, + "_Ila1": { + "description": "Model ILA1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Infralimbic area, layer 1", + "default": "Infralimbic area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILA1", + "default": "ILA1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "707", + "default": "707", + "title": "Id", + "type": "string" + } + }, + "title": "_Ila1", + "type": "object" + }, + "_Ila2_3": { + "description": "Model ILA2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Infralimbic area, layer 2/3", + "default": "Infralimbic area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILA2/3", + "default": "ILA2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "556", + "default": "556", + "title": "Id", + "type": "string" + } + }, + "title": "_Ila2_3", + "type": "object" + }, + "_Ila5": { + "description": "Model ILA5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Infralimbic area, layer 5", + "default": "Infralimbic area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILA5", + "default": "ILA5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "827", + "default": "827", + "title": "Id", + "type": "string" + } + }, + "title": "_Ila5", + "type": "object" + }, + "_Ila6A": { + "description": "Model ILA6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Infralimbic area, layer 6a", + "default": "Infralimbic area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILA6a", + "default": "ILA6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1054", + "default": "1054", + "title": "Id", + "type": "string" + } + }, + "title": "_Ila6A", + "type": "object" + }, + "_Ila6B": { + "description": "Model ILA6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Infralimbic area, layer 6b", + "default": "Infralimbic area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILA6b", + "default": "ILA6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1081", + "default": "1081", + "title": "Id", + "type": "string" + } + }, + "title": "_Ila6B", + "type": "object" + }, + "_Ilm": { + "description": "Model ILM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Intralaminar nuclei of the dorsal thalamus", + "default": "Intralaminar nuclei of the dorsal thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ILM", + "default": "ILM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "51", + "default": "51", + "title": "Id", + "type": "string" + } + }, + "title": "_Ilm", + "type": "object" + }, + "_Imd": { + "description": "Model IMD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Intermediodorsal nucleus of the thalamus", + "default": "Intermediodorsal nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IMD", + "default": "IMD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "59", + "default": "59", + "title": "Id", + "type": "string" + } + }, + "title": "_Imd", + "type": "object" + }, + "_In": { + "description": "Model In", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "olfactory nerve", + "default": "olfactory nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "In", + "default": "In", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "840", + "default": "840", + "title": "Id", + "type": "string" + } + }, + "title": "_In", + "type": "object" + }, + "_Inc": { + "description": "Model INC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interstitial nucleus of Cajal", + "default": "Interstitial nucleus of Cajal", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "INC", + "default": "INC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "67", + "default": "67", + "title": "Id", + "type": "string" + } + }, + "title": "_Inc", + "type": "object" + }, + "_Infinity_Photo_Optical": { + "description": "Model Infinity Photo-Optical", + "properties": { + "name": { + "const": "Infinity Photo-Optical", + "default": "Infinity Photo-Optical", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Infinity_Photo_Optical", + "type": "object" + }, + "_Int": { + "description": "Model int", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "internal capsule", + "default": "internal capsule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "int", + "default": "int", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "6", + "default": "6", + "title": "Id", + "type": "string" + } + }, + "title": "_Int", + "type": "object" + }, + "_Integrated_Dna_Technologies": { + "description": "Model Integrated DNA Technologies", + "properties": { + "name": { + "const": "Integrated DNA Technologies", + "default": "Integrated DNA Technologies", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "IDT", + "default": "IDT", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "009jvpf03", + "default": "009jvpf03", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Integrated_Dna_Technologies", + "type": "object" + }, + "_Interuniversity_Microelectronics_Center": { + "description": "Model Interuniversity Microelectronics Center", + "properties": { + "name": { + "const": "Interuniversity Microelectronics Center", + "default": "Interuniversity Microelectronics Center", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "IMEC", + "default": "IMEC", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02kcbn207", + "default": "02kcbn207", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Interuniversity_Microelectronics_Center", + "type": "object" + }, + "_Intg": { + "description": "Model IntG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Intermediate geniculate nucleus", + "default": "Intermediate geniculate nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IntG", + "default": "IntG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "563807439", + "default": "563807439", + "title": "Id", + "type": "string" + } + }, + "title": "_Intg", + "type": "object" + }, + "_Invitrogen": { + "description": "Model Invitrogen", + "properties": { + "name": { + "const": "Invitrogen", + "default": "Invitrogen", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03x1ewr52", + "default": "03x1ewr52", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Invitrogen", + "type": "object" + }, + "_Io": { + "description": "Model IO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Inferior olivary complex", + "default": "Inferior olivary complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IO", + "default": "IO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "83", + "default": "83", + "title": "Id", + "type": "string" + } + }, + "title": "_Io", + "type": "object" + }, + "_Ip": { + "description": "Model IP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interposed nucleus", + "default": "Interposed nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IP", + "default": "IP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "91", + "default": "91", + "title": "Id", + "type": "string" + } + }, + "title": "_Ip", + "type": "object" + }, + "_Ipa": { + "description": "Model IPA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, apical", + "default": "Interpeduncular nucleus, apical", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPA", + "default": "IPA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344842", + "default": "607344842", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipa", + "type": "object" + }, + "_Ipc": { + "description": "Model IPC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, caudal", + "default": "Interpeduncular nucleus, caudal", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPC", + "default": "IPC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344838", + "default": "607344838", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipc", + "type": "object" + }, + "_Ipdl": { + "description": "Model IPDL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, dorsolateral", + "default": "Interpeduncular nucleus, dorsolateral", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPDL", + "default": "IPDL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344858", + "default": "607344858", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipdl", + "type": "object" + }, + "_Ipdm": { + "description": "Model IPDM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, dorsomedial", + "default": "Interpeduncular nucleus, dorsomedial", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPDM", + "default": "IPDM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344854", + "default": "607344854", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipdm", + "type": "object" + }, + "_Ipi": { + "description": "Model IPI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, intermediate", + "default": "Interpeduncular nucleus, intermediate", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPI", + "default": "IPI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344850", + "default": "607344850", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipi", + "type": "object" + }, + "_Ipl": { + "description": "Model IPL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, lateral", + "default": "Interpeduncular nucleus, lateral", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPL", + "default": "IPL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344846", + "default": "607344846", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipl", + "type": "object" + }, + "_Ipn": { + "description": "Model IPN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus", + "default": "Interpeduncular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPN", + "default": "IPN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "100", + "default": "100", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipn", + "type": "object" + }, + "_Ipr": { + "description": "Model IPR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, rostral", + "default": "Interpeduncular nucleus, rostral", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPR", + "default": "IPR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344834", + "default": "607344834", + "title": "Id", + "type": "string" + } + }, + "title": "_Ipr", + "type": "object" + }, + "_Iprl": { + "description": "Model IPRL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Interpeduncular nucleus, rostrolateral", + "default": "Interpeduncular nucleus, rostrolateral", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IPRL", + "default": "IPRL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344862", + "default": "607344862", + "title": "Id", + "type": "string" + } + }, + "title": "_Iprl", + "type": "object" + }, + "_Ir_Robot_Co": { + "description": "Model IR Robot Co", + "properties": { + "name": { + "const": "IR Robot Co", + "default": "IR Robot Co", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Ir_Robot_Co", + "type": "object" + }, + "_Irn": { + "description": "Model IRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Intermediate reticular nucleus", + "default": "Intermediate reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IRN", + "default": "IRN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "136", + "default": "136", + "title": "Id", + "type": "string" + } + }, + "title": "_Irn", + "type": "object" + }, + "_Isi": { + "additionalProperties": false, + "description": "Model ISI", + "properties": { + "name": { + "const": "Intrinsic signal imaging", + "default": "Intrinsic signal imaging", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "ISI", + "default": "ISI", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Isi", + "type": "object" + }, + "_Isl_Products_International": { + "description": "Model ISL Products International", + "properties": { + "name": { + "const": "ISL Products International", + "default": "ISL Products International", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "ISL", + "default": "ISL", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Isl_Products_International", + "type": "object" + }, + "_Isn": { + "description": "Model ISN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Inferior salivatory nucleus", + "default": "Inferior salivatory nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ISN", + "default": "ISN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "106", + "default": "106", + "title": "Id", + "type": "string" + } + }, + "title": "_Isn", + "type": "object" + }, + "_Isocortex": { + "description": "Model Isocortex", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Isocortex", + "default": "Isocortex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "Isocortex", + "default": "Isocortex", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "315", + "default": "315", + "title": "Id", + "type": "string" + } + }, + "title": "_Isocortex", + "type": "object" + }, + "_Item": { + "description": "Model Item", + "properties": { + "name": { + "const": "Item", + "default": "Item", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Item", + "type": "object" + }, + "_Iv": { + "description": "Model IV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Trochlear nucleus", + "default": "Trochlear nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IV", + "default": "IV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "115", + "default": "115", + "title": "Id", + "type": "string" + } + }, + "title": "_Iv", + "type": "object" + }, + "_Ivn": { + "description": "Model IVn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "trochlear nerve", + "default": "trochlear nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "IVn", + "default": "IVn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "911", + "default": "911", + "title": "Id", + "type": "string" + } + }, + "title": "_Ivn", + "type": "object" + }, + "_Jackson_Laboratory": { + "description": "Model Jackson Laboratory", + "properties": { + "name": { + "const": "Jackson Laboratory", + "default": "Jackson Laboratory", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "JAX", + "default": "JAX", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "021sy4w91", + "default": "021sy4w91", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Jackson_Laboratory", + "type": "object" + }, + "_Janelia_Research_Campus": { + "description": "Model Janelia Research Campus", + "properties": { + "name": { + "const": "Janelia Research Campus", + "default": "Janelia Research Campus", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "Janelia", + "default": "Janelia", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "013sk6x84", + "default": "013sk6x84", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Janelia_Research_Campus", + "type": "object" + }, + "_Julabo": { + "description": "Model Julabo", + "properties": { + "name": { + "const": "Julabo", + "default": "Julabo", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Julabo", + "type": "object" + }, + "_Kf": { + "description": "Model KF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Koelliker-Fuse subnucleus", + "default": "Koelliker-Fuse subnucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "KF", + "default": "KF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "123", + "default": "123", + "title": "Id", + "type": "string" + } + }, + "title": "_Kf", + "type": "object" + }, + "_Kowa": { + "description": "Model Kowa", + "properties": { + "name": { + "const": "Kowa", + "default": "Kowa", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03zbwg482", + "default": "03zbwg482", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Kowa", + "type": "object" + }, + "_La": { + "description": "Model LA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral amygdalar nucleus", + "default": "Lateral amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LA", + "default": "LA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "131", + "default": "131", + "title": "Id", + "type": "string" + } + }, + "title": "_La", + "type": "object" + }, + "_Lat": { + "description": "Model LAT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral group of the dorsal thalamus", + "default": "Lateral group of the dorsal thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LAT", + "default": "LAT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "138", + "default": "138", + "title": "Id", + "type": "string" + } + }, + "title": "_Lat", + "type": "object" + }, + "_Lav": { + "description": "Model LAV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral vestibular nucleus", + "default": "Lateral vestibular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LAV", + "default": "LAV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "209", + "default": "209", + "title": "Id", + "type": "string" + } + }, + "title": "_Lav", + "type": "object" + }, + "_Lc": { + "description": "Model LC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Locus ceruleus", + "default": "Locus ceruleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LC", + "default": "LC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "147", + "default": "147", + "title": "Id", + "type": "string" + } + }, + "title": "_Lc", + "type": "object" + }, + "_Ld": { + "description": "Model LD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral dorsal nucleus of thalamus", + "default": "Lateral dorsal nucleus of thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LD", + "default": "LD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "155", + "default": "155", + "title": "Id", + "type": "string" + } + }, + "title": "_Ld", + "type": "object" + }, + "_Ldt": { + "description": "Model LDT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Laterodorsal tegmental nucleus", + "default": "Laterodorsal tegmental nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LDT", + "default": "LDT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "162", + "default": "162", + "title": "Id", + "type": "string" + } + }, + "title": "_Ldt", + "type": "object" + }, + "_Leica": { + "description": "Model Leica", + "properties": { + "name": { + "const": "Leica", + "default": "Leica", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Leica", + "type": "object" + }, + "_Lfbs": { + "description": "Model lfbs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "lateral forebrain bundle system", + "default": "lateral forebrain bundle system", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "lfbs", + "default": "lfbs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "983", + "default": "983", + "title": "Id", + "type": "string" + } + }, + "title": "_Lfbs", + "type": "object" + }, + "_Lfbst": { + "description": "Model lfbst", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "thalamus related", + "default": "thalamus related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "lfbst", + "default": "lfbst", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "896", + "default": "896", + "title": "Id", + "type": "string" + } + }, + "title": "_Lfbst", + "type": "object" + }, + "_Lg": { + "description": "Model LG", + "properties": { + "name": { + "const": "LG", + "default": "LG", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02b948n83", + "default": "02b948n83", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Lg", + "type": "object" + }, + "_Lgd": { + "description": "Model LGd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal part of the lateral geniculate complex", + "default": "Dorsal part of the lateral geniculate complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LGd", + "default": "LGd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "170", + "default": "170", + "title": "Id", + "type": "string" + } + }, + "title": "_Lgd", + "type": "object" + }, + "_Lgd_Co": { + "description": "Model LGd-co", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal part of the lateral geniculate complex, core", + "default": "Dorsal part of the lateral geniculate complex, core", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LGd-co", + "default": "LGd-co", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "496345668", + "default": "496345668", + "title": "Id", + "type": "string" + } + }, + "title": "_Lgd_Co", + "type": "object" + }, + "_Lgd_Ip": { + "description": "Model LGd-ip", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal part of the lateral geniculate complex, ipsilateral zone", + "default": "Dorsal part of the lateral geniculate complex, ipsilateral zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LGd-ip", + "default": "LGd-ip", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "496345672", + "default": "496345672", + "title": "Id", + "type": "string" + } + }, + "title": "_Lgd_Ip", + "type": "object" + }, + "_Lgd_Sh": { + "description": "Model LGd-sh", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal part of the lateral geniculate complex, shell", + "default": "Dorsal part of the lateral geniculate complex, shell", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LGd-sh", + "default": "LGd-sh", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "496345664", + "default": "496345664", + "title": "Id", + "type": "string" + } + }, + "title": "_Lgd_Sh", + "type": "object" + }, + "_Lgv": { + "description": "Model LGv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral part of the lateral geniculate complex", + "default": "Ventral part of the lateral geniculate complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LGv", + "default": "LGv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "178", + "default": "178", + "title": "Id", + "type": "string" + } + }, + "title": "_Lgv", + "type": "object" + }, + "_Lh": { + "description": "Model LH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral habenula", + "default": "Lateral habenula", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LH", + "default": "LH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "186", + "default": "186", + "title": "Id", + "type": "string" + } + }, + "title": "_Lh", + "type": "object" + }, + "_Lha": { + "description": "Model LHA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral hypothalamic area", + "default": "Lateral hypothalamic area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LHA", + "default": "LHA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "194", + "default": "194", + "title": "Id", + "type": "string" + } + }, + "title": "_Lha", + "type": "object" + }, + "_Lifecanvas": { + "description": "Model LifeCanvas", + "properties": { + "name": { + "const": "LifeCanvas", + "default": "LifeCanvas", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Lifecanvas", + "type": "object" + }, + "_Lin": { + "description": "Model LIN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Linear nucleus of the medulla", + "default": "Linear nucleus of the medulla", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LIN", + "default": "LIN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "203", + "default": "203", + "title": "Id", + "type": "string" + } + }, + "title": "_Lin", + "type": "object" + }, + "_Ling": { + "description": "Model LING", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lingula (I)", + "default": "Lingula (I)", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LING", + "default": "LING", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "912", + "default": "912", + "title": "Id", + "type": "string" + } + }, + "title": "_Ling", + "type": "object" + }, + "_Ll": { + "description": "Model ll", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "lateral lemniscus", + "default": "lateral lemniscus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ll", + "default": "ll", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "658", + "default": "658", + "title": "Id", + "type": "string" + } + }, + "title": "_Ll", + "type": "object" + }, + "_Lm": { + "description": "Model LM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral mammillary nucleus", + "default": "Lateral mammillary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LM", + "default": "LM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "210", + "default": "210", + "title": "Id", + "type": "string" + } + }, + "title": "_Lm", + "type": "object" + }, + "_Lot": { + "description": "Model lot", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "lateral olfactory tract, body", + "default": "lateral olfactory tract, body", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "lot", + "default": "lot", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "665", + "default": "665", + "title": "Id", + "type": "string" + } + }, + "title": "_Lot", + "type": "object" + }, + "_Lotd": { + "description": "Model lotd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal limb", + "default": "dorsal limb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "lotd", + "default": "lotd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "538", + "default": "538", + "title": "Id", + "type": "string" + } + }, + "title": "_Lotd", + "type": "object" + }, + "_Lotg": { + "description": "Model lotg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "lateral olfactory tract, general", + "default": "lateral olfactory tract, general", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "lotg", + "default": "lotg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "21", + "default": "21", + "title": "Id", + "type": "string" + } + }, + "title": "_Lotg", + "type": "object" + }, + "_Lp": { + "description": "Model LP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral posterior nucleus of the thalamus", + "default": "Lateral posterior nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LP", + "default": "LP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "218", + "default": "218", + "title": "Id", + "type": "string" + } + }, + "title": "_Lp", + "type": "object" + }, + "_Lpo": { + "description": "Model LPO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral preoptic area", + "default": "Lateral preoptic area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LPO", + "default": "LPO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "226", + "default": "226", + "title": "Id", + "type": "string" + } + }, + "title": "_Lpo", + "type": "object" + }, + "_Lrn": { + "description": "Model LRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral reticular nucleus", + "default": "Lateral reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LRN", + "default": "LRN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "235", + "default": "235", + "title": "Id", + "type": "string" + } + }, + "title": "_Lrn", + "type": "object" + }, + "_Lrnm": { + "description": "Model LRNm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral reticular nucleus, magnocellular part", + "default": "Lateral reticular nucleus, magnocellular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LRNm", + "default": "LRNm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "955", + "default": "955", + "title": "Id", + "type": "string" + } + }, + "title": "_Lrnm", + "type": "object" + }, + "_Lrnp": { + "description": "Model LRNp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral reticular nucleus, parvicellular part", + "default": "Lateral reticular nucleus, parvicellular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LRNp", + "default": "LRNp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "963", + "default": "963", + "title": "Id", + "type": "string" + } + }, + "title": "_Lrnp", + "type": "object" + }, + "_Ls": { + "description": "Model LS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral septal nucleus", + "default": "Lateral septal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LS", + "default": "LS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "242", + "default": "242", + "title": "Id", + "type": "string" + } + }, + "title": "_Ls", + "type": "object" + }, + "_Lsc": { + "description": "Model LSc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral septal nucleus, caudal (caudodorsal) part", + "default": "Lateral septal nucleus, caudal (caudodorsal) part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LSc", + "default": "LSc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "250", + "default": "250", + "title": "Id", + "type": "string" + } + }, + "title": "_Lsc", + "type": "object" + }, + "_Lsr": { + "description": "Model LSr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral septal nucleus, rostral (rostroventral) part", + "default": "Lateral septal nucleus, rostral (rostroventral) part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LSr", + "default": "LSr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "258", + "default": "258", + "title": "Id", + "type": "string" + } + }, + "title": "_Lsr", + "type": "object" + }, + "_Lsv": { + "description": "Model LSv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral septal nucleus, ventral part", + "default": "Lateral septal nucleus, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LSv", + "default": "LSv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "266", + "default": "266", + "title": "Id", + "type": "string" + } + }, + "title": "_Lsv", + "type": "object" + }, + "_Lsx": { + "description": "Model LSX", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral septal complex", + "default": "Lateral septal complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LSX", + "default": "LSX", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "275", + "default": "275", + "title": "Id", + "type": "string" + } + }, + "title": "_Lsx", + "type": "object" + }, + "_Lt": { + "description": "Model LT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Lateral terminal nucleus of the accessory optic tract", + "default": "Lateral terminal nucleus of the accessory optic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LT", + "default": "LT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "66", + "default": "66", + "title": "Id", + "type": "string" + } + }, + "title": "_Lt", + "type": "object" + }, + "_Lumen_Dynamics": { + "description": "Model Lumen Dynamics", + "properties": { + "name": { + "const": "Lumen Dynamics", + "default": "Lumen Dynamics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Lumen_Dynamics", + "type": "object" + }, + "_Lz": { + "description": "Model LZ", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hypothalamic lateral zone", + "default": "Hypothalamic lateral zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "LZ", + "default": "LZ", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "290", + "default": "290", + "title": "Id", + "type": "string" + } + }, + "title": "_Lz", + "type": "object" + }, + "_Ma": { + "description": "Model MA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Magnocellular nucleus", + "default": "Magnocellular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MA", + "default": "MA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "298", + "default": "298", + "title": "Id", + "type": "string" + } + }, + "title": "_Ma", + "type": "object" + }, + "_Ma3": { + "description": "Model MA3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial accesory oculomotor nucleus", + "default": "Medial accesory oculomotor nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MA3", + "default": "MA3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "549009211", + "default": "549009211", + "title": "Id", + "type": "string" + } + }, + "title": "_Ma3", + "type": "object" + }, + "_Marn": { + "description": "Model MARN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Magnocellular reticular nucleus", + "default": "Magnocellular reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MARN", + "default": "MARN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "307", + "default": "307", + "title": "Id", + "type": "string" + } + }, + "title": "_Marn", + "type": "object" + }, + "_Mb": { + "description": "Model MB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain", + "default": "Midbrain", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MB", + "default": "MB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "313", + "default": "313", + "title": "Id", + "type": "string" + } + }, + "title": "_Mb", + "type": "object" + }, + "_Mbf_Bioscience": { + "description": "Model MBF Bioscience", + "properties": { + "name": { + "const": "MBF Bioscience", + "default": "MBF Bioscience", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MBF", + "default": "MBF", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02zynam48", + "default": "02zynam48", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Mbf_Bioscience", + "type": "object" + }, + "_Mbmot": { + "description": "Model MBmot", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain, motor related", + "default": "Midbrain, motor related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MBmot", + "default": "MBmot", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "323", + "default": "323", + "title": "Id", + "type": "string" + } + }, + "title": "_Mbmot", + "type": "object" + }, + "_Mbo": { + "description": "Model MBO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Mammillary body", + "default": "Mammillary body", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MBO", + "default": "MBO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "331", + "default": "331", + "title": "Id", + "type": "string" + } + }, + "title": "_Mbo", + "type": "object" + }, + "_Mbsen": { + "description": "Model MBsen", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain, sensory related", + "default": "Midbrain, sensory related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MBsen", + "default": "MBsen", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "339", + "default": "339", + "title": "Id", + "type": "string" + } + }, + "title": "_Mbsen", + "type": "object" + }, + "_Mbsta": { + "description": "Model MBsta", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain, behavioral state related", + "default": "Midbrain, behavioral state related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MBsta", + "default": "MBsta", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "348", + "default": "348", + "title": "Id", + "type": "string" + } + }, + "title": "_Mbsta", + "type": "object" + }, + "_Mcp": { + "description": "Model mcp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "middle cerebellar peduncle", + "default": "middle cerebellar peduncle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mcp", + "default": "mcp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "78", + "default": "78", + "title": "Id", + "type": "string" + } + }, + "title": "_Mcp", + "type": "object" + }, + "_Mct": { + "description": "Model mct", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "medial corticohypothalamic tract", + "default": "medial corticohypothalamic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mct", + "default": "mct", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "428", + "default": "428", + "title": "Id", + "type": "string" + } + }, + "title": "_Mct", + "type": "object" + }, + "_Md": { + "description": "Model MD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Mediodorsal nucleus of thalamus", + "default": "Mediodorsal nucleus of thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MD", + "default": "MD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "362", + "default": "362", + "title": "Id", + "type": "string" + } + }, + "title": "_Md", + "type": "object" + }, + "_Mdrn": { + "description": "Model MDRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medullary reticular nucleus", + "default": "Medullary reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MDRN", + "default": "MDRN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "395", + "default": "395", + "title": "Id", + "type": "string" + } + }, + "title": "_Mdrn", + "type": "object" + }, + "_Mdrnd": { + "description": "Model MDRNd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medullary reticular nucleus, dorsal part", + "default": "Medullary reticular nucleus, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MDRNd", + "default": "MDRNd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1098", + "default": "1098", + "title": "Id", + "type": "string" + } + }, + "title": "_Mdrnd", + "type": "object" + }, + "_Mdrnv": { + "description": "Model MDRNv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medullary reticular nucleus, ventral part", + "default": "Medullary reticular nucleus, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MDRNv", + "default": "MDRNv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1107", + "default": "1107", + "title": "Id", + "type": "string" + } + }, + "title": "_Mdrnv", + "type": "object" + }, + "_Me": { + "description": "Model ME", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Median eminence", + "default": "Median eminence", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ME", + "default": "ME", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "10671", + "default": "10671", + "title": "Id", + "type": "string" + } + }, + "title": "_Me", + "type": "object" + }, + "_Mea": { + "description": "Model MEA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial amygdalar nucleus", + "default": "Medial amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MEA", + "default": "MEA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "403", + "default": "403", + "title": "Id", + "type": "string" + } + }, + "title": "_Mea", + "type": "object" + }, + "_Meadowlark_Optics": { + "description": "Model Meadowlark Optics", + "properties": { + "name": { + "const": "Meadowlark Optics", + "default": "Meadowlark Optics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00n8qbq54", + "default": "00n8qbq54", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Meadowlark_Optics", + "type": "object" + }, + "_Med": { + "description": "Model MED", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial group of the dorsal thalamus", + "default": "Medial group of the dorsal thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MED", + "default": "MED", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "444", + "default": "444", + "title": "Id", + "type": "string" + } + }, + "title": "_Med", + "type": "object" + }, + "_Mepo": { + "description": "Model MEPO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Median preoptic nucleus", + "default": "Median preoptic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MEPO", + "default": "MEPO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "452", + "default": "452", + "title": "Id", + "type": "string" + } + }, + "title": "_Mepo", + "type": "object" + }, + "_Merfish": { + "additionalProperties": false, + "description": "Model merfish", + "properties": { + "name": { + "const": "Multiplexed error-robust fluorescence in situ hybridization", + "default": "Multiplexed error-robust fluorescence in situ hybridization", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "merfish", + "default": "merfish", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Merfish", + "type": "object" + }, + "_Mev": { + "description": "Model MEV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain trigeminal nucleus", + "default": "Midbrain trigeminal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MEV", + "default": "MEV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "460", + "default": "460", + "title": "Id", + "type": "string" + } + }, + "title": "_Mev", + "type": "object" + }, + "_Mez": { + "description": "Model MEZ", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Hypothalamic medial zone", + "default": "Hypothalamic medial zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MEZ", + "default": "MEZ", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "467", + "default": "467", + "title": "Id", + "type": "string" + } + }, + "title": "_Mez", + "type": "object" + }, + "_Mfb": { + "description": "Model mfb", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "medial forebrain bundle", + "default": "medial forebrain bundle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mfb", + "default": "mfb", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "54", + "default": "54", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfb", + "type": "object" + }, + "_Mfbc": { + "description": "Model mfbc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "cerebrum related", + "default": "cerebrum related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mfbc", + "default": "mfbc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "768", + "default": "768", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfbc", + "type": "object" + }, + "_Mfbs": { + "description": "Model mfbs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "medial forebrain bundle system", + "default": "medial forebrain bundle system", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mfbs", + "default": "mfbs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "991", + "default": "991", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfbs", + "type": "object" + }, + "_Mfbse": { + "description": "Model mfbse", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "epithalamus related", + "default": "epithalamus related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mfbse", + "default": "mfbse", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1083", + "default": "1083", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfbse", + "type": "object" + }, + "_Mfbsma": { + "description": "Model mfbsma", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "mammillary related", + "default": "mammillary related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mfbsma", + "default": "mfbsma", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "46", + "default": "46", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfbsma", + "type": "object" + }, + "_Mfsbshy": { + "description": "Model mfsbshy", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "hypothalamus related", + "default": "hypothalamus related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mfsbshy", + "default": "mfsbshy", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "824", + "default": "824", + "title": "Id", + "type": "string" + } + }, + "title": "_Mfsbshy", + "type": "object" + }, + "_Mg": { + "description": "Model MG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial geniculate complex", + "default": "Medial geniculate complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MG", + "default": "MG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "475", + "default": "475", + "title": "Id", + "type": "string" + } + }, + "title": "_Mg", + "type": "object" + }, + "_Mgd": { + "description": "Model MGd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial geniculate complex, dorsal part", + "default": "Medial geniculate complex, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MGd", + "default": "MGd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1072", + "default": "1072", + "title": "Id", + "type": "string" + } + }, + "title": "_Mgd", + "type": "object" + }, + "_Mgi": { + "additionalProperties": false, + "description": "Model MGI", + "properties": { + "name": { + "const": "Mouse Genome Informatics", + "default": "Mouse Genome Informatics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MGI", + "default": "MGI", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Mgi", + "type": "object" + }, + "_Mgm": { + "description": "Model MGm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial geniculate complex, medial part", + "default": "Medial geniculate complex, medial part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MGm", + "default": "MGm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1088", + "default": "1088", + "title": "Id", + "type": "string" + } + }, + "title": "_Mgm", + "type": "object" + }, + "_Mgv": { + "description": "Model MGv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial geniculate complex, ventral part", + "default": "Medial geniculate complex, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MGv", + "default": "MGv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1079", + "default": "1079", + "title": "Id", + "type": "string" + } + }, + "title": "_Mgv", + "type": "object" + }, + "_Mh": { + "description": "Model MH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial habenula", + "default": "Medial habenula", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MH", + "default": "MH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "483", + "default": "483", + "title": "Id", + "type": "string" + } + }, + "title": "_Mh", + "type": "object" + }, + "_Michael_J_Fox_Foundation_For_Parkinson_S_Research": { + "description": "Model Michael J. Fox Foundation for Parkinson's Research", + "properties": { + "name": { + "const": "Michael J. Fox Foundation for Parkinson's Research", + "default": "Michael J. Fox Foundation for Parkinson's Research", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MJFF", + "default": "MJFF", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "03arq3225", + "default": "03arq3225", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "type": "object" + }, + "_Midwest_Optical_Systems_Inc_": { + "description": "Model Midwest Optical Systems, Inc.", + "properties": { + "name": { + "const": "Midwest Optical Systems, Inc.", + "default": "Midwest Optical Systems, Inc.", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MidOpt", + "default": "MidOpt", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Midwest_Optical_Systems_Inc_", + "type": "object" + }, + "_Mitutuyo": { + "description": "Model Mitutuyo", + "properties": { + "name": { + "const": "Mitutuyo", + "default": "Mitutuyo", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Mitutuyo", + "type": "object" + }, + "_Mks_Newport": { + "description": "Model MKS Newport", + "properties": { + "name": { + "const": "MKS Newport", + "default": "MKS Newport", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00k17f049", + "default": "00k17f049", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Mks_Newport", + "type": "object" + }, + "_Ml": { + "description": "Model ml", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "medial lemniscus", + "default": "medial lemniscus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ml", + "default": "ml", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "697", + "default": "697", + "title": "Id", + "type": "string" + } + }, + "title": "_Ml", + "type": "object" + }, + "_Mlf": { + "description": "Model mlf", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "medial longitudinal fascicle", + "default": "medial longitudinal fascicle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mlf", + "default": "mlf", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "62", + "default": "62", + "title": "Id", + "type": "string" + } + }, + "title": "_Mlf", + "type": "object" + }, + "_Mm": { + "description": "Model MM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial mammillary nucleus", + "default": "Medial mammillary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MM", + "default": "MM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "491", + "default": "491", + "title": "Id", + "type": "string" + } + }, + "title": "_Mm", + "type": "object" + }, + "_Mmd": { + "description": "Model MMd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial mammillary nucleus, dorsal part", + "default": "Medial mammillary nucleus, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MMd", + "default": "MMd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "606826659", + "default": "606826659", + "title": "Id", + "type": "string" + } + }, + "title": "_Mmd", + "type": "object" + }, + "_Mml": { + "description": "Model MMl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial mammillary nucleus, lateral part", + "default": "Medial mammillary nucleus, lateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MMl", + "default": "MMl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "606826647", + "default": "606826647", + "title": "Id", + "type": "string" + } + }, + "title": "_Mml", + "type": "object" + }, + "_Mmm": { + "description": "Model MMm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial mammillary nucleus, medial part", + "default": "Medial mammillary nucleus, medial part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MMm", + "default": "MMm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "606826651", + "default": "606826651", + "title": "Id", + "type": "string" + } + }, + "title": "_Mmm", + "type": "object" + }, + "_Mmme": { + "description": "Model MMme", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial mammillary nucleus, median part", + "default": "Medial mammillary nucleus, median part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MMme", + "default": "MMme", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "732", + "default": "732", + "title": "Id", + "type": "string" + } + }, + "title": "_Mmme", + "type": "object" + }, + "_Mmp": { + "description": "Model MMp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial mammillary nucleus, posterior part", + "default": "Medial mammillary nucleus, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MMp", + "default": "MMp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "606826655", + "default": "606826655", + "title": "Id", + "type": "string" + } + }, + "title": "_Mmp", + "type": "object" + }, + "_Mo": { + "description": "Model MO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Somatomotor areas", + "default": "Somatomotor areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MO", + "default": "MO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "500", + "default": "500", + "title": "Id", + "type": "string" + } + }, + "title": "_Mo", + "type": "object" + }, + "_Mob": { + "description": "Model MOB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Main olfactory bulb", + "default": "Main olfactory bulb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOB", + "default": "MOB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "507", + "default": "507", + "title": "Id", + "type": "string" + } + }, + "title": "_Mob", + "type": "object" + }, + "_Mop": { + "description": "Model MOp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary motor area", + "default": "Primary motor area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOp", + "default": "MOp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "985", + "default": "985", + "title": "Id", + "type": "string" + } + }, + "title": "_Mop", + "type": "object" + }, + "_Mop1": { + "description": "Model MOp1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary motor area, Layer 1", + "default": "Primary motor area, Layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOp1", + "default": "MOp1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "320", + "default": "320", + "title": "Id", + "type": "string" + } + }, + "title": "_Mop1", + "type": "object" + }, + "_Mop2_3": { + "description": "Model MOp2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary motor area, Layer 2/3", + "default": "Primary motor area, Layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOp2/3", + "default": "MOp2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "943", + "default": "943", + "title": "Id", + "type": "string" + } + }, + "title": "_Mop2_3", + "type": "object" + }, + "_Mop5": { + "description": "Model MOp5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary motor area, Layer 5", + "default": "Primary motor area, Layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOp5", + "default": "MOp5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "648", + "default": "648", + "title": "Id", + "type": "string" + } + }, + "title": "_Mop5", + "type": "object" + }, + "_Mop6A": { + "description": "Model MOp6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary motor area, Layer 6a", + "default": "Primary motor area, Layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOp6a", + "default": "MOp6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "844", + "default": "844", + "title": "Id", + "type": "string" + } + }, + "title": "_Mop6A", + "type": "object" + }, + "_Mop6B": { + "description": "Model MOp6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary motor area, Layer 6b", + "default": "Primary motor area, Layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOp6b", + "default": "MOp6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "882", + "default": "882", + "title": "Id", + "type": "string" + } + }, + "title": "_Mop6B", + "type": "object" + }, + "_Mos": { + "description": "Model MOs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Secondary motor area", + "default": "Secondary motor area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOs", + "default": "MOs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "993", + "default": "993", + "title": "Id", + "type": "string" + } + }, + "title": "_Mos", + "type": "object" + }, + "_Mos1": { + "description": "Model MOs1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Secondary motor area, layer 1", + "default": "Secondary motor area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOs1", + "default": "MOs1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "656", + "default": "656", + "title": "Id", + "type": "string" + } + }, + "title": "_Mos1", + "type": "object" + }, + "_Mos2_3": { + "description": "Model MOs2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Secondary motor area, layer 2/3", + "default": "Secondary motor area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOs2/3", + "default": "MOs2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "962", + "default": "962", + "title": "Id", + "type": "string" + } + }, + "title": "_Mos2_3", + "type": "object" + }, + "_Mos5": { + "description": "Model MOs5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Secondary motor area, layer 5", + "default": "Secondary motor area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOs5", + "default": "MOs5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "767", + "default": "767", + "title": "Id", + "type": "string" + } + }, + "title": "_Mos5", + "type": "object" + }, + "_Mos6A": { + "description": "Model MOs6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Secondary motor area, layer 6a", + "default": "Secondary motor area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOs6a", + "default": "MOs6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1021", + "default": "1021", + "title": "Id", + "type": "string" + } + }, + "title": "_Mos6A", + "type": "object" + }, + "_Mos6B": { + "description": "Model MOs6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Secondary motor area, layer 6b", + "default": "Secondary motor area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MOs6b", + "default": "MOs6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1085", + "default": "1085", + "title": "Id", + "type": "string" + } + }, + "title": "_Mos6B", + "type": "object" + }, + "_Mov": { + "description": "Model moV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "motor root of the trigeminal nerve", + "default": "motor root of the trigeminal nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "moV", + "default": "moV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "93", + "default": "93", + "title": "Id", + "type": "string" + } + }, + "title": "_Mov", + "type": "object" + }, + "_Mp": { + "description": "Model mp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "mammillary peduncle", + "default": "mammillary peduncle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mp", + "default": "mp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "673", + "default": "673", + "title": "Id", + "type": "string" + } + }, + "title": "_Mp", + "type": "object" + }, + "_Mpi": { + "description": "Model MPI", + "properties": { + "name": { + "const": "MPI", + "default": "MPI", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MPI", + "default": "MPI", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Mpi", + "type": "object" + }, + "_Mpn": { + "description": "Model MPN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial preoptic nucleus", + "default": "Medial preoptic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MPN", + "default": "MPN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "515", + "default": "515", + "title": "Id", + "type": "string" + } + }, + "title": "_Mpn", + "type": "object" + }, + "_Mpo": { + "description": "Model MPO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial preoptic area", + "default": "Medial preoptic area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MPO", + "default": "MPO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "523", + "default": "523", + "title": "Id", + "type": "string" + } + }, + "title": "_Mpo", + "type": "object" + }, + "_Mpt": { + "description": "Model MPT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial pretectal area", + "default": "Medial pretectal area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MPT", + "default": "MPT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "531", + "default": "531", + "title": "Id", + "type": "string" + } + }, + "title": "_Mpt", + "type": "object" + }, + "_Mri": { + "additionalProperties": false, + "description": "Model MRI", + "properties": { + "name": { + "const": "Magnetic resonance imaging", + "default": "Magnetic resonance imaging", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "MRI", + "default": "MRI", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Mri", + "type": "object" + }, + "_Mrn": { + "description": "Model MRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain reticular nucleus", + "default": "Midbrain reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MRN", + "default": "MRN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "128", + "default": "128", + "title": "Id", + "type": "string" + } + }, + "title": "_Mrn", + "type": "object" + }, + "_Ms": { + "description": "Model MS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial septal nucleus", + "default": "Medial septal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MS", + "default": "MS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "564", + "default": "564", + "title": "Id", + "type": "string" + } + }, + "title": "_Ms", + "type": "object" + }, + "_Msc": { + "description": "Model MSC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial septal complex", + "default": "Medial septal complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MSC", + "default": "MSC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "904", + "default": "904", + "title": "Id", + "type": "string" + } + }, + "title": "_Msc", + "type": "object" + }, + "_Mt": { + "description": "Model MT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial terminal nucleus of the accessory optic tract", + "default": "Medial terminal nucleus of the accessory optic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MT", + "default": "MT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "58", + "default": "58", + "title": "Id", + "type": "string" + } + }, + "title": "_Mt", + "type": "object" + }, + "_Mtg": { + "description": "Model mtg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "mammillotegmental tract", + "default": "mammillotegmental tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mtg", + "default": "mtg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "681", + "default": "681", + "title": "Id", + "type": "string" + } + }, + "title": "_Mtg", + "type": "object" + }, + "_Mtn": { + "description": "Model MTN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midline group of the dorsal thalamus", + "default": "Midline group of the dorsal thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MTN", + "default": "MTN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "571", + "default": "571", + "title": "Id", + "type": "string" + } + }, + "title": "_Mtn", + "type": "object" + }, + "_Mtt": { + "description": "Model mtt", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "mammillothalamic tract", + "default": "mammillothalamic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "mtt", + "default": "mtt", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "690", + "default": "690", + "title": "Id", + "type": "string" + } + }, + "title": "_Mtt", + "type": "object" + }, + "_Mv": { + "description": "Model MV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medial vestibular nucleus", + "default": "Medial vestibular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MV", + "default": "MV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "202", + "default": "202", + "title": "Id", + "type": "string" + } + }, + "title": "_Mv", + "type": "object" + }, + "_My": { + "description": "Model MY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medulla", + "default": "Medulla", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MY", + "default": "MY", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "354", + "default": "354", + "title": "Id", + "type": "string" + } + }, + "title": "_My", + "type": "object" + }, + "_My_Mot": { + "description": "Model MY-mot", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medulla, motor related", + "default": "Medulla, motor related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MY-mot", + "default": "MY-mot", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "370", + "default": "370", + "title": "Id", + "type": "string" + } + }, + "title": "_My_Mot", + "type": "object" + }, + "_My_Sat": { + "description": "Model MY-sat", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medulla, behavioral state related", + "default": "Medulla, behavioral state related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MY-sat", + "default": "MY-sat", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "379", + "default": "379", + "title": "Id", + "type": "string" + } + }, + "title": "_My_Sat", + "type": "object" + }, + "_My_Sen": { + "description": "Model MY-sen", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Medulla, sensory related", + "default": "Medulla, sensory related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "MY-sen", + "default": "MY-sen", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "386", + "default": "386", + "title": "Id", + "type": "string" + } + }, + "title": "_My_Sen", + "type": "object" + }, + "_National_Center_For_Complementary_And_Integrative_Health": { + "description": "Model National Center for Complementary and Integrative Health", + "properties": { + "name": { + "const": "National Center for Complementary and Integrative Health", + "default": "National Center for Complementary and Integrative Health", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NCCIH", + "default": "NCCIH", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00190t495", + "default": "00190t495", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_National_Center_For_Complementary_And_Integrative_Health", + "type": "object" + }, + "_National_Institute_Of_Mental_Health": { + "description": "Model National Institute of Mental Health", + "properties": { + "name": { + "const": "National Institute of Mental Health", + "default": "National Institute of Mental Health", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NIMH", + "default": "NIMH", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "04xeg9z08", + "default": "04xeg9z08", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_National_Institute_Of_Mental_Health", + "type": "object" + }, + "_National_Institute_Of_Neurological_Disorders_And_Stroke": { + "description": "Model National Institute of Neurological Disorders and Stroke", + "properties": { + "name": { + "const": "National Institute of Neurological Disorders and Stroke", + "default": "National Institute of Neurological Disorders and Stroke", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NINDS", + "default": "NINDS", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "01s5ya894", + "default": "01s5ya894", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_National_Institute_Of_Neurological_Disorders_And_Stroke", + "type": "object" + }, + "_National_Instruments": { + "description": "Model National Instruments", + "properties": { + "name": { + "const": "National Instruments", + "default": "National Instruments", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "026exqw73", + "default": "026exqw73", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_National_Instruments", + "type": "object" + }, + "_Navitar": { + "description": "Model Navitar", + "properties": { + "name": { + "const": "Navitar", + "default": "Navitar", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Navitar", + "type": "object" + }, + "_Nb": { + "description": "Model NB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the brachium of the inferior colliculus", + "default": "Nucleus of the brachium of the inferior colliculus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NB", + "default": "NB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "580", + "default": "580", + "title": "Id", + "type": "string" + } + }, + "title": "_Nb", + "type": "object" + }, + "_Ncbi": { + "additionalProperties": false, + "description": "Model NCBI", + "properties": { + "name": { + "const": "National Center for Biotechnology Information", + "default": "National Center for Biotechnology Information", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NCBI", + "default": "NCBI", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Ncbi", + "type": "object" + }, + "_Nd": { + "description": "Model ND", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of Darkschewitsch", + "default": "Nucleus of Darkschewitsch", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ND", + "default": "ND", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "587", + "default": "587", + "title": "Id", + "type": "string" + } + }, + "title": "_Nd", + "type": "object" + }, + "_Ndb": { + "description": "Model NDB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Diagonal band nucleus", + "default": "Diagonal band nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NDB", + "default": "NDB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "596", + "default": "596", + "title": "Id", + "type": "string" + } + }, + "title": "_Ndb", + "type": "object" + }, + "_Neurophotometrics": { + "description": "Model Neurophotometrics", + "properties": { + "name": { + "const": "Neurophotometrics", + "default": "Neurophotometrics", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Neurophotometrics", + "type": "object" + }, + "_New_Scale_Technologies": { + "description": "Model New Scale Technologies", + "properties": { + "name": { + "const": "New Scale Technologies", + "default": "New Scale Technologies", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_New_Scale_Technologies", + "type": "object" + }, + "_New_York_University": { + "description": "Model New York University", + "properties": { + "name": { + "const": "New York University", + "default": "New York University", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "NYU", + "default": "NYU", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "0190ak572", + "default": "0190ak572", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_New_York_University", + "type": "object" + }, + "_Ni": { + "description": "Model NI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus incertus", + "default": "Nucleus incertus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NI", + "default": "NI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "604", + "default": "604", + "title": "Id", + "type": "string" + } + }, + "title": "_Ni", + "type": "object" + }, + "_Nikon": { + "description": "Model Nikon", + "properties": { + "name": { + "const": "Nikon", + "default": "Nikon", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "0280y9h11", + "default": "0280y9h11", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Nikon", + "type": "object" + }, + "_Nll": { + "description": "Model NLL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the lateral lemniscus", + "default": "Nucleus of the lateral lemniscus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NLL", + "default": "NLL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "612", + "default": "612", + "title": "Id", + "type": "string" + } + }, + "title": "_Nll", + "type": "object" + }, + "_Nlot": { + "description": "Model NLOT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the lateral olfactory tract", + "default": "Nucleus of the lateral olfactory tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NLOT", + "default": "NLOT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "619", + "default": "619", + "title": "Id", + "type": "string" + } + }, + "title": "_Nlot", + "type": "object" + }, + "_Nlot1": { + "description": "Model NLOT1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the lateral olfactory tract, molecular layer", + "default": "Nucleus of the lateral olfactory tract, molecular layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NLOT1", + "default": "NLOT1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "260", + "default": "260", + "title": "Id", + "type": "string" + } + }, + "title": "_Nlot1", + "type": "object" + }, + "_Nlot2": { + "description": "Model NLOT2", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the lateral olfactory tract, pyramidal layer", + "default": "Nucleus of the lateral olfactory tract, pyramidal layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NLOT2", + "default": "NLOT2", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "268", + "default": "268", + "title": "Id", + "type": "string" + } + }, + "title": "_Nlot2", + "type": "object" + }, + "_Nlot3": { + "description": "Model NLOT3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the lateral olfactory tract, layer 3", + "default": "Nucleus of the lateral olfactory tract, layer 3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NLOT3", + "default": "NLOT3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1139", + "default": "1139", + "title": "Id", + "type": "string" + } + }, + "title": "_Nlot3", + "type": "object" + }, + "_Nod": { + "description": "Model NOD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nodulus (X)", + "default": "Nodulus (X)", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NOD", + "default": "NOD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "968", + "default": "968", + "title": "Id", + "type": "string" + } + }, + "title": "_Nod", + "type": "object" + }, + "_Not": { + "description": "Model NOT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the optic tract", + "default": "Nucleus of the optic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NOT", + "default": "NOT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "628", + "default": "628", + "title": "Id", + "type": "string" + } + }, + "title": "_Not", + "type": "object" + }, + "_Npc": { + "description": "Model NPC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the posterior commissure", + "default": "Nucleus of the posterior commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NPC", + "default": "NPC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "634", + "default": "634", + "title": "Id", + "type": "string" + } + }, + "title": "_Npc", + "type": "object" + }, + "_Nr": { + "description": "Model NR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of Roller", + "default": "Nucleus of Roller", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NR", + "default": "NR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "177", + "default": "177", + "title": "Id", + "type": "string" + } + }, + "title": "_Nr", + "type": "object" + }, + "_Nresearch_Inc": { + "description": "Model NResearch Inc", + "properties": { + "name": { + "const": "NResearch Inc", + "default": "NResearch Inc", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Nresearch_Inc", + "type": "object" + }, + "_Nst": { + "description": "Model nst", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "nigrostriatal tract", + "default": "nigrostriatal tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "nst", + "default": "nst", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "102", + "default": "102", + "title": "Id", + "type": "string" + } + }, + "title": "_Nst", + "type": "object" + }, + "_Ntb": { + "description": "Model NTB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the trapezoid body", + "default": "Nucleus of the trapezoid body", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NTB", + "default": "NTB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "642", + "default": "642", + "title": "Id", + "type": "string" + } + }, + "title": "_Ntb", + "type": "object" + }, + "_Nts": { + "description": "Model NTS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of the solitary tract", + "default": "Nucleus of the solitary tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "NTS", + "default": "NTS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "651", + "default": "651", + "title": "Id", + "type": "string" + } + }, + "title": "_Nts", + "type": "object" + }, + "_Och": { + "description": "Model och", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "optic chiasm", + "default": "optic chiasm", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "och", + "default": "och", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "117", + "default": "117", + "title": "Id", + "type": "string" + } + }, + "title": "_Och", + "type": "object" + }, + "_Olf": { + "description": "Model OLF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Olfactory areas", + "default": "Olfactory areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "OLF", + "default": "OLF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "698", + "default": "698", + "title": "Id", + "type": "string" + } + }, + "title": "_Olf", + "type": "object" + }, + "_Olympus": { + "description": "Model Olympus", + "properties": { + "name": { + "const": "Olympus", + "default": "Olympus", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "02vcdte90", + "default": "02vcdte90", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Olympus", + "type": "object" + }, + "_Onl": { + "description": "Model onl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "olfactory nerve layer of main olfactory bulb", + "default": "olfactory nerve layer of main olfactory bulb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "onl", + "default": "onl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1016", + "default": "1016", + "title": "Id", + "type": "string" + } + }, + "title": "_Onl", + "type": "object" + }, + "_Op": { + "description": "Model OP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Olivary pretectal nucleus", + "default": "Olivary pretectal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "OP", + "default": "OP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "706", + "default": "706", + "title": "Id", + "type": "string" + } + }, + "title": "_Op", + "type": "object" + }, + "_Open_Ephys_Production_Site": { + "description": "Model Open Ephys Production Site", + "properties": { + "name": { + "const": "Open Ephys Production Site", + "default": "Open Ephys Production Site", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "OEPS", + "default": "OEPS", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "007rkz355", + "default": "007rkz355", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Open_Ephys_Production_Site", + "type": "object" + }, + "_Opt": { + "description": "Model opt", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "optic tract", + "default": "optic tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "opt", + "default": "opt", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "125", + "default": "125", + "title": "Id", + "type": "string" + } + }, + "title": "_Opt", + "type": "object" + }, + "_Optotune": { + "description": "Model Optotune", + "properties": { + "name": { + "const": "Optotune", + "default": "Optotune", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Optotune", + "type": "object" + }, + "_Or": { + "description": "Model or", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "optic radiation", + "default": "optic radiation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "or", + "default": "or", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682520", + "default": "484682520", + "title": "Id", + "type": "string" + } + }, + "title": "_Or", + "type": "object" + }, + "_Orb": { + "description": "Model ORB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area", + "default": "Orbital area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORB", + "default": "ORB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "714", + "default": "714", + "title": "Id", + "type": "string" + } + }, + "title": "_Orb", + "type": "object" + }, + "_Orbl": { + "description": "Model ORBl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part", + "default": "Orbital area, lateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl", + "default": "ORBl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "723", + "default": "723", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl", + "type": "object" + }, + "_Orbl1": { + "description": "Model ORBl1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part, layer 1", + "default": "Orbital area, lateral part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl1", + "default": "ORBl1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "448", + "default": "448", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl1", + "type": "object" + }, + "_Orbl2_3": { + "description": "Model ORBl2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part, layer 2/3", + "default": "Orbital area, lateral part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl2/3", + "default": "ORBl2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "412", + "default": "412", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl2_3", + "type": "object" + }, + "_Orbl5": { + "description": "Model ORBl5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part, layer 5", + "default": "Orbital area, lateral part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl5", + "default": "ORBl5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "630", + "default": "630", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl5", + "type": "object" + }, + "_Orbl6A": { + "description": "Model ORBl6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part, layer 6a", + "default": "Orbital area, lateral part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl6a", + "default": "ORBl6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "440", + "default": "440", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl6A", + "type": "object" + }, + "_Orbl6B": { + "description": "Model ORBl6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, lateral part, layer 6b", + "default": "Orbital area, lateral part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBl6b", + "default": "ORBl6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "488", + "default": "488", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbl6B", + "type": "object" + }, + "_Orbm": { + "description": "Model ORBm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, medial part", + "default": "Orbital area, medial part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBm", + "default": "ORBm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "731", + "default": "731", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbm", + "type": "object" + }, + "_Orbm1": { + "description": "Model ORBm1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, medial part, layer 1", + "default": "Orbital area, medial part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBm1", + "default": "ORBm1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484", + "default": "484", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbm1", + "type": "object" + }, + "_Orbm2_3": { + "description": "Model ORBm2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, medial part, layer 2/3", + "default": "Orbital area, medial part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBm2/3", + "default": "ORBm2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "582", + "default": "582", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbm2_3", + "type": "object" + }, + "_Orbm5": { + "description": "Model ORBm5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, medial part, layer 5", + "default": "Orbital area, medial part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBm5", + "default": "ORBm5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "620", + "default": "620", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbm5", + "type": "object" + }, + "_Orbm6A": { + "description": "Model ORBm6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, medial part, layer 6a", + "default": "Orbital area, medial part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBm6a", + "default": "ORBm6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "910", + "default": "910", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbm6A", + "type": "object" + }, + "_Orbm6B": { + "description": "Model ORBm6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, medial part, layer 6b", + "default": "Orbital area, medial part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBm6b", + "default": "ORBm6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "527696977", + "default": "527696977", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbm6B", + "type": "object" + }, + "_Orbvl": { + "description": "Model ORBvl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, ventrolateral part", + "default": "Orbital area, ventrolateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBvl", + "default": "ORBvl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "746", + "default": "746", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbvl", + "type": "object" + }, + "_Orbvl1": { + "description": "Model ORBvl1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, ventrolateral part, layer 1", + "default": "Orbital area, ventrolateral part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBvl1", + "default": "ORBvl1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "969", + "default": "969", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbvl1", + "type": "object" + }, + "_Orbvl2_3": { + "description": "Model ORBvl2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, ventrolateral part, layer 2/3", + "default": "Orbital area, ventrolateral part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBvl2/3", + "default": "ORBvl2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "288", + "default": "288", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbvl2_3", + "type": "object" + }, + "_Orbvl5": { + "description": "Model ORBvl5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, ventrolateral part, layer 5", + "default": "Orbital area, ventrolateral part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBvl5", + "default": "ORBvl5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1125", + "default": "1125", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbvl5", + "type": "object" + }, + "_Orbvl6A": { + "description": "Model ORBvl6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, ventrolateral part, layer 6a", + "default": "Orbital area, ventrolateral part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBvl6a", + "default": "ORBvl6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "608", + "default": "608", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbvl6A", + "type": "object" + }, + "_Orbvl6B": { + "description": "Model ORBvl6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Orbital area, ventrolateral part, layer 6b", + "default": "Orbital area, ventrolateral part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ORBvl6b", + "default": "ORBvl6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "680", + "default": "680", + "title": "Id", + "type": "string" + } + }, + "title": "_Orbvl6B", + "type": "object" + }, + "_Orcid": { + "additionalProperties": false, + "description": "Model ORCID", + "properties": { + "name": { + "const": "Open Researcher and Contributor ID", + "default": "Open Researcher and Contributor ID", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "ORCID", + "default": "ORCID", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Orcid", + "type": "object" + }, + "_Ot": { + "description": "Model OT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Olfactory tubercle", + "default": "Olfactory tubercle", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "OT", + "default": "OT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "754", + "default": "754", + "title": "Id", + "type": "string" + } + }, + "title": "_Ot", + "type": "object" + }, + "_Other": { + "description": "Model Other", + "properties": { + "name": { + "const": "Other", + "default": "Other", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Other", + "type": "object" + }, + "_Ov": { + "description": "Model OV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Vascular organ of the lamina terminalis", + "default": "Vascular organ of the lamina terminalis", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "OV", + "default": "OV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "763", + "default": "763", + "title": "Id", + "type": "string" + } + }, + "title": "_Ov", + "type": "object" + }, + "_Oxxius": { + "description": "Model Oxxius", + "properties": { + "name": { + "const": "Oxxius", + "default": "Oxxius", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Oxxius", + "type": "object" + }, + "_P": { + "description": "Model P", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pons", + "default": "Pons", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "P", + "default": "P", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "771", + "default": "771", + "title": "Id", + "type": "string" + } + }, + "title": "_P", + "type": "object" + }, + "_P5": { + "description": "Model P5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Peritrigeminal zone", + "default": "Peritrigeminal zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "P5", + "default": "P5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "549009215", + "default": "549009215", + "title": "Id", + "type": "string" + } + }, + "title": "_P5", + "type": "object" + }, + "_P_Mot": { + "description": "Model P-mot", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pons, motor related", + "default": "Pons, motor related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "P-mot", + "default": "P-mot", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "987", + "default": "987", + "title": "Id", + "type": "string" + } + }, + "title": "_P_Mot", + "type": "object" + }, + "_P_Sat": { + "description": "Model P-sat", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pons, behavioral state related", + "default": "Pons, behavioral state related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "P-sat", + "default": "P-sat", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1117", + "default": "1117", + "title": "Id", + "type": "string" + } + }, + "title": "_P_Sat", + "type": "object" + }, + "_P_Sen": { + "description": "Model P-sen", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pons, sensory related", + "default": "Pons, sensory related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "P-sen", + "default": "P-sen", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1132", + "default": "1132", + "title": "Id", + "type": "string" + } + }, + "title": "_P_Sen", + "type": "object" + }, + "_Pa": { + "description": "Model PA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior amygdalar nucleus", + "default": "Posterior amygdalar nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PA", + "default": "PA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "780", + "default": "780", + "title": "Id", + "type": "string" + } + }, + "title": "_Pa", + "type": "object" + }, + "_Pa4": { + "description": "Model Pa4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paratrochlear nucleus", + "default": "Paratrochlear nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "Pa4", + "default": "Pa4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "606826663", + "default": "606826663", + "title": "Id", + "type": "string" + } + }, + "title": "_Pa4", + "type": "object" + }, + "_Pa5": { + "description": "Model Pa5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paratrigeminal nucleus", + "default": "Paratrigeminal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "Pa5", + "default": "Pa5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "589508451", + "default": "589508451", + "title": "Id", + "type": "string" + } + }, + "title": "_Pa5", + "type": "object" + }, + "_Paa": { + "description": "Model PAA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Piriform-amygdalar area", + "default": "Piriform-amygdalar area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PAA", + "default": "PAA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "788", + "default": "788", + "title": "Id", + "type": "string" + } + }, + "title": "_Paa", + "type": "object" + }, + "_Pag": { + "description": "Model PAG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periaqueductal gray", + "default": "Periaqueductal gray", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PAG", + "default": "PAG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "795", + "default": "795", + "title": "Id", + "type": "string" + } + }, + "title": "_Pag", + "type": "object" + }, + "_Pal": { + "description": "Model PAL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pallidum", + "default": "Pallidum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PAL", + "default": "PAL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "803", + "default": "803", + "title": "Id", + "type": "string" + } + }, + "title": "_Pal", + "type": "object" + }, + "_Palc": { + "description": "Model PALc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pallidum, caudal region", + "default": "Pallidum, caudal region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PALc", + "default": "PALc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "809", + "default": "809", + "title": "Id", + "type": "string" + } + }, + "title": "_Palc", + "type": "object" + }, + "_Pald": { + "description": "Model PALd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pallidum, dorsal region", + "default": "Pallidum, dorsal region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PALd", + "default": "PALd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "818", + "default": "818", + "title": "Id", + "type": "string" + } + }, + "title": "_Pald", + "type": "object" + }, + "_Palm": { + "description": "Model PALm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pallidum, medial region", + "default": "Pallidum, medial region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PALm", + "default": "PALm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "826", + "default": "826", + "title": "Id", + "type": "string" + } + }, + "title": "_Palm", + "type": "object" + }, + "_Palv": { + "description": "Model PALv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pallidum, ventral region", + "default": "Pallidum, ventral region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PALv", + "default": "PALv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "835", + "default": "835", + "title": "Id", + "type": "string" + } + }, + "title": "_Palv", + "type": "object" + }, + "_Par": { + "description": "Model PAR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parasubiculum", + "default": "Parasubiculum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PAR", + "default": "PAR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "843", + "default": "843", + "title": "Id", + "type": "string" + } + }, + "title": "_Par", + "type": "object" + }, + "_Parn": { + "description": "Model PARN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parvicellular reticular nucleus", + "default": "Parvicellular reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PARN", + "default": "PARN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "852", + "default": "852", + "title": "Id", + "type": "string" + } + }, + "title": "_Parn", + "type": "object" + }, + "_Pas": { + "description": "Model PAS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parasolitary nucleus", + "default": "Parasolitary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PAS", + "default": "PAS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "859", + "default": "859", + "title": "Id", + "type": "string" + } + }, + "title": "_Pas", + "type": "object" + }, + "_Pb": { + "description": "Model PB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parabrachial nucleus", + "default": "Parabrachial nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PB", + "default": "PB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "867", + "default": "867", + "title": "Id", + "type": "string" + } + }, + "title": "_Pb", + "type": "object" + }, + "_Pbg": { + "description": "Model PBG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parabigeminal nucleus", + "default": "Parabigeminal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PBG", + "default": "PBG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "874", + "default": "874", + "title": "Id", + "type": "string" + } + }, + "title": "_Pbg", + "type": "object" + }, + "_Pc": { + "description": "Model pc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "posterior commissure", + "default": "posterior commissure", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "pc", + "default": "pc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "158", + "default": "158", + "title": "Id", + "type": "string" + } + }, + "title": "_Pc", + "type": "object" + }, + "_Pc5": { + "description": "Model PC5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parvicellular motor 5 nucleus", + "default": "Parvicellular motor 5 nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PC5", + "default": "PC5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "549009223", + "default": "549009223", + "title": "Id", + "type": "string" + } + }, + "title": "_Pc5", + "type": "object" + }, + "_Pcg": { + "description": "Model PCG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pontine central gray", + "default": "Pontine central gray", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PCG", + "default": "PCG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "898", + "default": "898", + "title": "Id", + "type": "string" + } + }, + "title": "_Pcg", + "type": "object" + }, + "_Pcn": { + "description": "Model PCN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paracentral nucleus", + "default": "Paracentral nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PCN", + "default": "PCN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "907", + "default": "907", + "title": "Id", + "type": "string" + } + }, + "title": "_Pcn", + "type": "object" + }, + "_Pd": { + "description": "Model PD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterodorsal preoptic nucleus", + "default": "Posterodorsal preoptic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PD", + "default": "PD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "914", + "default": "914", + "title": "Id", + "type": "string" + } + }, + "title": "_Pd", + "type": "object" + }, + "_Pdtg": { + "description": "Model PDTg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterodorsal tegmental nucleus", + "default": "Posterodorsal tegmental nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PDTg", + "default": "PDTg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "599626927", + "default": "599626927", + "title": "Id", + "type": "string" + } + }, + "title": "_Pdtg", + "type": "object" + }, + "_Pef": { + "description": "Model PeF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perifornical nucleus", + "default": "Perifornical nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PeF", + "default": "PeF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "576073704", + "default": "576073704", + "title": "Id", + "type": "string" + } + }, + "title": "_Pef", + "type": "object" + }, + "_Peri": { + "description": "Model PERI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area", + "default": "Perirhinal area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI", + "default": "PERI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "922", + "default": "922", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri", + "type": "object" + }, + "_Peri1": { + "description": "Model PERI1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area, layer 1", + "default": "Perirhinal area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI1", + "default": "PERI1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "540", + "default": "540", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri1", + "type": "object" + }, + "_Peri2_3": { + "description": "Model PERI2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area, layer 2/3", + "default": "Perirhinal area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI2/3", + "default": "PERI2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "888", + "default": "888", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri2_3", + "type": "object" + }, + "_Peri5": { + "description": "Model PERI5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area, layer 5", + "default": "Perirhinal area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI5", + "default": "PERI5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "692", + "default": "692", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri5", + "type": "object" + }, + "_Peri6A": { + "description": "Model PERI6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area, layer 6a", + "default": "Perirhinal area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI6a", + "default": "PERI6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "335", + "default": "335", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri6A", + "type": "object" + }, + "_Peri6B": { + "description": "Model PERI6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perirhinal area, layer 6b", + "default": "Perirhinal area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PERI6b", + "default": "PERI6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "368", + "default": "368", + "title": "Id", + "type": "string" + } + }, + "title": "_Peri6B", + "type": "object" + }, + "_Pf": { + "description": "Model PF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parafascicular nucleus", + "default": "Parafascicular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PF", + "default": "PF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "930", + "default": "930", + "title": "Id", + "type": "string" + } + }, + "title": "_Pf", + "type": "object" + }, + "_Pfl": { + "description": "Model PFL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paraflocculus", + "default": "Paraflocculus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PFL", + "default": "PFL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1041", + "default": "1041", + "title": "Id", + "type": "string" + } + }, + "title": "_Pfl", + "type": "object" + }, + "_Pg": { + "description": "Model PG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pontine gray", + "default": "Pontine gray", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PG", + "default": "PG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "931", + "default": "931", + "title": "Id", + "type": "string" + } + }, + "title": "_Pg", + "type": "object" + }, + "_Pgrn": { + "description": "Model PGRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paragigantocellular reticular nucleus", + "default": "Paragigantocellular reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PGRN", + "default": "PGRN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "938", + "default": "938", + "title": "Id", + "type": "string" + } + }, + "title": "_Pgrn", + "type": "object" + }, + "_Pgrnd": { + "description": "Model PGRNd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paragigantocellular reticular nucleus, dorsal part", + "default": "Paragigantocellular reticular nucleus, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PGRNd", + "default": "PGRNd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "970", + "default": "970", + "title": "Id", + "type": "string" + } + }, + "title": "_Pgrnd", + "type": "object" + }, + "_Pgrnl": { + "description": "Model PGRNl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paragigantocellular reticular nucleus, lateral part", + "default": "Paragigantocellular reticular nucleus, lateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PGRNl", + "default": "PGRNl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "978", + "default": "978", + "title": "Id", + "type": "string" + } + }, + "title": "_Pgrnl", + "type": "object" + }, + "_Ph": { + "description": "Model PH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior hypothalamic nucleus", + "default": "Posterior hypothalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PH", + "default": "PH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "946", + "default": "946", + "title": "Id", + "type": "string" + } + }, + "title": "_Ph", + "type": "object" + }, + "_Phy": { + "description": "Model PHY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perihypoglossal nuclei", + "default": "Perihypoglossal nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PHY", + "default": "PHY", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "154", + "default": "154", + "title": "Id", + "type": "string" + } + }, + "title": "_Phy", + "type": "object" + }, + "_Pil": { + "description": "Model PIL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior intralaminar thalamic nucleus", + "default": "Posterior intralaminar thalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PIL", + "default": "PIL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "560581563", + "default": "560581563", + "title": "Id", + "type": "string" + } + }, + "title": "_Pil", + "type": "object" + }, + "_Pir": { + "description": "Model PIR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Piriform area", + "default": "Piriform area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PIR", + "default": "PIR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "961", + "default": "961", + "title": "Id", + "type": "string" + } + }, + "title": "_Pir", + "type": "object" + }, + "_Pl": { + "description": "Model PL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Prelimbic area", + "default": "Prelimbic area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PL", + "default": "PL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "972", + "default": "972", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl", + "type": "object" + }, + "_Pl1": { + "description": "Model PL1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Prelimbic area, layer 1", + "default": "Prelimbic area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PL1", + "default": "PL1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "171", + "default": "171", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl1", + "type": "object" + }, + "_Pl2_3": { + "description": "Model PL2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Prelimbic area, layer 2/3", + "default": "Prelimbic area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PL2/3", + "default": "PL2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "304", + "default": "304", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl2_3", + "type": "object" + }, + "_Pl5": { + "description": "Model PL5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Prelimbic area, layer 5", + "default": "Prelimbic area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PL5", + "default": "PL5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "363", + "default": "363", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl5", + "type": "object" + }, + "_Pl6A": { + "description": "Model PL6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Prelimbic area, layer 6a", + "default": "Prelimbic area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PL6a", + "default": "PL6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "84", + "default": "84", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl6A", + "type": "object" + }, + "_Pl6B": { + "description": "Model PL6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Prelimbic area, layer 6b", + "default": "Prelimbic area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PL6b", + "default": "PL6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "132", + "default": "132", + "title": "Id", + "type": "string" + } + }, + "title": "_Pl6B", + "type": "object" + }, + "_Placid_Industries": { + "description": "Model Placid Industries", + "properties": { + "name": { + "const": "Placid Industries", + "default": "Placid Industries", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Placid_Industries", + "type": "object" + }, + "_Pm": { + "description": "Model pm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "principal mammillary tract", + "default": "principal mammillary tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "pm", + "default": "pm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "753", + "default": "753", + "title": "Id", + "type": "string" + } + }, + "title": "_Pm", + "type": "object" + }, + "_Pmd": { + "description": "Model PMd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Dorsal premammillary nucleus", + "default": "Dorsal premammillary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PMd", + "default": "PMd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "980", + "default": "980", + "title": "Id", + "type": "string" + } + }, + "title": "_Pmd", + "type": "object" + }, + "_Pmv": { + "description": "Model PMv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Ventral premammillary nucleus", + "default": "Ventral premammillary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PMv", + "default": "PMv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1004", + "default": "1004", + "title": "Id", + "type": "string" + } + }, + "title": "_Pmv", + "type": "object" + }, + "_Pn": { + "description": "Model PN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paranigral nucleus", + "default": "Paranigral nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PN", + "default": "PN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "607344830", + "default": "607344830", + "title": "Id", + "type": "string" + } + }, + "title": "_Pn", + "type": "object" + }, + "_Po": { + "description": "Model PO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior complex of the thalamus", + "default": "Posterior complex of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PO", + "default": "PO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1020", + "default": "1020", + "title": "Id", + "type": "string" + } + }, + "title": "_Po", + "type": "object" + }, + "_Pol": { + "description": "Model POL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior limiting nucleus of the thalamus", + "default": "Posterior limiting nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "POL", + "default": "POL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1029", + "default": "1029", + "title": "Id", + "type": "string" + } + }, + "title": "_Pol", + "type": "object" + }, + "_Pophys": { + "additionalProperties": false, + "description": "Model pophys", + "properties": { + "name": { + "const": "Planar optical physiology", + "default": "Planar optical physiology", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "pophys", + "default": "pophys", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Pophys", + "type": "object" + }, + "_Por": { + "description": "Model POR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior olivary complex, periolivary region", + "default": "Superior olivary complex, periolivary region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "POR", + "default": "POR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "122", + "default": "122", + "title": "Id", + "type": "string" + } + }, + "title": "_Por", + "type": "object" + }, + "_Post": { + "description": "Model POST", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Postsubiculum", + "default": "Postsubiculum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "POST", + "default": "POST", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1037", + "default": "1037", + "title": "Id", + "type": "string" + } + }, + "title": "_Post", + "type": "object" + }, + "_Pot": { + "description": "Model PoT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior triangular thalamic nucleus", + "default": "Posterior triangular thalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PoT", + "default": "PoT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "563807435", + "default": "563807435", + "title": "Id", + "type": "string" + } + }, + "title": "_Pot", + "type": "object" + }, + "_Pp": { + "description": "Model PP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Peripeduncular nucleus", + "default": "Peripeduncular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PP", + "default": "PP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1044", + "default": "1044", + "title": "Id", + "type": "string" + } + }, + "title": "_Pp", + "type": "object" + }, + "_Ppn": { + "description": "Model PPN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pedunculopontine nucleus", + "default": "Pedunculopontine nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PPN", + "default": "PPN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1052", + "default": "1052", + "title": "Id", + "type": "string" + } + }, + "title": "_Ppn", + "type": "object" + }, + "_Ppt": { + "description": "Model PPT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior pretectal nucleus", + "default": "Posterior pretectal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PPT", + "default": "PPT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1061", + "default": "1061", + "title": "Id", + "type": "string" + } + }, + "title": "_Ppt", + "type": "object" + }, + "_Ppy": { + "description": "Model PPY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parapyramidal nucleus", + "default": "Parapyramidal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PPY", + "default": "PPY", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1069", + "default": "1069", + "title": "Id", + "type": "string" + } + }, + "title": "_Ppy", + "type": "object" + }, + "_Pr": { + "description": "Model PR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Perireunensis nucleus", + "default": "Perireunensis nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PR", + "default": "PR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1077", + "default": "1077", + "title": "Id", + "type": "string" + } + }, + "title": "_Pr", + "type": "object" + }, + "_Prc": { + "description": "Model PRC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Precommissural nucleus", + "default": "Precommissural nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRC", + "default": "PRC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "50", + "default": "50", + "title": "Id", + "type": "string" + } + }, + "title": "_Prc", + "type": "object" + }, + "_Pre": { + "description": "Model PRE", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Presubiculum", + "default": "Presubiculum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRE", + "default": "PRE", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1084", + "default": "1084", + "title": "Id", + "type": "string" + } + }, + "title": "_Pre", + "type": "object" + }, + "_Prizmatix": { + "description": "Model Prizmatix", + "properties": { + "name": { + "const": "Prizmatix", + "default": "Prizmatix", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Prizmatix", + "type": "object" + }, + "_Prm": { + "description": "Model PRM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paramedian lobule", + "default": "Paramedian lobule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRM", + "default": "PRM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1025", + "default": "1025", + "title": "Id", + "type": "string" + } + }, + "title": "_Prm", + "type": "object" + }, + "_Prnc": { + "description": "Model PRNc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pontine reticular nucleus, caudal part", + "default": "Pontine reticular nucleus, caudal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRNc", + "default": "PRNc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1093", + "default": "1093", + "title": "Id", + "type": "string" + } + }, + "title": "_Prnc", + "type": "object" + }, + "_Prnr": { + "description": "Model PRNr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pontine reticular nucleus", + "default": "Pontine reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRNr", + "default": "PRNr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "146", + "default": "146", + "title": "Id", + "type": "string" + } + }, + "title": "_Prnr", + "type": "object" + }, + "_Pros": { + "description": "Model ProS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Prosubiculum", + "default": "Prosubiculum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ProS", + "default": "ProS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682470", + "default": "484682470", + "title": "Id", + "type": "string" + } + }, + "title": "_Pros", + "type": "object" + }, + "_Prp": { + "description": "Model PRP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus prepositus", + "default": "Nucleus prepositus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRP", + "default": "PRP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "169", + "default": "169", + "title": "Id", + "type": "string" + } + }, + "title": "_Prp", + "type": "object" + }, + "_Prt": { + "description": "Model PRT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pretectal region", + "default": "Pretectal region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PRT", + "default": "PRT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1100", + "default": "1100", + "title": "Id", + "type": "string" + } + }, + "title": "_Prt", + "type": "object" + }, + "_Ps": { + "description": "Model PS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parastrial nucleus", + "default": "Parastrial nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PS", + "default": "PS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1109", + "default": "1109", + "title": "Id", + "type": "string" + } + }, + "title": "_Ps", + "type": "object" + }, + "_Pst": { + "description": "Model PST", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Preparasubthalamic nucleus", + "default": "Preparasubthalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PST", + "default": "PST", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "356", + "default": "356", + "title": "Id", + "type": "string" + } + }, + "title": "_Pst", + "type": "object" + }, + "_Pstn": { + "description": "Model PSTN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parasubthalamic nucleus", + "default": "Parasubthalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PSTN", + "default": "PSTN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "364", + "default": "364", + "title": "Id", + "type": "string" + } + }, + "title": "_Pstn", + "type": "object" + }, + "_Psv": { + "description": "Model PSV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Principal sensory nucleus of the trigeminal", + "default": "Principal sensory nucleus of the trigeminal", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PSV", + "default": "PSV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "7", + "default": "7", + "title": "Id", + "type": "string" + } + }, + "title": "_Psv", + "type": "object" + }, + "_Pt": { + "description": "Model PT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Parataenial nucleus", + "default": "Parataenial nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PT", + "default": "PT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "15", + "default": "15", + "title": "Id", + "type": "string" + } + }, + "title": "_Pt", + "type": "object" + }, + "_Ptlp": { + "description": "Model PTLp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Posterior parietal association areas", + "default": "Posterior parietal association areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PTLp", + "default": "PTLp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "22", + "default": "22", + "title": "Id", + "type": "string" + } + }, + "title": "_Ptlp", + "type": "object" + }, + "_Pva": { + "description": "Model PVa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periventricular hypothalamic nucleus, anterior part", + "default": "Periventricular hypothalamic nucleus, anterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVa", + "default": "PVa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "30", + "default": "30", + "title": "Id", + "type": "string" + } + }, + "title": "_Pva", + "type": "object" + }, + "_Pvh": { + "description": "Model PVH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paraventricular hypothalamic nucleus", + "default": "Paraventricular hypothalamic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVH", + "default": "PVH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "38", + "default": "38", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvh", + "type": "object" + }, + "_Pvhd": { + "description": "Model PVHd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paraventricular hypothalamic nucleus, descending division", + "default": "Paraventricular hypothalamic nucleus, descending division", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVHd", + "default": "PVHd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "63", + "default": "63", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvhd", + "type": "object" + }, + "_Pvi": { + "description": "Model PVi", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periventricular hypothalamic nucleus, intermediate part", + "default": "Periventricular hypothalamic nucleus, intermediate part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVi", + "default": "PVi", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "118", + "default": "118", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvi", + "type": "object" + }, + "_Pvp": { + "description": "Model PVp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periventricular hypothalamic nucleus, posterior part", + "default": "Periventricular hypothalamic nucleus, posterior part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVp", + "default": "PVp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "126", + "default": "126", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvp", + "type": "object" + }, + "_Pvpo": { + "description": "Model PVpo", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periventricular hypothalamic nucleus, preoptic part", + "default": "Periventricular hypothalamic nucleus, preoptic part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVpo", + "default": "PVpo", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "133", + "default": "133", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvpo", + "type": "object" + }, + "_Pvr": { + "description": "Model PVR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periventricular region", + "default": "Periventricular region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVR", + "default": "PVR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "141", + "default": "141", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvr", + "type": "object" + }, + "_Pvt": { + "description": "Model PVT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Paraventricular nucleus of the thalamus", + "default": "Paraventricular nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVT", + "default": "PVT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "149", + "default": "149", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvt", + "type": "object" + }, + "_Pvz": { + "description": "Model PVZ", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Periventricular zone", + "default": "Periventricular zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PVZ", + "default": "PVZ", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "157", + "default": "157", + "title": "Id", + "type": "string" + } + }, + "title": "_Pvz", + "type": "object" + }, + "_Py": { + "description": "Model py", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "pyramid", + "default": "pyramid", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "py", + "default": "py", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "190", + "default": "190", + "title": "Id", + "type": "string" + } + }, + "title": "_Py", + "type": "object" + }, + "_Pyd": { + "description": "Model pyd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "pyramidal decussation", + "default": "pyramidal decussation", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "pyd", + "default": "pyd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "198", + "default": "198", + "title": "Id", + "type": "string" + } + }, + "title": "_Pyd", + "type": "object" + }, + "_Pyr": { + "description": "Model PYR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Pyramus (VIII)", + "default": "Pyramus (VIII)", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "PYR", + "default": "PYR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "951", + "default": "951", + "title": "Id", + "type": "string" + } + }, + "title": "_Pyr", + "type": "object" + }, + "_Quantifi": { + "description": "Model Quantifi", + "properties": { + "name": { + "const": "Quantifi", + "default": "Quantifi", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Quantifi", + "type": "object" + }, + "_Ramb": { + "description": "Model RAmb", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain raphe nuclei", + "default": "Midbrain raphe nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RAmb", + "default": "RAmb", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "165", + "default": "165", + "title": "Id", + "type": "string" + } + }, + "title": "_Ramb", + "type": "object" + }, + "_Raspberry_Pi": { + "description": "Model Raspberry Pi", + "properties": { + "name": { + "const": "Raspberry Pi", + "default": "Raspberry Pi", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Raspberry_Pi", + "type": "object" + }, + "_Rch": { + "description": "Model RCH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrochiasmatic area", + "default": "Retrochiasmatic area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RCH", + "default": "RCH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "173", + "default": "173", + "title": "Id", + "type": "string" + } + }, + "title": "_Rch", + "type": "object" + }, + "_Re": { + "description": "Model RE", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus of reuniens", + "default": "Nucleus of reuniens", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RE", + "default": "RE", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "181", + "default": "181", + "title": "Id", + "type": "string" + } + }, + "title": "_Re", + "type": "object" + }, + "_Rh": { + "description": "Model RH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Rhomboid nucleus", + "default": "Rhomboid nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RH", + "default": "RH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "189", + "default": "189", + "title": "Id", + "type": "string" + } + }, + "title": "_Rh", + "type": "object" + }, + "_Rhp": { + "description": "Model RHP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrohippocampal region", + "default": "Retrohippocampal region", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RHP", + "default": "RHP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "822", + "default": "822", + "title": "Id", + "type": "string" + } + }, + "title": "_Rhp", + "type": "object" + }, + "_Rl": { + "description": "Model RL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Rostral linear nucleus raphe", + "default": "Rostral linear nucleus raphe", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RL", + "default": "RL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "197", + "default": "197", + "title": "Id", + "type": "string" + } + }, + "title": "_Rl", + "type": "object" + }, + "_Rm": { + "description": "Model RM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus raphe magnus", + "default": "Nucleus raphe magnus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RM", + "default": "RM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "206", + "default": "206", + "title": "Id", + "type": "string" + } + }, + "title": "_Rm", + "type": "object" + }, + "_Rn": { + "description": "Model RN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Red nucleus", + "default": "Red nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RN", + "default": "RN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "214", + "default": "214", + "title": "Id", + "type": "string" + } + }, + "title": "_Rn", + "type": "object" + }, + "_Ro": { + "description": "Model RO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus raphe obscurus", + "default": "Nucleus raphe obscurus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RO", + "default": "RO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "222", + "default": "222", + "title": "Id", + "type": "string" + } + }, + "title": "_Ro", + "type": "object" + }, + "_Root": { + "description": "Model root", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "root", + "default": "root", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "root", + "default": "root", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "997", + "default": "997", + "title": "Id", + "type": "string" + } + }, + "title": "_Root", + "type": "object" + }, + "_Ror": { + "additionalProperties": false, + "description": "Model ROR", + "properties": { + "name": { + "const": "Research Organization Registry", + "default": "Research Organization Registry", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "ROR", + "default": "ROR", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Ror", + "type": "object" + }, + "_Rpa": { + "description": "Model RPA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus raphe pallidus", + "default": "Nucleus raphe pallidus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RPA", + "default": "RPA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "230", + "default": "230", + "title": "Id", + "type": "string" + } + }, + "title": "_Rpa", + "type": "object" + }, + "_Rpf": { + "description": "Model RPF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retroparafascicular nucleus", + "default": "Retroparafascicular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RPF", + "default": "RPF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "549009203", + "default": "549009203", + "title": "Id", + "type": "string" + } + }, + "title": "_Rpf", + "type": "object" + }, + "_Rpo": { + "description": "Model RPO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus raphe pontis", + "default": "Nucleus raphe pontis", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RPO", + "default": "RPO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "238", + "default": "238", + "title": "Id", + "type": "string" + } + }, + "title": "_Rpo", + "type": "object" + }, + "_Rr": { + "description": "Model RR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Midbrain reticular nucleus, retrorubral area", + "default": "Midbrain reticular nucleus, retrorubral area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RR", + "default": "RR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "246", + "default": "246", + "title": "Id", + "type": "string" + } + }, + "title": "_Rr", + "type": "object" + }, + "_Rrid": { + "additionalProperties": false, + "description": "Model RRID", + "properties": { + "name": { + "const": "Research Resource Identifiers", + "default": "Research Resource Identifiers", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "RRID", + "default": "RRID", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Rrid", + "type": "object" + }, + "_Rsp": { + "description": "Model RSP", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area", + "default": "Retrosplenial area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSP", + "default": "RSP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "254", + "default": "254", + "title": "Id", + "type": "string" + } + }, + "title": "_Rsp", + "type": "object" + }, + "_Rspagl": { + "description": "Model RSPagl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, lateral agranular part", + "default": "Retrosplenial area, lateral agranular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPagl", + "default": "RSPagl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "894", + "default": "894", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspagl", + "type": "object" + }, + "_Rspagl1": { + "description": "Model RSPagl1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, lateral agranular part, layer 1", + "default": "Retrosplenial area, lateral agranular part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPagl1", + "default": "RSPagl1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "671", + "default": "671", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspagl1", + "type": "object" + }, + "_Rspagl2_3": { + "description": "Model RSPagl2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, lateral agranular part, layer 2/3", + "default": "Retrosplenial area, lateral agranular part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPagl2/3", + "default": "RSPagl2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "965", + "default": "965", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspagl2_3", + "type": "object" + }, + "_Rspagl5": { + "description": "Model RSPagl5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, lateral agranular part, layer 5", + "default": "Retrosplenial area, lateral agranular part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPagl5", + "default": "RSPagl5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "774", + "default": "774", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspagl5", + "type": "object" + }, + "_Rspagl6A": { + "description": "Model RSPagl6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, lateral agranular part, layer 6a", + "default": "Retrosplenial area, lateral agranular part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPagl6a", + "default": "RSPagl6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "906", + "default": "906", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspagl6A", + "type": "object" + }, + "_Rspagl6B": { + "description": "Model RSPagl6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, lateral agranular part, layer 6b", + "default": "Retrosplenial area, lateral agranular part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPagl6b", + "default": "RSPagl6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "279", + "default": "279", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspagl6B", + "type": "object" + }, + "_Rspd": { + "description": "Model RSPd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, dorsal part", + "default": "Retrosplenial area, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPd", + "default": "RSPd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "879", + "default": "879", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd", + "type": "object" + }, + "_Rspd1": { + "description": "Model RSPd1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, dorsal part, layer 1", + "default": "Retrosplenial area, dorsal part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPd1", + "default": "RSPd1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "442", + "default": "442", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd1", + "type": "object" + }, + "_Rspd2_3": { + "description": "Model RSPd2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, dorsal part, layer 2/3", + "default": "Retrosplenial area, dorsal part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPd2/3", + "default": "RSPd2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "434", + "default": "434", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd2_3", + "type": "object" + }, + "_Rspd4": { + "description": "Model RSPd4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, dorsal part, layer 4", + "default": "Retrosplenial area, dorsal part, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPd4", + "default": "RSPd4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "545", + "default": "545", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd4", + "type": "object" + }, + "_Rspd5": { + "description": "Model RSPd5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, dorsal part, layer 5", + "default": "Retrosplenial area, dorsal part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPd5", + "default": "RSPd5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "610", + "default": "610", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd5", + "type": "object" + }, + "_Rspd6A": { + "description": "Model RSPd6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, dorsal part, layer 6a", + "default": "Retrosplenial area, dorsal part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPd6a", + "default": "RSPd6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "274", + "default": "274", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd6A", + "type": "object" + }, + "_Rspd6B": { + "description": "Model RSPd6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, dorsal part, layer 6b", + "default": "Retrosplenial area, dorsal part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPd6b", + "default": "RSPd6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "330", + "default": "330", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspd6B", + "type": "object" + }, + "_Rspv": { + "description": "Model RSPv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, ventral part", + "default": "Retrosplenial area, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPv", + "default": "RSPv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "886", + "default": "886", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspv", + "type": "object" + }, + "_Rspv1": { + "description": "Model RSPv1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, ventral part, layer 1", + "default": "Retrosplenial area, ventral part, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPv1", + "default": "RSPv1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "542", + "default": "542", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspv1", + "type": "object" + }, + "_Rspv2_3": { + "description": "Model RSPv2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, ventral part, layer 2/3", + "default": "Retrosplenial area, ventral part, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPv2/3", + "default": "RSPv2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "430", + "default": "430", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspv2_3", + "type": "object" + }, + "_Rspv5": { + "description": "Model RSPv5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, ventral part, layer 5", + "default": "Retrosplenial area, ventral part, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPv5", + "default": "RSPv5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "687", + "default": "687", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspv5", + "type": "object" + }, + "_Rspv6A": { + "description": "Model RSPv6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, ventral part, layer 6a", + "default": "Retrosplenial area, ventral part, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPv6a", + "default": "RSPv6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "590", + "default": "590", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspv6A", + "type": "object" + }, + "_Rspv6B": { + "description": "Model RSPv6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Retrosplenial area, ventral part, layer 6b", + "default": "Retrosplenial area, ventral part, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RSPv6b", + "default": "RSPv6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "622", + "default": "622", + "title": "Id", + "type": "string" + } + }, + "title": "_Rspv6B", + "type": "object" + }, + "_Rt": { + "description": "Model RT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Reticular nucleus of the thalamus", + "default": "Reticular nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "RT", + "default": "RT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "262", + "default": "262", + "title": "Id", + "type": "string" + } + }, + "title": "_Rt", + "type": "object" + }, + "_Rust": { + "description": "Model rust", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "rubrospinal tract", + "default": "rubrospinal tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "rust", + "default": "rust", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "863", + "default": "863", + "title": "Id", + "type": "string" + } + }, + "title": "_Rust", + "type": "object" + }, + "_Sag": { + "description": "Model SAG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Nucleus sagulum", + "default": "Nucleus sagulum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SAG", + "default": "SAG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "271", + "default": "271", + "title": "Id", + "type": "string" + } + }, + "title": "_Sag", + "type": "object" + }, + "_Same_Sky": { + "description": "Model Same Sky", + "properties": { + "name": { + "const": "Same Sky", + "default": "Same Sky", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Same_Sky", + "type": "object" + }, + "_Samy": { + "description": "Model sAMY", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Striatum-like amygdalar nuclei", + "default": "Striatum-like amygdalar nuclei", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "sAMY", + "default": "sAMY", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "278", + "default": "278", + "title": "Id", + "type": "string" + } + }, + "title": "_Samy", + "type": "object" + }, + "_Sbpv": { + "description": "Model SBPV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subparaventricular zone", + "default": "Subparaventricular zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SBPV", + "default": "SBPV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "347", + "default": "347", + "title": "Id", + "type": "string" + } + }, + "title": "_Sbpv", + "type": "object" + }, + "_Scdg": { + "description": "Model SCdg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, motor related, deep gray layer", + "default": "Superior colliculus, motor related, deep gray layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCdg", + "default": "SCdg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "26", + "default": "26", + "title": "Id", + "type": "string" + } + }, + "title": "_Scdg", + "type": "object" + }, + "_Scdw": { + "description": "Model SCdw", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, motor related, deep white layer", + "default": "Superior colliculus, motor related, deep white layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCdw", + "default": "SCdw", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "42", + "default": "42", + "title": "Id", + "type": "string" + } + }, + "title": "_Scdw", + "type": "object" + }, + "_Sch": { + "description": "Model SCH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Suprachiasmatic nucleus", + "default": "Suprachiasmatic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCH", + "default": "SCH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "286", + "default": "286", + "title": "Id", + "type": "string" + } + }, + "title": "_Sch", + "type": "object" + }, + "_Schneider_Kreuznach": { + "description": "Model Schneider-Kreuznach", + "properties": { + "name": { + "const": "Schneider-Kreuznach", + "default": "Schneider-Kreuznach", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Schneider_Kreuznach", + "type": "object" + }, + "_Scig": { + "description": "Model SCig", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, motor related, intermediate gray layer", + "default": "Superior colliculus, motor related, intermediate gray layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCig", + "default": "SCig", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "10", + "default": "10", + "title": "Id", + "type": "string" + } + }, + "title": "_Scig", + "type": "object" + }, + "_Sciw": { + "description": "Model SCiw", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, motor related, intermediate white layer", + "default": "Superior colliculus, motor related, intermediate white layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCiw", + "default": "SCiw", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "17", + "default": "17", + "title": "Id", + "type": "string" + } + }, + "title": "_Sciw", + "type": "object" + }, + "_Scm": { + "description": "Model SCm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, motor related", + "default": "Superior colliculus, motor related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCm", + "default": "SCm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "294", + "default": "294", + "title": "Id", + "type": "string" + } + }, + "title": "_Scm", + "type": "object" + }, + "_Sco": { + "description": "Model SCO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subcommissural organ", + "default": "Subcommissural organ", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCO", + "default": "SCO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "599626923", + "default": "599626923", + "title": "Id", + "type": "string" + } + }, + "title": "_Sco", + "type": "object" + }, + "_Scop": { + "description": "Model SCop", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, optic layer", + "default": "Superior colliculus, optic layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCop", + "default": "SCop", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "851", + "default": "851", + "title": "Id", + "type": "string" + } + }, + "title": "_Scop", + "type": "object" + }, + "_Scp": { + "description": "Model scp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "superior cerebelar peduncles", + "default": "superior cerebelar peduncles", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "scp", + "default": "scp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "326", + "default": "326", + "title": "Id", + "type": "string" + } + }, + "title": "_Scp", + "type": "object" + }, + "_Scs": { + "description": "Model SCs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, sensory related", + "default": "Superior colliculus, sensory related", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCs", + "default": "SCs", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "302", + "default": "302", + "title": "Id", + "type": "string" + } + }, + "title": "_Scs", + "type": "object" + }, + "_Scsg": { + "description": "Model SCsg", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, superficial gray layer", + "default": "Superior colliculus, superficial gray layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCsg", + "default": "SCsg", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "842", + "default": "842", + "title": "Id", + "type": "string" + } + }, + "title": "_Scsg", + "type": "object" + }, + "_Sctd": { + "description": "Model sctd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "dorsal spinocerebellar tract", + "default": "dorsal spinocerebellar tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "sctd", + "default": "sctd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "553", + "default": "553", + "title": "Id", + "type": "string" + } + }, + "title": "_Sctd", + "type": "object" + }, + "_Sctv": { + "description": "Model sctv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "ventral spinocerebellar tract", + "default": "ventral spinocerebellar tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "sctv", + "default": "sctv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "866", + "default": "866", + "title": "Id", + "type": "string" + } + }, + "title": "_Sctv", + "type": "object" + }, + "_Scwm": { + "description": "Model scwm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "supra-callosal cerebral white matter", + "default": "supra-callosal cerebral white matter", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "scwm", + "default": "scwm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "484682512", + "default": "484682512", + "title": "Id", + "type": "string" + } + }, + "title": "_Scwm", + "type": "object" + }, + "_Sczo": { + "description": "Model SCzo", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior colliculus, zonal layer", + "default": "Superior colliculus, zonal layer", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SCzo", + "default": "SCzo", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "834", + "default": "834", + "title": "Id", + "type": "string" + } + }, + "title": "_Sczo", + "type": "object" + }, + "_Second_Order_Effects": { + "description": "Model Second Order Effects", + "properties": { + "name": { + "const": "Second Order Effects", + "default": "Second Order Effects", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Second_Order_Effects", + "type": "object" + }, + "_Semrock": { + "description": "Model Semrock", + "properties": { + "name": { + "const": "Semrock", + "default": "Semrock", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Semrock", + "type": "object" + }, + "_Sez": { + "description": "Model SEZ", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "subependymal zone", + "default": "subependymal zone", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SEZ", + "default": "SEZ", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "98", + "default": "98", + "title": "Id", + "type": "string" + } + }, + "title": "_Sez", + "type": "object" + }, + "_Sf": { + "description": "Model SF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Septofimbrial nucleus", + "default": "Septofimbrial nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SF", + "default": "SF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "310", + "default": "310", + "title": "Id", + "type": "string" + } + }, + "title": "_Sf", + "type": "object" + }, + "_Sfo": { + "description": "Model SFO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subfornical organ", + "default": "Subfornical organ", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SFO", + "default": "SFO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "338", + "default": "338", + "title": "Id", + "type": "string" + } + }, + "title": "_Sfo", + "type": "object" + }, + "_Sg": { + "description": "Model SG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Supragenual nucleus", + "default": "Supragenual nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SG", + "default": "SG", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "318", + "default": "318", + "title": "Id", + "type": "string" + } + }, + "title": "_Sg", + "type": "object" + }, + "_Sgn": { + "description": "Model SGN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Suprageniculate nucleus", + "default": "Suprageniculate nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SGN", + "default": "SGN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "325", + "default": "325", + "title": "Id", + "type": "string" + } + }, + "title": "_Sgn", + "type": "object" + }, + "_Sh": { + "description": "Model SH", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Septohippocampal nucleus", + "default": "Septohippocampal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SH", + "default": "SH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "333", + "default": "333", + "title": "Id", + "type": "string" + } + }, + "title": "_Sh", + "type": "object" + }, + "_Si": { + "description": "Model SI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Substantia innominata", + "default": "Substantia innominata", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SI", + "default": "SI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "342", + "default": "342", + "title": "Id", + "type": "string" + } + }, + "title": "_Si", + "type": "object" + }, + "_Sicgen": { + "description": "Model SICGEN", + "properties": { + "name": { + "const": "SICGEN", + "default": "SICGEN", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Sicgen", + "type": "object" + }, + "_Sigma_Aldrich": { + "description": "Model Sigma-Aldrich", + "properties": { + "name": { + "const": "Sigma-Aldrich", + "default": "Sigma-Aldrich", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Sigma_Aldrich", + "type": "object" + }, + "_Sim": { + "description": "Model SIM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Simple lobule", + "default": "Simple lobule", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SIM", + "default": "SIM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1007", + "default": "1007", + "title": "Id", + "type": "string" + } + }, + "title": "_Sim", + "type": "object" + }, + "_Simons_Foundation": { + "description": "Model Simons Foundation", + "properties": { + "name": { + "const": "Simons Foundation", + "default": "Simons Foundation", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "type": "null" + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], + "title": "Registry" + }, + "registry_identifier": { + "const": "01cmst727", + "default": "01cmst727", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Simons_Foundation", + "type": "object" + }, + "_Slap": { + "additionalProperties": false, + "description": "Model slap", + "properties": { + "name": { + "const": "Scanned line projection imaging", + "default": "Scanned line projection imaging", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "slap", + "default": "slap", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Slap", + "type": "object" + }, + "_Slc": { + "description": "Model SLC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subceruleus nucleus", + "default": "Subceruleus nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SLC", + "default": "SLC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "350", + "default": "350", + "title": "Id", + "type": "string" + } + }, + "title": "_Slc", + "type": "object" + }, + "_Sld": { + "description": "Model SLD", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Sublaterodorsal nucleus", + "default": "Sublaterodorsal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SLD", + "default": "SLD", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "358", + "default": "358", + "title": "Id", + "type": "string" + } + }, + "title": "_Sld", + "type": "object" + }, + "_Sm": { + "description": "Model sm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "stria medullaris", + "default": "stria medullaris", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "sm", + "default": "sm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "802", + "default": "802", + "title": "Id", + "type": "string" + } + }, + "title": "_Sm", + "type": "object" + }, + "_Smt": { + "description": "Model SMT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Submedial nucleus of the thalamus", + "default": "Submedial nucleus of the thalamus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SMT", + "default": "SMT", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "366", + "default": "366", + "title": "Id", + "type": "string" + } + }, + "title": "_Smt", + "type": "object" + }, + "_Snc": { + "description": "Model SNc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Substantia nigra, compact part", + "default": "Substantia nigra, compact part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SNc", + "default": "SNc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "374", + "default": "374", + "title": "Id", + "type": "string" + } + }, + "title": "_Snc", + "type": "object" + }, + "_Snr": { + "description": "Model SNr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Substantia nigra, reticular part", + "default": "Substantia nigra, reticular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SNr", + "default": "SNr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "381", + "default": "381", + "title": "Id", + "type": "string" + } + }, + "title": "_Snr", + "type": "object" + }, + "_So": { + "description": "Model SO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Supraoptic nucleus", + "default": "Supraoptic nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SO", + "default": "SO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "390", + "default": "390", + "title": "Id", + "type": "string" + } + }, + "title": "_So", + "type": "object" + }, + "_Soc": { + "description": "Model SOC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior olivary complex", + "default": "Superior olivary complex", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SOC", + "default": "SOC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "398", + "default": "398", + "title": "Id", + "type": "string" + } + }, + "title": "_Soc", + "type": "object" + }, + "_Socl": { + "description": "Model SOCl", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior olivary complex, lateral part", + "default": "Superior olivary complex, lateral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SOCl", + "default": "SOCl", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "114", + "default": "114", + "title": "Id", + "type": "string" + } + }, + "title": "_Socl", + "type": "object" + }, + "_Socm": { + "description": "Model SOCm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Superior olivary complex, medial part", + "default": "Superior olivary complex, medial part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SOCm", + "default": "SOCm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "105", + "default": "105", + "title": "Id", + "type": "string" + } + }, + "title": "_Socm", + "type": "object" + }, + "_Spa": { + "description": "Model SPA", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subparafascicular area", + "default": "Subparafascicular area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPA", + "default": "SPA", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "609", + "default": "609", + "title": "Id", + "type": "string" + } + }, + "title": "_Spa", + "type": "object" + }, + "_Spf": { + "description": "Model SPF", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subparafascicular nucleus", + "default": "Subparafascicular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPF", + "default": "SPF", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "406", + "default": "406", + "title": "Id", + "type": "string" + } + }, + "title": "_Spf", + "type": "object" + }, + "_Spfm": { + "description": "Model SPFm", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subparafascicular nucleus, magnocellular part", + "default": "Subparafascicular nucleus, magnocellular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPFm", + "default": "SPFm", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "414", + "default": "414", + "title": "Id", + "type": "string" + } + }, + "title": "_Spfm", + "type": "object" + }, + "_Spfp": { + "description": "Model SPFp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Subparafascicular nucleus, parvicellular part", + "default": "Subparafascicular nucleus, parvicellular part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPFp", + "default": "SPFp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "422", + "default": "422", + "title": "Id", + "type": "string" + } + }, + "title": "_Spfp", + "type": "object" + }, + "_Spim": { + "additionalProperties": false, + "description": "Model SPIM", + "properties": { + "name": { + "const": "Selective plane illumination microscopy", + "default": "Selective plane illumination microscopy", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": "SPIM", + "default": "SPIM", + "title": "Abbreviation", + "type": "string" + } + }, + "title": "_Spim", + "type": "object" + }, + "_Spinnaker": { + "description": "Model Spinnaker", + "properties": { + "name": { + "const": "Spinnaker", + "default": "Spinnaker", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, "default": null, - "title": "Manufacturer" + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Spinnaker", + "type": "object" + }, + "_Spiv": { + "description": "Model SPIV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Spinal vestibular nucleus", + "default": "Spinal vestibular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPIV", + "default": "SPIV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "225", + "default": "225", + "title": "Id", + "type": "string" + } + }, + "title": "_Spiv", + "type": "object" + }, + "_Sptv": { + "description": "Model sptV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "spinal tract of the trigeminal nerve", + "default": "spinal tract of the trigeminal nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "sptV", + "default": "sptV", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "794", + "default": "794", + "title": "Id", + "type": "string" + } + }, + "title": "_Sptv", + "type": "object" + }, + "_Spvc": { + "description": "Model SPVC", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Spinal nucleus of the trigeminal, caudal part", + "default": "Spinal nucleus of the trigeminal, caudal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPVC", + "default": "SPVC", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "429", + "default": "429", + "title": "Id", + "type": "string" + } + }, + "title": "_Spvc", + "type": "object" + }, + "_Spvi": { + "description": "Model SPVI", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Spinal nucleus of the trigeminal, interpolar part", + "default": "Spinal nucleus of the trigeminal, interpolar part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPVI", + "default": "SPVI", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "437", + "default": "437", + "title": "Id", + "type": "string" + } + }, + "title": "_Spvi", + "type": "object" + }, + "_Spvo": { + "description": "Model SPVO", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Spinal nucleus of the trigeminal, oral part", + "default": "Spinal nucleus of the trigeminal, oral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SPVO", + "default": "SPVO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "445", + "default": "445", + "title": "Id", + "type": "string" + } + }, + "title": "_Spvo", + "type": "object" + }, + "_Ss": { + "description": "Model SS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Somatosensory areas", + "default": "Somatosensory areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SS", + "default": "SS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "453", + "default": "453", + "title": "Id", + "type": "string" + } + }, + "title": "_Ss", + "type": "object" + }, + "_Ssp": { + "description": "Model SSp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area", + "default": "Primary somatosensory area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp", + "default": "SSp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "322", + "default": "322", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp", + "type": "object" + }, + "_Ssp_Bfd": { + "description": "Model SSp-bfd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field", + "default": "Primary somatosensory area, barrel field", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd", + "default": "SSp-bfd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "329", + "default": "329", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd", + "type": "object" + }, + "_Ssp_Bfd1": { + "description": "Model SSp-bfd1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field, layer 1", + "default": "Primary somatosensory area, barrel field, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd1", + "default": "SSp-bfd1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "981", + "default": "981", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd1", + "type": "object" + }, + "_Ssp_Bfd2_3": { + "description": "Model SSp-bfd2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field, layer 2/3", + "default": "Primary somatosensory area, barrel field, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd2/3", + "default": "SSp-bfd2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "201", + "default": "201", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd2_3", + "type": "object" + }, + "_Ssp_Bfd4": { + "description": "Model SSp-bfd4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field, layer 4", + "default": "Primary somatosensory area, barrel field, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd4", + "default": "SSp-bfd4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1047", + "default": "1047", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd4", + "type": "object" + }, + "_Ssp_Bfd5": { + "description": "Model SSp-bfd5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field, layer 5", + "default": "Primary somatosensory area, barrel field, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd5", + "default": "SSp-bfd5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1070", + "default": "1070", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd5", + "type": "object" + }, + "_Ssp_Bfd6A": { + "description": "Model SSp-bfd6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field, layer 6a", + "default": "Primary somatosensory area, barrel field, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd6a", + "default": "SSp-bfd6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1038", + "default": "1038", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd6A", + "type": "object" + }, + "_Ssp_Bfd6B": { + "description": "Model SSp-bfd6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, barrel field, layer 6b", + "default": "Primary somatosensory area, barrel field, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-bfd6b", + "default": "SSp-bfd6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1062", + "default": "1062", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Bfd6B", + "type": "object" + }, + "_Ssp_Ll": { + "description": "Model SSp-ll", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, lower limb", + "default": "Primary somatosensory area, lower limb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ll", + "default": "SSp-ll", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "337", + "default": "337", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll", + "type": "object" + }, + "_Ssp_Ll1": { + "description": "Model SSp-ll1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, lower limb, layer 1", + "default": "Primary somatosensory area, lower limb, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ll1", + "default": "SSp-ll1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1030", + "default": "1030", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll1", + "type": "object" + }, + "_Ssp_Ll2_3": { + "description": "Model SSp-ll2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, lower limb, layer 2/3", + "default": "Primary somatosensory area, lower limb, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ll2/3", + "default": "SSp-ll2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "113", + "default": "113", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll2_3", + "type": "object" + }, + "_Ssp_Ll4": { + "description": "Model SSp-ll4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, lower limb, layer 4", + "default": "Primary somatosensory area, lower limb, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ll4", + "default": "SSp-ll4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1094", + "default": "1094", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll4", + "type": "object" + }, + "_Ssp_Ll5": { + "description": "Model SSp-ll5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, lower limb, layer 5", + "default": "Primary somatosensory area, lower limb, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ll5", + "default": "SSp-ll5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1128", + "default": "1128", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll5", + "type": "object" + }, + "_Ssp_Ll6A": { + "description": "Model SSp-ll6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, lower limb, layer 6a", + "default": "Primary somatosensory area, lower limb, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ll6a", + "default": "SSp-ll6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "478", + "default": "478", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll6A", + "type": "object" + }, + "_Ssp_Ll6B": { + "description": "Model SSp-ll6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, lower limb, layer 6b", + "default": "Primary somatosensory area, lower limb, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ll6b", + "default": "SSp-ll6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "510", + "default": "510", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ll6B", + "type": "object" + }, + "_Ssp_M": { + "description": "Model SSp-m", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth", + "default": "Primary somatosensory area, mouth", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m", + "default": "SSp-m", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "345", + "default": "345", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M", + "type": "object" + }, + "_Ssp_M1": { + "description": "Model SSp-m1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth, layer 1", + "default": "Primary somatosensory area, mouth, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m1", + "default": "SSp-m1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "878", + "default": "878", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M1", + "type": "object" + }, + "_Ssp_M2_3": { + "description": "Model SSp-m2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth, layer 2/3", + "default": "Primary somatosensory area, mouth, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m2/3", + "default": "SSp-m2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "657", + "default": "657", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M2_3", + "type": "object" + }, + "_Ssp_M4": { + "description": "Model SSp-m4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth, layer 4", + "default": "Primary somatosensory area, mouth, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m4", + "default": "SSp-m4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "950", + "default": "950", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M4", + "type": "object" + }, + "_Ssp_M5": { + "description": "Model SSp-m5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth, layer 5", + "default": "Primary somatosensory area, mouth, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m5", + "default": "SSp-m5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "974", + "default": "974", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M5", + "type": "object" + }, + "_Ssp_M6A": { + "description": "Model SSp-m6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth, layer 6a", + "default": "Primary somatosensory area, mouth, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m6a", + "default": "SSp-m6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1102", + "default": "1102", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M6A", + "type": "object" + }, + "_Ssp_M6B": { + "description": "Model SSp-m6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, mouth, layer 6b", + "default": "Primary somatosensory area, mouth, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-m6b", + "default": "SSp-m6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "2", + "default": "2", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_M6B", + "type": "object" + }, + "_Ssp_N": { + "description": "Model SSp-n", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose", + "default": "Primary somatosensory area, nose", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n", + "default": "SSp-n", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "353", + "default": "353", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N", + "type": "object" + }, + "_Ssp_N1": { + "description": "Model SSp-n1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 1", + "default": "Primary somatosensory area, nose, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n1", + "default": "SSp-n1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "558", + "default": "558", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N1", + "type": "object" + }, + "_Ssp_N2_3": { + "description": "Model SSp-n2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 2/3", + "default": "Primary somatosensory area, nose, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n2/3", + "default": "SSp-n2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "838", + "default": "838", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N2_3", + "type": "object" + }, + "_Ssp_N4": { + "description": "Model SSp-n4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 4", + "default": "Primary somatosensory area, nose, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n4", + "default": "SSp-n4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "654", + "default": "654", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N4", + "type": "object" + }, + "_Ssp_N5": { + "description": "Model SSp-n5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 5", + "default": "Primary somatosensory area, nose, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n5", + "default": "SSp-n5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "702", + "default": "702", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N5", + "type": "object" + }, + "_Ssp_N6A": { + "description": "Model SSp-n6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 6a", + "default": "Primary somatosensory area, nose, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n6a", + "default": "SSp-n6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "889", + "default": "889", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N6A", + "type": "object" + }, + "_Ssp_N6B": { + "description": "Model SSp-n6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, nose, layer 6b", + "default": "Primary somatosensory area, nose, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-n6b", + "default": "SSp-n6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "929", + "default": "929", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_N6B", + "type": "object" + }, + "_Ssp_Tr": { + "description": "Model SSp-tr", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk", + "default": "Primary somatosensory area, trunk", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr", + "default": "SSp-tr", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "361", + "default": "361", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr", + "type": "object" + }, + "_Ssp_Tr1": { + "description": "Model SSp-tr1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 1", + "default": "Primary somatosensory area, trunk, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr1", + "default": "SSp-tr1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1006", + "default": "1006", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr1", + "type": "object" + }, + "_Ssp_Tr2_3": { + "description": "Model SSp-tr2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 2/3", + "default": "Primary somatosensory area, trunk, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr2/3", + "default": "SSp-tr2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "670", + "default": "670", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr2_3", + "type": "object" + }, + "_Ssp_Tr4": { + "description": "Model SSp-tr4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 4", + "default": "Primary somatosensory area, trunk, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr4", + "default": "SSp-tr4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1086", + "default": "1086", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr4", + "type": "object" + }, + "_Ssp_Tr5": { + "description": "Model SSp-tr5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 5", + "default": "Primary somatosensory area, trunk, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr5", + "default": "SSp-tr5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1111", + "default": "1111", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr5", + "type": "object" + }, + "_Ssp_Tr6A": { + "description": "Model SSp-tr6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 6a", + "default": "Primary somatosensory area, trunk, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr6a", + "default": "SSp-tr6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "9", + "default": "9", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr6A", + "type": "object" + }, + "_Ssp_Tr6B": { + "description": "Model SSp-tr6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, trunk, layer 6b", + "default": "Primary somatosensory area, trunk, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-tr6b", + "default": "SSp-tr6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "461", + "default": "461", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Tr6B", + "type": "object" + }, + "_Ssp_Ul": { + "description": "Model SSp-ul", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, upper limb", + "default": "Primary somatosensory area, upper limb", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ul", + "default": "SSp-ul", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "369", + "default": "369", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ul", + "type": "object" + }, + "_Ssp_Ul1": { + "description": "Model SSp-ul1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Model" + "name": { + "const": "Primary somatosensory area, upper limb, layer 1", + "default": "Primary somatosensory area, upper limb, layer 1", + "title": "Name", + "type": "string" }, - "path_to_cad": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "For CUSTOM manufactured devices", - "title": "Path to CAD diagram" + "acronym": { + "const": "SSp-ul1", + "default": "SSp-ul1", + "title": "Acronym", + "type": "string" }, - "port_index": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Port index" + "id": { + "const": "450", + "default": "450", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ul1", + "type": "object" + }, + "_Ssp_Ul2_3": { + "description": "Model SSp-ul2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "additional_settings": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Additional parameters" + "name": { + "const": "Primary somatosensory area, upper limb, layer 2/3", + "default": "Primary somatosensory area, upper limb, layer 2/3", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "SSp-ul2/3", + "default": "SSp-ul2/3", + "title": "Acronym", + "type": "string" }, - "scanner_location": { - "$ref": "#/$defs/ScannerLocation", - "title": "Scanner location" + "id": { + "const": "854", + "default": "854", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ul2_3", + "type": "object" + }, + "_Ssp_Ul4": { + "description": "Model SSp-ul4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "magnetic_strength": { - "$ref": "#/$defs/MagneticStrength", - "title": "Magnetic strength (T)" + "name": { + "const": "Primary somatosensory area, upper limb, layer 4", + "default": "Primary somatosensory area, upper limb, layer 4", + "title": "Name", + "type": "string" }, - "magnetic_strength_unit": { - "default": "T", - "title": "Magnetic strength unit", + "acronym": { + "const": "SSp-ul4", + "default": "SSp-ul4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "577", + "default": "577", + "title": "Id", "type": "string" } }, - "required": [ - "name", - "scanner_location", - "magnetic_strength" - ], - "title": "Scanner", + "title": "_Ssp_Ul4", "type": "object" }, - "ScannerLocation": { - "description": "location of scanner", - "enum": [ - "Fred Hutch", - "UW SLU" - ], - "title": "ScannerLocation", - "type": "string" + "_Ssp_Ul5": { + "description": "Model SSp-ul5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, upper limb, layer 5", + "default": "Primary somatosensory area, upper limb, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ul5", + "default": "SSp-ul5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "625", + "default": "625", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ul5", + "type": "object" }, - "SizeUnit": { - "description": "Enumeration of Length Measurements", - "enum": [ - "meter", - "centimeter", - "millimeter", - "micrometer", - "nanometer", - "inch", - "pixel" - ], - "title": "SizeUnit", - "type": "string" + "_Ssp_Ul6A": { + "description": "Model SSp-ul6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, upper limb, layer 6a", + "default": "Primary somatosensory area, upper limb, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-ul6a", + "default": "SSp-ul6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "945", + "default": "945", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ul6A", + "type": "object" }, - "SlapFieldOfView": { - "additionalProperties": false, - "description": "Description of a Slap2 scan", + "_Ssp_Ul6B": { + "description": "Model SSp-ul6b", "properties": { - "index": { - "title": "Index", - "type": "integer" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "imaging_depth": { - "title": "Imaging depth (um)", - "type": "integer" + "name": { + "const": "Primary somatosensory area, upper limb, layer 6b", + "default": "Primary somatosensory area, upper limb, layer 6b", + "title": "Name", + "type": "string" }, - "imaging_depth_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Imaging depth unit" + "acronym": { + "const": "SSp-ul6b", + "default": "SSp-ul6b", + "title": "Acronym", + "type": "string" }, - "targeted_structure": { - "title": "Targeted structure", + "id": { + "const": "1026", + "default": "1026", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Ul6B", + "type": "object" + }, + "_Ssp_Un": { + "description": "Model SSp-un", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "fov_coordinate_ml": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "FOV coordinate ML" + "name": { + "const": "Primary somatosensory area, unassigned", + "default": "Primary somatosensory area, unassigned", + "title": "Name", + "type": "string" }, - "fov_coordinate_ap": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "FOV coordinate AP" + "acronym": { + "const": "SSp-un", + "default": "SSp-un", + "title": "Acronym", + "type": "string" }, - "fov_coordinate_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "FOV coordinate unit" + "id": { + "const": "182305689", + "default": "182305689", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Un", + "type": "object" + }, + "_Ssp_Un1": { + "description": "Model SSp-un1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "fov_reference": { - "description": "Reference for ML/AP coordinates", - "title": "FOV reference", + "name": { + "const": "Primary somatosensory area, unassigned, layer 1", + "default": "Primary somatosensory area, unassigned, layer 1", + "title": "Name", "type": "string" }, - "fov_width": { - "title": "FOV width (pixels)", - "type": "integer" + "acronym": { + "const": "SSp-un1", + "default": "SSp-un1", + "title": "Acronym", + "type": "string" }, - "fov_height": { - "title": "FOV height (pixels)", - "type": "integer" + "id": { + "const": "182305693", + "default": "182305693", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Un1", + "type": "object" + }, + "_Ssp_Un2_3": { + "description": "Model SSp-un2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, unassigned, layer 2/3", + "default": "Primary somatosensory area, unassigned, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-un2/3", + "default": "SSp-un2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "182305697", + "default": "182305697", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Un2_3", + "type": "object" + }, + "_Ssp_Un4": { + "description": "Model SSp-un4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Primary somatosensory area, unassigned, layer 4", + "default": "Primary somatosensory area, unassigned, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "SSp-un4", + "default": "SSp-un4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "182305701", + "default": "182305701", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Un4", + "type": "object" + }, + "_Ssp_Un5": { + "description": "Model SSp-un5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "fov_size_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "pixel", - "title": "FOV size unit" + "name": { + "const": "Primary somatosensory area, unassigned, layer 5", + "default": "Primary somatosensory area, unassigned, layer 5", + "title": "Name", + "type": "string" }, - "magnification": { - "title": "Magnification", + "acronym": { + "const": "SSp-un5", + "default": "SSp-un5", + "title": "Acronym", "type": "string" }, - "fov_scale_factor": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "FOV scale factor (um/pixel)" + "id": { + "const": "182305705", + "default": "182305705", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Un5", + "type": "object" + }, + "_Ssp_Un6A": { + "description": "Model SSp-un6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "fov_scale_factor_unit": { - "default": "um/pixel", - "title": "FOV scale factor unit", + "name": { + "const": "Primary somatosensory area, unassigned, layer 6a", + "default": "Primary somatosensory area, unassigned, layer 6a", + "title": "Name", "type": "string" }, - "frame_rate": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Frame rate (Hz)" + "acronym": { + "const": "SSp-un6a", + "default": "SSp-un6a", + "title": "Acronym", + "type": "string" }, - "frame_rate_unit": { - "$ref": "#/$defs/FrequencyUnit", - "default": "hertz", - "title": "Frame rate unit" + "id": { + "const": "182305709", + "default": "182305709", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Un6A", + "type": "object" + }, + "_Ssp_Un6B": { + "description": "Model SSp-un6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "coupled_fov_index": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "default": null, - "description": "Coupled planes for multiscope", - "title": "Coupled FOV" + "name": { + "const": "Primary somatosensory area, unassigned, layer 6b", + "default": "Primary somatosensory area, unassigned, layer 6b", + "title": "Name", + "type": "string" }, - "power": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "For coupled planes, this power is shared by both planes", - "title": "Power" + "acronym": { + "const": "SSp-un6b", + "default": "SSp-un6b", + "title": "Acronym", + "type": "string" }, - "power_unit": { - "$ref": "#/$defs/PowerUnit", - "default": "percent", - "title": "Power unit" + "id": { + "const": "182305713", + "default": "182305713", + "title": "Id", + "type": "string" + } + }, + "title": "_Ssp_Un6B", + "type": "object" + }, + "_Sss": { + "description": "Model SSs", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "power_ratio": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Power ratio for coupled planes" + "name": { + "const": "Supplemental somatosensory area", + "default": "Supplemental somatosensory area", + "title": "Name", + "type": "string" }, - "scanfield_z": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Z stage position of the fastz actuator for a given targeted depth" + "acronym": { + "const": "SSs", + "default": "SSs", + "title": "Acronym", + "type": "string" }, - "scanfield_z_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Z stage position unit" + "id": { + "const": "378", + "default": "378", + "title": "Id", + "type": "string" + } + }, + "title": "_Sss", + "type": "object" + }, + "_Sss1": { + "description": "Model SSs1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "scanimage_roi_index": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "default": null, - "title": "ScanImage ROI index" + "name": { + "const": "Supplemental somatosensory area, layer 1", + "default": "Supplemental somatosensory area, layer 1", + "title": "Name", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "acronym": { + "const": "SSs1", + "default": "SSs1", + "title": "Acronym", + "type": "string" }, - "session_type": { - "$ref": "#/$defs/SlapSessionType", - "title": "Session type" + "id": { + "const": "873", + "default": "873", + "title": "Id", + "type": "string" + } + }, + "title": "_Sss1", + "type": "object" + }, + "_Sss2_3": { + "description": "Model SSs2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "dmd_dilation_x": { - "title": "DMD Dilation X (pixels)", - "type": "integer" + "name": { + "const": "Supplemental somatosensory area, layer 2/3", + "default": "Supplemental somatosensory area, layer 2/3", + "title": "Name", + "type": "string" }, - "dmd_dilation_y": { - "title": "DMD Dilation Y (pixels)", - "type": "integer" + "acronym": { + "const": "SSs2/3", + "default": "SSs2/3", + "title": "Acronym", + "type": "string" }, - "dilation_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "pixel", - "title": "Dilation unit" + "id": { + "const": "806", + "default": "806", + "title": "Id", + "type": "string" + } + }, + "title": "_Sss2_3", + "type": "object" + }, + "_Sss4": { + "description": "Model SSs4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "target_neuron": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Target neuron" + "name": { + "const": "Supplemental somatosensory area, layer 4", + "default": "Supplemental somatosensory area, layer 4", + "title": "Name", + "type": "string" }, - "target_branch": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Target branch" + "acronym": { + "const": "SSs4", + "default": "SSs4", + "title": "Acronym", + "type": "string" }, - "path_to_array_of_frame_rates": { - "title": "Array of frame rates", + "id": { + "const": "1035", + "default": "1035", + "title": "Id", "type": "string" } }, - "required": [ - "index", - "imaging_depth", - "targeted_structure", - "fov_coordinate_ml", - "fov_coordinate_ap", - "fov_reference", - "fov_width", - "fov_height", - "magnification", - "fov_scale_factor", - "session_type", - "dmd_dilation_x", - "dmd_dilation_y", - "path_to_array_of_frame_rates" - ], - "title": "SlapFieldOfView", + "title": "_Sss4", "type": "object" }, - "SlapSessionType": { - "description": "Type of slap session", - "enum": [ - "Parent", - "Branch" - ], - "title": "SlapSessionType", - "type": "string" - }, - "Software": { - "additionalProperties": false, - "description": "Description of generic software", + "_Sss5": { + "description": "Model SSs5", "properties": { - "name": { - "title": "Software name", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "version": { - "title": "Software version", + "name": { + "const": "Supplemental somatosensory area, layer 5", + "default": "Supplemental somatosensory area, layer 5", + "title": "Name", "type": "string" }, - "url": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "URL to commit being used" + "acronym": { + "const": "SSs5", + "default": "SSs5", + "title": "Acronym", + "type": "string" }, - "parameters": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Software parameters" + "id": { + "const": "1090", + "default": "1090", + "title": "Id", + "type": "string" } }, - "required": [ - "name", - "version" - ], - "title": "Software", + "title": "_Sss5", "type": "object" }, - "SoundIntensityUnit": { - "const": "decibels", - "description": "Sound intensity units", - "enum": [ - "decibels" - ], - "title": "SoundIntensityUnit", - "type": "string" - }, - "SpeakerConfig": { - "additionalProperties": false, - "description": "Description of auditory speaker configuration", + "_Sss6A": { + "description": "Model SSs6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "description": "Must match rig json", + "const": "Supplemental somatosensory area, layer 6a", + "default": "Supplemental somatosensory area, layer 6a", "title": "Name", "type": "string" }, - "volume": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Volume (dB)" + "acronym": { + "const": "SSs6a", + "default": "SSs6a", + "title": "Acronym", + "type": "string" }, - "volume_unit": { - "$ref": "#/$defs/SoundIntensityUnit", - "default": "decibels", - "title": "Volume unit" + "id": { + "const": "862", + "default": "862", + "title": "Id", + "type": "string" } }, - "required": [ - "name" - ], - "title": "SpeakerConfig", + "title": "_Sss6A", "type": "object" }, - "SpoutSide": { - "description": "Spout sides", - "enum": [ - "Left", - "Right", - "Center", - "Other" - ], - "title": "SpoutSide", - "type": "string" - }, - "Stack": { - "additionalProperties": false, - "description": "Description of a two photon stack", + "_Sss6B": { + "description": "Model SSs6b", "properties": { - "channels": { - "items": { - "$ref": "#/$defs/StackChannel" - }, - "title": "Channels", - "type": "array" + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "number_of_planes": { - "title": "Number of planes", - "type": "integer" + "name": { + "const": "Supplemental somatosensory area, layer 6b", + "default": "Supplemental somatosensory area, layer 6b", + "title": "Name", + "type": "string" }, - "step_size": { - "title": "Step size (um)", - "type": "number" + "acronym": { + "const": "SSs6b", + "default": "SSs6b", + "title": "Acronym", + "type": "string" }, - "step_size_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Step size unit" + "id": { + "const": "893", + "default": "893", + "title": "Id", + "type": "string" + } + }, + "title": "_Sss6B", + "type": "object" + }, + "_St": { + "description": "Model st", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "number_of_plane_repeats_per_volume": { - "title": "Number of repeats per volume", - "type": "integer" + "name": { + "const": "stria terminalis", + "default": "stria terminalis", + "title": "Name", + "type": "string" }, - "number_of_volume_repeats": { - "title": "Number of volume repeats", - "type": "integer" + "acronym": { + "const": "st", + "default": "st", + "title": "Acronym", + "type": "string" }, - "fov_coordinate_ml": { - "title": "FOV coordinate ML", - "type": "number" + "id": { + "const": "301", + "default": "301", + "title": "Id", + "type": "string" + } + }, + "title": "_St", + "type": "object" + }, + "_Stc": { + "description": "Model stc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "fov_coordinate_ap": { - "title": "FOV coordinate AP", - "type": "number" + "name": { + "const": "commissural branch of stria terminalis", + "default": "commissural branch of stria terminalis", + "title": "Name", + "type": "string" }, - "fov_coordinate_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "FOV coordinate unit" + "acronym": { + "const": "stc", + "default": "stc", + "title": "Acronym", + "type": "string" }, - "fov_reference": { - "description": "Reference for ML/AP coordinates", - "title": "FOV reference", + "id": { + "const": "484682528", + "default": "484682528", + "title": "Id", + "type": "string" + } + }, + "title": "_Stc", + "type": "object" + }, + "_Stn": { + "description": "Model STN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "fov_width": { - "title": "FOV width (pixels)", - "type": "integer" + "name": { + "const": "Subthalamic nucleus", + "default": "Subthalamic nucleus", + "title": "Name", + "type": "string" }, - "fov_height": { - "title": "FOV height (pixels)", - "type": "integer" + "acronym": { + "const": "STN", + "default": "STN", + "title": "Acronym", + "type": "string" }, - "fov_size_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "pixel", - "title": "FOV size unit" + "id": { + "const": "470", + "default": "470", + "title": "Id", + "type": "string" + } + }, + "title": "_Stn", + "type": "object" + }, + "_Str": { + "description": "Model STR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "magnification": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Magnification" + "name": { + "const": "Striatum", + "default": "Striatum", + "title": "Name", + "type": "string" }, - "fov_scale_factor": { - "title": "FOV scale factor (um/pixel)", - "type": "number" + "acronym": { + "const": "STR", + "default": "STR", + "title": "Acronym", + "type": "string" }, - "fov_scale_factor_unit": { - "default": "um/pixel", - "title": "FOV scale factor unit", + "id": { + "const": "477", + "default": "477", + "title": "Id", + "type": "string" + } + }, + "title": "_Str", + "type": "object" + }, + "_Strd": { + "description": "Model STRd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "frame_rate": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Frame rate (Hz)" + "name": { + "const": "Striatum dorsal region", + "default": "Striatum dorsal region", + "title": "Name", + "type": "string" }, - "frame_rate_unit": { - "$ref": "#/$defs/FrequencyUnit", - "default": "hertz", - "title": "Frame rate unit" + "acronym": { + "const": "STRd", + "default": "STRd", + "title": "Acronym", + "type": "string" }, - "targeted_structure": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Targeted structure" + "id": { + "const": "485", + "default": "485", + "title": "Id", + "type": "string" } }, - "required": [ - "channels", - "number_of_planes", - "step_size", - "number_of_plane_repeats_per_volume", - "number_of_volume_repeats", - "fov_coordinate_ml", - "fov_coordinate_ap", - "fov_reference", - "fov_width", - "fov_height", - "fov_scale_factor", - "frame_rate" - ], - "title": "Stack", + "title": "_Strd", "type": "object" - }, - "StackChannel": { - "additionalProperties": false, - "description": "Description of a Channel used in a Stack", + }, + "_Strv": { + "description": "Model STRv", "properties": { - "channel_name": { - "title": "Channel", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "light_source_name": { - "description": "Must match device name", - "title": "Light source name", + "name": { + "const": "Striatum ventral region", + "default": "Striatum ventral region", + "title": "Name", "type": "string" }, - "filter_names": { - "description": "Must match device names", - "items": { - "type": "string" - }, - "title": "Filter names", - "type": "array" + "acronym": { + "const": "STRv", + "default": "STRv", + "title": "Acronym", + "type": "string" }, - "detector_name": { - "description": "Must match device name", - "title": "Detector name", + "id": { + "const": "493", + "default": "493", + "title": "Id", + "type": "string" + } + }, + "title": "_Strv", + "type": "object" + }, + "_Su3": { + "description": "Model Su3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "additional_device_names": { - "default": [], - "items": { - "type": "string" - }, - "title": "Additional device names", - "type": "array" + "name": { + "const": "Supraoculomotor periaqueductal gray", + "default": "Supraoculomotor periaqueductal gray", + "title": "Name", + "type": "string" }, - "excitation_wavelength": { - "maximum": 1000, - "minimum": 300, - "title": "Wavelength", - "type": "integer" + "acronym": { + "const": "Su3", + "default": "Su3", + "title": "Acronym", + "type": "string" }, - "excitation_wavelength_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "nanometer", - "title": "Laser wavelength unit" + "id": { + "const": "614454277", + "default": "614454277", + "title": "Id", + "type": "string" + } + }, + "title": "_Su3", + "type": "object" + }, + "_Sub": { + "description": "Model SUB", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "excitation_power": { - "maximum": 2000.0, - "title": "Laser power", - "type": "number" + "name": { + "const": "Subiculum", + "default": "Subiculum", + "title": "Name", + "type": "string" }, - "excitation_power_unit": { - "$ref": "#/$defs/PowerUnit", - "default": "milliwatt", - "title": "Laser power unit" + "acronym": { + "const": "SUB", + "default": "SUB", + "title": "Acronym", + "type": "string" }, - "filter_wheel_index": { - "title": "Filter wheel index", - "type": "integer" + "id": { + "const": "502", + "default": "502", + "title": "Id", + "type": "string" + } + }, + "title": "_Sub", + "type": "object" + }, + "_Subg": { + "description": "Model SubG", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "dilation": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Dilation (pixels)" + "name": { + "const": "Subgeniculate nucleus", + "default": "Subgeniculate nucleus", + "title": "Name", + "type": "string" }, - "dilation_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "pixel", - "title": "Dilation unit" + "acronym": { + "const": "SubG", + "default": "SubG", + "title": "Acronym", + "type": "string" }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Description" + "id": { + "const": "321", + "default": "321", + "title": "Id", + "type": "string" + } + }, + "title": "_Subg", + "type": "object" + }, + "_Sum": { + "description": "Model SUM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "start_depth": { - "title": "Starting depth (um)", - "type": "integer" + "name": { + "const": "Supramammillary nucleus", + "default": "Supramammillary nucleus", + "title": "Name", + "type": "string" }, - "end_depth": { - "title": "Ending depth (um)", - "type": "integer" + "acronym": { + "const": "SUM", + "default": "SUM", + "title": "Acronym", + "type": "string" }, - "depth_unit": { - "$ref": "#/$defs/SizeUnit", - "default": "micrometer", - "title": "Depth unit" + "id": { + "const": "525", + "default": "525", + "title": "Id", + "type": "string" } }, - "required": [ - "channel_name", - "light_source_name", - "filter_names", - "detector_name", - "excitation_wavelength", - "excitation_power", - "filter_wheel_index", - "start_depth", - "end_depth" - ], - "title": "StackChannel", + "title": "_Sum", "type": "object" }, - "StimulusEpoch": { - "additionalProperties": false, - "description": "Description of stimulus used during session", + "_Sup": { + "description": "Model sup", "properties": { - "stimulus_start_time": { - "description": "When a specific stimulus begins. This might be the same as the session start time.", - "format": "date-time", - "title": "Stimulus start time", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "stimulus_end_time": { - "description": "When a specific stimulus ends. This might be the same as the session end time.", - "format": "date-time", - "title": "Stimulus end time", + "name": { + "const": "supraoptic commissures", + "default": "supraoptic commissures", + "title": "Name", "type": "string" }, - "stimulus_name": { - "title": "Stimulus name", + "acronym": { + "const": "sup", + "default": "sup", + "title": "Acronym", "type": "string" }, - "session_number": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Session number" - }, - "software": { - "anyOf": [ - { - "items": { - "$ref": "#/$defs/Software" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": [], - "description": "The software used to control the behavior/stimulus (e.g. Bonsai)", - "title": "Software" + "id": { + "const": "349", + "default": "349", + "title": "Id", + "type": "string" + } + }, + "title": "_Sup", + "type": "object" + }, + "_Sut": { + "description": "Model SUT", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "script": { - "anyOf": [ - { - "$ref": "#/$defs/Software" - }, - { - "type": "null" - } - ], - "default": null, - "description": "provide URL to the commit of the script and the parameters used", - "title": "Script" + "name": { + "const": "Supratrigeminal nucleus", + "default": "Supratrigeminal nucleus", + "title": "Name", + "type": "string" }, - "stimulus_modalities": { - "items": { - "$ref": "#/$defs/StimulusModality" - }, - "title": "Stimulus modalities", - "type": "array" + "acronym": { + "const": "SUT", + "default": "SUT", + "title": "Acronym", + "type": "string" }, - "stimulus_parameters": { - "anyOf": [ - { - "items": { - "discriminator": { - "mapping": { - "Auditory Stimulation": "#/$defs/AuditoryStimulation", - "Olfactory Stimulation": "#/$defs/OlfactoryStimulation", - "Opto Stimulation": "#/$defs/OptoStimulation", - "Photo Stimulation": "#/$defs/PhotoStimulation", - "Visual Stimulation": "#/$defs/VisualStimulation" - }, - "propertyName": "stimulus_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/AuditoryStimulation" - }, - { - "$ref": "#/$defs/OptoStimulation" - }, - { - "$ref": "#/$defs/OlfactoryStimulation" - }, - { - "$ref": "#/$defs/PhotoStimulation" - }, - { - "$ref": "#/$defs/VisualStimulation" - } - ] - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Stimulus parameters" + "id": { + "const": "534", + "default": "534", + "title": "Id", + "type": "string" + } + }, + "title": "_Sut", + "type": "object" + }, + "_Suv": { + "description": "Model SUV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "stimulus_device_names": { - "default": [], - "items": { - "type": "string" - }, - "title": "Stimulus devices", - "type": "array" + "name": { + "const": "Superior vestibular nucleus", + "default": "Superior vestibular nucleus", + "title": "Name", + "type": "string" }, - "speaker_config": { - "anyOf": [ - { - "$ref": "#/$defs/SpeakerConfig" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Speaker Config" + "acronym": { + "const": "SUV", + "default": "SUV", + "title": "Acronym", + "type": "string" }, - "light_source_config": { - "anyOf": [ - { - "items": { - "discriminator": { - "mapping": { - "Laser": "#/$defs/LaserConfig", - "Light emitting diode": "#/$defs/LightEmittingDiodeConfig" - }, - "propertyName": "device_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/LightEmittingDiodeConfig" - }, - { - "$ref": "#/$defs/LaserConfig" - } - ] - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": [], - "description": "Light sources for stimulation", - "title": "Light source config" + "id": { + "const": "217", + "default": "217", + "title": "Id", + "type": "string" + } + }, + "title": "_Suv", + "type": "object" + }, + "_Sv": { + "description": "Model sV", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "output_parameters": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "title": "Performance metrics" + "name": { + "const": "sensory root of the trigeminal nerve", + "default": "sensory root of the trigeminal nerve", + "title": "Name", + "type": "string" }, - "reward_consumed_during_epoch": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Reward consumed during training (uL)" + "acronym": { + "const": "sV", + "default": "sV", + "title": "Acronym", + "type": "string" }, - "reward_consumed_unit": { - "$ref": "#/$defs/VolumeUnit", - "default": "microliter", - "title": "Reward consumed unit" + "id": { + "const": "229", + "default": "229", + "title": "Id", + "type": "string" + } + }, + "title": "_Sv", + "type": "object" + }, + "_Tamron": { + "description": "Model Tamron", + "properties": { + "name": { + "const": "Tamron", + "default": "Tamron", + "title": "Name", + "type": "string" }, - "trials_total": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], + "abbreviation": { + "const": null, "default": null, - "title": "Total trials" + "title": "Abbreviation", + "type": "null" }, - "trials_finished": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], + "registry": { "default": null, - "title": "Finished trials" + "title": "Registry", + "type": "null" }, - "trials_rewarded": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], + "registry_identifier": { "default": null, - "title": "Rewarded trials" + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Tamron", + "type": "object" + }, + "_Tb": { + "description": "Model tb", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "name": { + "const": "trapezoid body", + "default": "trapezoid body", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "tb", + "default": "tb", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "841", + "default": "841", + "title": "Id", + "type": "string" } }, - "required": [ - "stimulus_start_time", - "stimulus_end_time", - "stimulus_name", - "stimulus_modalities" - ], - "title": "StimulusEpoch", + "title": "_Tb", "type": "object" }, - "StimulusModality": { - "description": "Types of stimulus modalities", - "enum": [ - "Auditory", - "Olfactory", - "Optogenetics", - "None", - "Virtual reality", - "Visual", - "Wheel friction" - ], - "title": "StimulusModality", - "type": "string" + "_Tea": { + "description": "Model TEa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Temporal association areas", + "default": "Temporal association areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TEa", + "default": "TEa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "541", + "default": "541", + "title": "Id", + "type": "string" + } + }, + "title": "_Tea", + "type": "object" }, - "Stream": { - "additionalProperties": false, - "description": "Data streams with a start and stop time", + "_Tea1": { + "description": "Model TEa1", "properties": { - "stream_start_time": { - "format": "date-time", - "title": "Stream start time", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Temporal association areas, layer 1", + "default": "Temporal association areas, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TEa1", + "default": "TEa1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "97", + "default": "97", + "title": "Id", + "type": "string" + } + }, + "title": "_Tea1", + "type": "object" + }, + "_Tea2_3": { + "description": "Model TEa2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Temporal association areas, layer 2/3", + "default": "Temporal association areas, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TEa2/3", + "default": "TEa2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1127", + "default": "1127", + "title": "Id", + "type": "string" + } + }, + "title": "_Tea2_3", + "type": "object" + }, + "_Tea4": { + "description": "Model TEa4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Temporal association areas, layer 4", + "default": "Temporal association areas, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TEa4", + "default": "TEa4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "234", + "default": "234", + "title": "Id", + "type": "string" + } + }, + "title": "_Tea4", + "type": "object" + }, + "_Tea5": { + "description": "Model TEa5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "stream_end_time": { - "format": "date-time", - "title": "Stream stop time", + "name": { + "const": "Temporal association areas, layer 5", + "default": "Temporal association areas, layer 5", + "title": "Name", "type": "string" }, - "daq_names": { - "default": [], - "items": { - "type": "string" - }, - "title": "DAQ devices", - "type": "array" - }, - "camera_names": { - "default": [], - "items": { - "type": "string" - }, - "title": "Cameras", - "type": "array" + "acronym": { + "const": "TEa5", + "default": "TEa5", + "title": "Acronym", + "type": "string" }, - "light_sources": { - "default": [], - "items": { - "discriminator": { - "mapping": { - "Laser": "#/$defs/LaserConfig", - "Light emitting diode": "#/$defs/LightEmittingDiodeConfig" - }, - "propertyName": "device_type" - }, - "oneOf": [ - { - "$ref": "#/$defs/LightEmittingDiodeConfig" - }, - { - "$ref": "#/$defs/LaserConfig" - } - ] - }, - "title": "Light Sources", - "type": "array" + "id": { + "const": "289", + "default": "289", + "title": "Id", + "type": "string" + } + }, + "title": "_Tea5", + "type": "object" + }, + "_Tea6A": { + "description": "Model TEa6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "ephys_modules": { - "default": [], - "items": { - "$ref": "#/$defs/ManipulatorModule" - }, - "title": "Ephys modules", - "type": "array" + "name": { + "const": "Temporal association areas, layer 6a", + "default": "Temporal association areas, layer 6a", + "title": "Name", + "type": "string" }, - "stick_microscopes": { - "default": [], - "description": "Must match stick microscope assemblies in rig file", - "items": { - "$ref": "#/$defs/DomeModule" - }, - "title": "Stick microscopes", - "type": "array" + "acronym": { + "const": "TEa6a", + "default": "TEa6a", + "title": "Acronym", + "type": "string" }, - "manipulator_modules": { - "default": [], - "items": { - "$ref": "#/$defs/ManipulatorModule" - }, - "title": "Manipulator modules", - "type": "array" + "id": { + "const": "729", + "default": "729", + "title": "Id", + "type": "string" + } + }, + "title": "_Tea6A", + "type": "object" + }, + "_Tea6B": { + "description": "Model TEa6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "detectors": { - "default": [], - "items": { - "$ref": "#/$defs/DetectorConfig" - }, - "title": "Detectors", - "type": "array" + "name": { + "const": "Temporal association areas, layer 6b", + "default": "Temporal association areas, layer 6b", + "title": "Name", + "type": "string" }, - "fiber_connections": { - "default": [], - "items": { - "$ref": "#/$defs/FiberConnectionConfig" - }, - "title": "Implanted fiber photometry devices", - "type": "array" + "acronym": { + "const": "TEa6b", + "default": "TEa6b", + "title": "Acronym", + "type": "string" }, - "fiber_modules": { - "default": [], - "items": { - "$ref": "#/$defs/FiberModule" - }, - "title": "Inserted fiber modules", - "type": "array" + "id": { + "const": "786", + "default": "786", + "title": "Id", + "type": "string" + } + }, + "title": "_Tea6B", + "type": "object" + }, + "_Technical_Manufacturing_Corporation": { + "description": "Model Technical Manufacturing Corporation", + "properties": { + "name": { + "const": "Technical Manufacturing Corporation", + "default": "Technical Manufacturing Corporation", + "title": "Name", + "type": "string" }, - "ophys_fovs": { - "default": [], - "items": { - "$ref": "#/$defs/FieldOfView" - }, - "title": "Fields of view", - "type": "array" + "abbreviation": { + "const": "TMC", + "default": "TMC", + "title": "Abbreviation", + "type": "string" }, - "slap_fovs": { - "default": [], - "items": { - "$ref": "#/$defs/SlapFieldOfView" - }, - "title": "Slap2 fields of view", - "type": "array" + "registry": { + "default": null, + "title": "Registry", + "type": "null" }, - "stack_parameters": { - "anyOf": [ - { - "$ref": "#/$defs/Stack" - }, - { - "type": "null" - } - ], + "registry_identifier": { "default": null, - "title": "Stack parameters" + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Technical_Manufacturing_Corporation", + "type": "object" + }, + "_Teledyne_Flir": { + "description": "Model Teledyne FLIR", + "properties": { + "name": { + "const": "Teledyne FLIR", + "default": "Teledyne FLIR", + "title": "Name", + "type": "string" }, - "mri_scans": { - "default": [], - "items": { - "$ref": "#/$defs/MRIScan" - }, - "title": "MRI scans", - "type": "array" + "abbreviation": { + "const": "FLIR", + "default": "FLIR", + "title": "Abbreviation", + "type": "string" }, - "stream_modalities": { - "items": { - "discriminator": { - "mapping": { - "EMG": "#/$defs/_Emg", - "ISI": "#/$defs/_Isi", - "MRI": "#/$defs/_Mri", - "SPIM": "#/$defs/_Spim", - "behavior": "#/$defs/_Behavior", - "behavior-videos": "#/$defs/_Behavior_Videos", - "confocal": "#/$defs/_Confocal", - "ecephys": "#/$defs/_Ecephys", - "fMOST": "#/$defs/_Fmost", - "fib": "#/$defs/_Fib", - "icephys": "#/$defs/_Icephys", - "merfish": "#/$defs/_Merfish", - "pophys": "#/$defs/_Pophys", - "slap": "#/$defs/_Slap" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/_Behavior" - }, - { - "$ref": "#/$defs/_Behavior_Videos" - }, - { - "$ref": "#/$defs/_Confocal" - }, - { - "$ref": "#/$defs/_Emg" - }, - { - "$ref": "#/$defs/_Ecephys" - }, - { - "$ref": "#/$defs/_Fib" - }, - { - "$ref": "#/$defs/_Fmost" - }, - { - "$ref": "#/$defs/_Icephys" - }, - { - "$ref": "#/$defs/_Isi" - }, - { - "$ref": "#/$defs/_Mri" - }, - { - "$ref": "#/$defs/_Merfish" - }, - { - "$ref": "#/$defs/_Pophys" - }, - { - "$ref": "#/$defs/_Slap" - }, - { - "$ref": "#/$defs/_Spim" - } - ] + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" + }, + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" }, - "title": "Modalities", - "type": "array" - }, - "software": { - "anyOf": [ + "oneOf": [ { - "items": { - "$ref": "#/$defs/Software" - }, - "type": "array" + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" }, { - "type": "null" - } - ], - "default": [], - "title": "Data stream software information" - }, - "notes": { - "anyOf": [ + "$ref": "#/$defs/_Emapa" + }, { - "type": "string" + "$ref": "#/$defs/_Mgi" }, { - "type": "null" + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" } ], - "default": null, - "title": "Notes" + "title": "Registry" + }, + "registry_identifier": { + "const": "01j1gwp17", + "default": "01j1gwp17", + "title": "Registry Identifier", + "type": "string" } }, - "required": [ - "stream_start_time", - "stream_end_time", - "stream_modalities" - ], - "title": "Stream", + "title": "_Teledyne_Flir", "type": "object" }, - "SubjectPosition": { - "description": "Subject position", - "enum": [ - "Prone", - "Supine" - ], - "title": "SubjectPosition", - "type": "string" - }, - "TimeUnit": { - "description": "Enumeration of Time Measurements", - "enum": [ - "hour", - "minute", - "second", - "millisecond", - "microsecond", - "nanosecond" - ], - "title": "TimeUnit", - "type": "string" - }, - "Translation3dTransform": { - "additionalProperties": false, - "description": "Values to be vector-added to a 3D position. Often needed to specify a device or tile's origin.", + "_Templeton_World_Charity_Foundation": { + "description": "Model Templeton World Charity Foundation", "properties": { - "type": { - "const": "translation", - "default": "translation", - "enum": [ - "translation" - ], - "title": "Type", + "name": { + "const": "Templeton World Charity Foundation", + "default": "Templeton World Charity Foundation", + "title": "Name", "type": "string" }, - "translation": { - "items": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ] + "abbreviation": { + "const": "TWCF", + "default": "TWCF", + "title": "Abbreviation", + "type": "string" + }, + "registry": { + "default": { + "name": "Research Organization Registry", + "abbreviation": "ROR" }, - "maxItems": 3, - "minItems": 3, - "title": "3D translation parameters", - "type": "array" + "discriminator": { + "mapping": { + "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", + "EMAPA": "#/$defs/_Emapa", + "MGI": "#/$defs/_Mgi", + "NCBI": "#/$defs/_Ncbi", + "ORCID": "#/$defs/_Orcid", + "ROR": "#/$defs/_Ror", + "RRID": "#/$defs/_Rrid" + }, + "propertyName": "abbreviation" + }, + "oneOf": [ + { + "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" + }, + { + "$ref": "#/$defs/_Emapa" + }, + { + "$ref": "#/$defs/_Mgi" + }, + { + "$ref": "#/$defs/_Ncbi" + }, + { + "$ref": "#/$defs/_Orcid" + }, + { + "$ref": "#/$defs/_Ror" + }, + { + "$ref": "#/$defs/_Rrid" + } + ], + "title": "Registry" + }, + "registry_identifier": { + "const": "00x0z1472", + "default": "00x0z1472", + "title": "Registry Identifier", + "type": "string" } }, - "required": [ - "translation" - ], - "title": "Translation3dTransform", + "title": "_Templeton_World_Charity_Foundation", "type": "object" }, - "TriggerType": { - "description": "Types of detector triggers", - "enum": [ - "Internal", - "External" - ], - "title": "TriggerType", - "type": "string" - }, - "VisualStimulation": { - "additionalProperties": false, - "description": "Description of visual stimulus parameters. Provides a high level description of stimulus.", + "_Th": { + "description": "Model TH", "properties": { - "stimulus_type": { - "const": "Visual Stimulation", - "default": "Visual Stimulation", - "enum": [ - "Visual Stimulation" - ], - "title": "Stimulus Type", + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", "type": "string" }, - "stimulus_name": { - "title": "Stimulus name", + "name": { + "const": "Thalamus", + "default": "Thalamus", + "title": "Name", "type": "string" }, - "stimulus_parameters": { - "$ref": "#/$defs/AindGeneric", - "default": {}, - "description": "Define and list the parameter values used (e.g. all TF or orientation values)", - "title": "Stimulus parameters" - }, - "stimulus_template_name": { - "default": [], - "description": "Name of image set or movie displayed", - "items": { - "type": "string" - }, - "title": "Stimulus template name", - "type": "array" + "acronym": { + "const": "TH", + "default": "TH", + "title": "Acronym", + "type": "string" }, - "notes": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Notes" + "id": { + "const": "549", + "default": "549", + "title": "Id", + "type": "string" } }, - "required": [ - "stimulus_name" - ], - "title": "VisualStimulation", + "title": "_Th", "type": "object" }, - "VolumeUnit": { - "description": "Enumeration of Volume Measurements", - "enum": [ - "liter", - "milliliter", - "microliter", - "nanoliter" - ], - "title": "VolumeUnit", - "type": "string" + "_The_Imaging_Source": { + "description": "Model The Imaging Source", + "properties": { + "name": { + "const": "The Imaging Source", + "default": "The Imaging Source", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, + "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_The_Imaging_Source", + "type": "object" }, - "_Aa_Opto_Electronic": { - "description": "Model AA Opto Electronic", + "_The_Lee_Company": { + "description": "Model The Lee Company", "properties": { "name": { - "const": "AA Opto Electronic", - "default": "AA Opto Electronic", - "enum": [ - "AA Opto Electronic" - ], + "const": "The Lee Company", + "default": "The Lee Company", "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -4515,27 +54471,21 @@ "type": "null" } }, - "title": "_Aa_Opto_Electronic", + "title": "_The_Lee_Company", "type": "object" }, - "_Abcam": { - "description": "Model Abcam", + "_Thermo_Fisher_Scientific": { + "description": "Model Thermo Fisher Scientific", "properties": { "name": { - "const": "Abcam", - "default": "Abcam", - "enum": [ - "Abcam" - ], + "const": "Thermo Fisher Scientific", + "default": "Thermo Fisher Scientific", "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -4582,73 +54532,29 @@ "title": "Registry" }, "registry_identifier": { - "const": "02e1wjw63", - "default": "02e1wjw63", - "enum": [ - "02e1wjw63" - ], + "const": "03x1ewr52", + "default": "03x1ewr52", "title": "Registry Identifier", "type": "string" } }, - "title": "_Abcam", + "title": "_Thermo_Fisher_Scientific", "type": "object" }, - "_Ailipu_Technology_Co": { - "description": "Model Ailipu Technology Co", + "_Thorlabs": { + "description": "Model Thorlabs", "properties": { "name": { - "const": "Ailipu Technology Co", - "default": "Ailipu Technology Co", - "enum": [ - "Ailipu Technology Co" - ], + "const": "Thorlabs", + "default": "Thorlabs", "title": "Name", "type": "string" }, "abbreviation": { - "const": "Ailipu", - "default": "Ailipu", - "enum": [ - "Ailipu" - ], - "title": "Abbreviation", - "type": "string" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" - }, - "registry_identifier": { + "const": null, "default": null, - "title": "Registry Identifier", - "type": "null" - } - }, - "title": "_Ailipu_Technology_Co", - "type": "object" - }, - "_Allen_Institute": { - "description": "Model Allen Institute", - "properties": { - "name": { - "const": "Allen Institute", - "default": "Allen Institute", - "enum": [ - "Allen Institute" - ], - "title": "Name", - "type": "string" - }, - "abbreviation": { - "const": "AI", - "default": "AI", - "enum": [ - "AI" - ], "title": "Abbreviation", - "type": "string" + "type": "null" }, "registry": { "default": { @@ -4693,188 +54599,490 @@ "title": "Registry" }, "registry_identifier": { - "const": "03cpe7c52", - "default": "03cpe7c52", - "enum": [ - "03cpe7c52" - ], + "const": "04gsnvb07", + "default": "04gsnvb07", + "title": "Registry Identifier", + "type": "string" + } + }, + "title": "_Thorlabs", + "type": "object" + }, + "_Tm": { + "description": "Model TM", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Tuberomammillary nucleus", + "default": "Tuberomammillary nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TM", + "default": "TM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "557", + "default": "557", + "title": "Id", + "type": "string" + } + }, + "title": "_Tm", + "type": "object" + }, + "_Tmd": { + "description": "Model TMd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Tuberomammillary nucleus, dorsal part", + "default": "Tuberomammillary nucleus, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TMd", + "default": "TMd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1126", + "default": "1126", + "title": "Id", + "type": "string" + } + }, + "title": "_Tmd", + "type": "object" + }, + "_Tmv": { + "description": "Model TMv", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Tuberomammillary nucleus, ventral part", + "default": "Tuberomammillary nucleus, ventral part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TMv", + "default": "TMv", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1", + "default": "1", + "title": "Id", + "type": "string" + } + }, + "title": "_Tmv", + "type": "object" + }, + "_Tr": { + "description": "Model TR", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Postpiriform transition area", + "default": "Postpiriform transition area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TR", + "default": "TR", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "566", + "default": "566", + "title": "Id", + "type": "string" + } + }, + "title": "_Tr", + "type": "object" + }, + "_Transducer_Techniques": { + "description": "Model Transducer Techniques", + "properties": { + "name": { + "const": "Transducer Techniques", + "default": "Transducer Techniques", + "title": "Name", + "type": "string" + }, + "abbreviation": { + "const": null, + "default": null, + "title": "Abbreviation", + "type": "null" + }, + "registry": { + "default": null, + "title": "Registry", + "type": "null" + }, + "registry_identifier": { + "default": null, "title": "Registry Identifier", + "type": "null" + } + }, + "title": "_Transducer_Techniques", + "type": "object" + }, + "_Trn": { + "description": "Model TRN", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Tegmental reticular nucleus", + "default": "Tegmental reticular nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TRN", + "default": "TRN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "574", + "default": "574", + "title": "Id", + "type": "string" + } + }, + "title": "_Trn", + "type": "object" + }, + "_Trs": { + "description": "Model TRS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Triangular nucleus of septum", + "default": "Triangular nucleus of septum", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TRS", + "default": "TRS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "581", + "default": "581", + "title": "Id", + "type": "string" + } + }, + "title": "_Trs", + "type": "object" + }, + "_Ts": { + "description": "Model ts", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "solitary tract", + "default": "solitary tract", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "ts", + "default": "ts", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "237", + "default": "237", + "title": "Id", + "type": "string" + } + }, + "title": "_Ts", + "type": "object" + }, + "_Tsp": { + "description": "Model tsp", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "tectospinal pathway", + "default": "tectospinal pathway", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "tsp", + "default": "tsp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "877", + "default": "877", + "title": "Id", + "type": "string" + } + }, + "title": "_Tsp", + "type": "object" + }, + "_Tspc": { + "description": "Model tspc", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "crossed tectospinal pathway", + "default": "crossed tectospinal pathway", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "tspc", + "default": "tspc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1043", + "default": "1043", + "title": "Id", + "type": "string" + } + }, + "title": "_Tspc", + "type": "object" + }, + "_Tspd": { + "description": "Model tspd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "direct tectospinal pathway", + "default": "direct tectospinal pathway", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "tspd", + "default": "tspd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1051", + "default": "1051", + "title": "Id", "type": "string" } }, - "title": "_Allen_Institute", + "title": "_Tspd", "type": "object" }, - "_Allen_Institute_For_Brain_Science": { - "description": "Model Allen Institute for Brain Science", + "_Tt": { + "description": "Model TT", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Allen Institute for Brain Science", - "default": "Allen Institute for Brain Science", - "enum": [ - "Allen Institute for Brain Science" - ], + "const": "Taenia tecta", + "default": "Taenia tecta", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "AIBS", - "default": "AIBS", - "enum": [ - "AIBS" - ], - "title": "Abbreviation", + "acronym": { + "const": "TT", + "default": "TT", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "589", + "default": "589", + "title": "Id", + "type": "string" + } + }, + "title": "_Tt", + "type": "object" + }, + "_Ttd": { + "description": "Model TTd", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "00dcv1019", - "default": "00dcv1019", - "enum": [ - "00dcv1019" - ], - "title": "Registry Identifier", + "name": { + "const": "Taenia tecta, dorsal part", + "default": "Taenia tecta, dorsal part", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TTd", + "default": "TTd", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "597", + "default": "597", + "title": "Id", "type": "string" } }, - "title": "_Allen_Institute_For_Brain_Science", + "title": "_Ttd", "type": "object" }, - "_Allen_Institute_For_Neural_Dynamics": { - "description": "Model Allen Institute for Neural Dynamics", + "_Ttv": { + "description": "Model TTv", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Allen Institute for Neural Dynamics", - "default": "Allen Institute for Neural Dynamics", - "enum": [ - "Allen Institute for Neural Dynamics" - ], + "const": "Taenia tecta, ventral part", + "default": "Taenia tecta, ventral part", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "AIND", - "default": "AIND", - "enum": [ - "AIND" - ], - "title": "Abbreviation", + "acronym": { + "const": "TTv", + "default": "TTv", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "605", + "default": "605", + "title": "Id", + "type": "string" + } + }, + "title": "_Ttv", + "type": "object" + }, + "_Tu": { + "description": "Model TU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "04szwah67", - "default": "04szwah67", - "enum": [ - "04szwah67" - ], - "title": "Registry Identifier", + "name": { + "const": "Tuberal nucleus", + "default": "Tuberal nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "TU", + "default": "TU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "614", + "default": "614", + "title": "Id", "type": "string" } }, - "title": "_Allen_Institute_For_Neural_Dynamics", + "title": "_Tu", "type": "object" }, - "_Allied": { - "description": "Model Allied", + "_Tymphany": { + "description": "Model Tymphany", "properties": { "name": { - "const": "Allied", - "default": "Allied", - "enum": [ - "Allied" - ], + "const": "Tymphany", + "default": "Tymphany", "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -4889,599 +55097,424 @@ "type": "null" } }, - "title": "_Allied", + "title": "_Tymphany", "type": "object" }, - "_Ams_Osram": { - "description": "Model ams OSRAM", + "_Uf": { + "description": "Model uf", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "ams OSRAM", - "default": "ams OSRAM", - "enum": [ - "ams OSRAM" - ], + "const": "uncinate fascicle", + "default": "uncinate fascicle", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "uf", + "default": "uf", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "850", + "default": "850", + "title": "Id", + "type": "string" + } + }, + "title": "_Uf", + "type": "object" + }, + "_Uvu": { + "description": "Model UVU", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "045d0h266", - "default": "045d0h266", - "enum": [ - "045d0h266" - ], - "title": "Registry Identifier", + "name": { + "const": "Uvula (IX)", + "default": "Uvula (IX)", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "UVU", + "default": "UVU", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "957", + "default": "957", + "title": "Id", "type": "string" } }, - "title": "_Ams_Osram", + "title": "_Uvu", "type": "object" }, - "_Applied_Scientific_Instrumentation": { - "description": "Model Applied Scientific Instrumentation", + "_V": { + "description": "Model V", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Applied Scientific Instrumentation", - "default": "Applied Scientific Instrumentation", - "enum": [ - "Applied Scientific Instrumentation" - ], + "const": "Motor nucleus of trigeminal", + "default": "Motor nucleus of trigeminal", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "ASI", - "default": "ASI", - "enum": [ - "ASI" - ], - "title": "Abbreviation", + "acronym": { + "const": "V", + "default": "V", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "621", + "default": "621", + "title": "Id", + "type": "string" + } + }, + "title": "_V", + "type": "object" + }, + "_V3": { + "description": "Model V3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "third ventricle", + "default": "third ventricle", + "title": "Name", "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "V3", + "default": "V3", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "129", + "default": "129", + "title": "Id", + "type": "string" } }, - "title": "_Applied_Scientific_Instrumentation", + "title": "_V3", "type": "object" }, - "_Arecont_Vision_Costar": { - "description": "Model Arecont Vision Costar", + "_V4": { + "description": "Model V4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Arecont Vision Costar", - "default": "Arecont Vision Costar", - "enum": [ - "Arecont Vision Costar" - ], + "const": "fourth ventricle", + "default": "fourth ventricle", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "V4", + "default": "V4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "145", + "default": "145", + "title": "Id", + "type": "string" } }, - "title": "_Arecont_Vision_Costar", + "title": "_V4", "type": "object" }, - "_Asus": { - "description": "Model ASUS", + "_V4R": { + "description": "Model V4r", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "ASUS", - "default": "ASUS", - "enum": [ - "ASUS" - ], + "const": "lateral recess", + "default": "lateral recess", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "V4r", + "default": "V4r", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "00bxkz165", - "default": "00bxkz165", - "enum": [ - "00bxkz165" - ], - "title": "Registry Identifier", + "id": { + "const": "153", + "default": "153", + "title": "Id", "type": "string" } }, - "title": "_Asus", + "title": "_V4R", "type": "object" }, - "_Basler": { - "description": "Model Basler", + "_Val": { + "description": "Model VAL", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Basler", - "default": "Basler", - "enum": [ - "Basler" - ], + "const": "Ventral anterior-lateral complex of the thalamus", + "default": "Ventral anterior-lateral complex of the thalamus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VAL", + "default": "VAL", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "629", + "default": "629", + "title": "Id", + "type": "string" } }, - "title": "_Basler", + "title": "_Val", "type": "object" }, - "_Behavior": { - "additionalProperties": false, - "description": "Model behavior", + "_Vco": { + "description": "Model VCO", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Behavior", - "default": "Behavior", - "enum": [ - "Behavior" - ], + "const": "Ventral cochlear nucleus", + "default": "Ventral cochlear nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "behavior", - "default": "behavior", - "enum": [ - "behavior" - ], - "title": "Abbreviation", + "acronym": { + "const": "VCO", + "default": "VCO", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "101", + "default": "101", + "title": "Id", "type": "string" } }, - "title": "_Behavior", + "title": "_Vco", "type": "object" }, - "_Behavior_Videos": { - "additionalProperties": false, - "description": "Model behavior-videos", + "_Vecb": { + "description": "Model VeCB", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Behavior videos", - "default": "Behavior videos", - "enum": [ - "Behavior videos" - ], + "const": "Vestibulocerebellar nucleus", + "default": "Vestibulocerebellar nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "behavior-videos", - "default": "behavior-videos", - "enum": [ - "behavior-videos" - ], - "title": "Abbreviation", + "acronym": { + "const": "VeCB", + "default": "VeCB", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "589508455", + "default": "589508455", + "title": "Id", "type": "string" } }, - "title": "_Behavior_Videos", + "title": "_Vecb", "type": "object" }, - "_Cambridge_Technology": { - "description": "Model Cambridge Technology", + "_Vent": { + "description": "Model VENT", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Cambridge Technology", - "default": "Cambridge Technology", - "enum": [ - "Cambridge Technology" - ], + "const": "Ventral group of the dorsal thalamus", + "default": "Ventral group of the dorsal thalamus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VENT", + "default": "VENT", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "637", + "default": "637", + "title": "Id", + "type": "string" } }, - "title": "_Cambridge_Technology", + "title": "_Vent", "type": "object" }, - "_Carl_Zeiss": { - "description": "Model Carl Zeiss", + "_Verm": { + "description": "Model VERM", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Carl Zeiss", - "default": "Carl Zeiss", - "enum": [ - "Carl Zeiss" - ], + "const": "Vermal regions", + "default": "Vermal regions", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "01xk5xs43", - "default": "01xk5xs43", - "enum": [ - "01xk5xs43" - ], - "title": "Registry Identifier", + "acronym": { + "const": "VERM", + "default": "VERM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "645", + "default": "645", + "title": "Id", "type": "string" } }, - "title": "_Carl_Zeiss", + "title": "_Verm", "type": "object" }, - "_Champalimaud_Foundation": { - "description": "Model Champalimaud Foundation", + "_Vhc": { + "description": "Model vhc", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Champalimaud Foundation", - "default": "Champalimaud Foundation", - "enum": [ - "Champalimaud Foundation" - ], + "const": "ventral hippocampal commissure", + "default": "ventral hippocampal commissure", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "Champalimaud", - "default": "Champalimaud", - "enum": [ - "Champalimaud" - ], - "title": "Abbreviation", + "acronym": { + "const": "vhc", + "default": "vhc", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "03g001n57", - "default": "03g001n57", - "enum": [ - "03g001n57" - ], - "title": "Registry Identifier", + "id": { + "const": "449", + "default": "449", + "title": "Id", "type": "string" } }, - "title": "_Champalimaud_Foundation", + "title": "_Vhc", "type": "object" }, - "_Chan_Zuckerberg_Initiative": { - "description": "Model Chan Zuckerberg Initiative", + "_Vi": { + "description": "Model VI", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Chan Zuckerberg Initiative", - "default": "Chan Zuckerberg Initiative", - "enum": [ - "Chan Zuckerberg Initiative" - ], + "const": "Abducens nucleus", + "default": "Abducens nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "CZI", - "default": "CZI", - "enum": [ - "CZI" - ], - "title": "Abbreviation", + "acronym": { + "const": "VI", + "default": "VI", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "02qenvm24", - "default": "02qenvm24", - "enum": [ - "02qenvm24" - ], - "title": "Registry Identifier", + "id": { + "const": "653", + "default": "653", + "title": "Id", "type": "string" } }, - "title": "_Chan_Zuckerberg_Initiative", + "title": "_Vi", "type": "object" }, - "_Chroma": { - "description": "Model Chroma", + "_Vieworks": { + "description": "Model Vieworks", "properties": { "name": { - "const": "Chroma", - "default": "Chroma", - "enum": [ - "Chroma" - ], + "const": "Vieworks", + "default": "Vieworks", "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -5496,3463 +55529,2780 @@ "type": "null" } }, - "title": "_Chroma", + "title": "_Vieworks", "type": "object" }, - "_Coherent_Scientific": { - "description": "Model Coherent Scientific", + "_Vii": { + "description": "Model VII", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Coherent Scientific", - "default": "Coherent Scientific", - "enum": [ - "Coherent Scientific" - ], + "const": "Facial motor nucleus", + "default": "Facial motor nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VII", + "default": "VII", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "661", + "default": "661", + "title": "Id", + "type": "string" + } + }, + "title": "_Vii", + "type": "object" + }, + "_Viiin": { + "description": "Model VIIIn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "031tysd23", - "default": "031tysd23", - "enum": [ - "031tysd23" - ], - "title": "Registry Identifier", + "name": { + "const": "vestibulocochlear nerve", + "default": "vestibulocochlear nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VIIIn", + "default": "VIIIn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "933", + "default": "933", + "title": "Id", + "type": "string" + } + }, + "title": "_Viiin", + "type": "object" + }, + "_Viin": { + "description": "Model VIIn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "facial nerve", + "default": "facial nerve", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VIIn", + "default": "VIIn", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "798", + "default": "798", + "title": "Id", + "type": "string" + } + }, + "title": "_Viin", + "type": "object" + }, + "_Vis": { + "description": "Model VIS", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Visual areas", + "default": "Visual areas", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VIS", + "default": "VIS", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "669", + "default": "669", + "title": "Id", + "type": "string" + } + }, + "title": "_Vis", + "type": "object" + }, + "_Visa": { + "description": "Model VISa", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Anterior area", + "default": "Anterior area", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISa", + "default": "VISa", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782546", + "default": "312782546", + "title": "Id", "type": "string" } }, - "title": "_Coherent_Scientific", + "title": "_Visa", "type": "object" }, - "_Columbia_University": { - "description": "Model Columbia University", + "_Visa1": { + "description": "Model VISa1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Columbia University", - "default": "Columbia University", - "enum": [ - "Columbia University" - ], + "const": "Anterior area, layer 1", + "default": "Anterior area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "Columbia", - "default": "Columbia", - "enum": [ - "Columbia" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISa1", + "default": "VISa1", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "00hj8s172", - "default": "00hj8s172", - "enum": [ - "00hj8s172" - ], - "title": "Registry Identifier", + "id": { + "const": "312782550", + "default": "312782550", + "title": "Id", "type": "string" } }, - "title": "_Columbia_University", + "title": "_Visa1", "type": "object" }, - "_Computar": { - "description": "Model Computar", + "_Visa2_3": { + "description": "Model VISa2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Computar", - "default": "Computar", - "enum": [ - "Computar" - ], + "const": "Anterior area, layer 2/3", + "default": "Anterior area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISa2/3", + "default": "VISa2/3", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782554", + "default": "312782554", + "title": "Id", + "type": "string" } }, - "title": "_Computar", + "title": "_Visa2_3", "type": "object" }, - "_Confocal": { - "additionalProperties": false, - "description": "Model confocal", + "_Visa4": { + "description": "Model VISa4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Confocal microscopy", - "default": "Confocal microscopy", - "enum": [ - "Confocal microscopy" - ], + "const": "Anterior area, layer 4", + "default": "Anterior area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "confocal", - "default": "confocal", - "enum": [ - "confocal" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISa4", + "default": "VISa4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782558", + "default": "312782558", + "title": "Id", "type": "string" } }, - "title": "_Confocal", + "title": "_Visa4", "type": "object" }, - "_Conoptics": { - "description": "Model Conoptics", + "_Visa5": { + "description": "Model VISa5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Conoptics", - "default": "Conoptics", - "enum": [ - "Conoptics" - ], + "const": "Anterior area, layer 5", + "default": "Anterior area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISa5", + "default": "VISa5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782562", + "default": "312782562", + "title": "Id", + "type": "string" } }, - "title": "_Conoptics", + "title": "_Visa5", "type": "object" }, - "_Custom": { - "description": "Model Custom", + "_Visa6A": { + "description": "Model VISa6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Custom", - "default": "Custom", - "enum": [ - "Custom" - ], + "const": "Anterior area, layer 6a", + "default": "Anterior area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISa6a", + "default": "VISa6a", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782566", + "default": "312782566", + "title": "Id", + "type": "string" } }, - "title": "_Custom", + "title": "_Visa6A", "type": "object" }, - "_Dodotronic": { - "description": "Model Dodotronic", + "_Visa6B": { + "description": "Model VISa6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Dodotronic", - "default": "Dodotronic", - "enum": [ - "Dodotronic" - ], + "const": "Anterior area, layer 6b", + "default": "Anterior area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISa6b", + "default": "VISa6b", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782570", + "default": "312782570", + "title": "Id", + "type": "string" } }, - "title": "_Dodotronic", + "title": "_Visa6B", "type": "object" }, - "_Doric": { - "description": "Model Doric", + "_Visal": { + "description": "Model VISal", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Doric", - "default": "Doric", - "enum": [ - "Doric" - ], + "const": "Anterolateral visual area", + "default": "Anterolateral visual area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISal", + "default": "VISal", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "402", + "default": "402", + "title": "Id", + "type": "string" + } + }, + "title": "_Visal", + "type": "object" + }, + "_Visal1": { + "description": "Model VISal1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "059n53q30", - "default": "059n53q30", - "enum": [ - "059n53q30" - ], - "title": "Registry Identifier", + "name": { + "const": "Anterolateral visual area, layer 1", + "default": "Anterolateral visual area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISal1", + "default": "VISal1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1074", + "default": "1074", + "title": "Id", "type": "string" } }, - "title": "_Doric", + "title": "_Visal1", "type": "object" }, - "_Ealing": { - "description": "Model Ealing", + "_Visal2_3": { + "description": "Model VISal2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Ealing", - "default": "Ealing", - "enum": [ - "Ealing" - ], + "const": "Anterolateral visual area, layer 2/3", + "default": "Anterolateral visual area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISal2/3", + "default": "VISal2/3", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "905", + "default": "905", + "title": "Id", + "type": "string" } }, - "title": "_Ealing", + "title": "_Visal2_3", "type": "object" }, - "_Ecephys": { - "additionalProperties": false, - "description": "Model ecephys", + "_Visal4": { + "description": "Model VISal4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Extracellular electrophysiology", - "default": "Extracellular electrophysiology", - "enum": [ - "Extracellular electrophysiology" - ], + "const": "Anterolateral visual area, layer 4", + "default": "Anterolateral visual area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "ecephys", - "default": "ecephys", - "enum": [ - "ecephys" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISal4", + "default": "VISal4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1114", + "default": "1114", + "title": "Id", "type": "string" } }, - "title": "_Ecephys", + "title": "_Visal4", "type": "object" }, - "_Edmund_Optics": { - "description": "Model Edmund Optics", + "_Visal5": { + "description": "Model VISal5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Edmund Optics", - "default": "Edmund Optics", - "enum": [ - "Edmund Optics" - ], + "const": "Anterolateral visual area, layer 5", + "default": "Anterolateral visual area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISal5", + "default": "VISal5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "01j1gwp17", - "default": "01j1gwp17", - "enum": [ - "01j1gwp17" - ], - "title": "Registry Identifier", + "id": { + "const": "233", + "default": "233", + "title": "Id", "type": "string" } }, - "title": "_Edmund_Optics", + "title": "_Visal5", "type": "object" }, - "_Emapa": { - "additionalProperties": false, - "description": "Model EMAPA", + "_Visal6A": { + "description": "Model VISal6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Edinburgh Mouse Atlas Project", - "default": "Edinburgh Mouse Atlas Project", - "enum": [ - "Edinburgh Mouse Atlas Project" - ], + "const": "Anterolateral visual area, layer 6a", + "default": "Anterolateral visual area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "EMAPA", - "default": "EMAPA", - "enum": [ - "EMAPA" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISal6a", + "default": "VISal6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "601", + "default": "601", + "title": "Id", "type": "string" } }, - "title": "_Emapa", + "title": "_Visal6A", "type": "object" }, - "_Emg": { - "additionalProperties": false, - "description": "Model EMG", + "_Visal6B": { + "description": "Model VISal6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Electromyography", - "default": "Electromyography", - "enum": [ - "Electromyography" - ], + "const": "Anterolateral visual area, layer 6b", + "default": "Anterolateral visual area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "EMG", - "default": "EMG", - "enum": [ - "EMG" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISal6b", + "default": "VISal6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "649", + "default": "649", + "title": "Id", "type": "string" } }, - "title": "_Emg", + "title": "_Visal6B", "type": "object" }, - "_Emory_University": { - "description": "Model Emory University", + "_Visam": { + "description": "Model VISam", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Emory University", - "default": "Emory University", - "enum": [ - "Emory University" - ], + "const": "Anteromedial visual area", + "default": "Anteromedial visual area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "Emory", - "default": "Emory", - "enum": [ - "Emory" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISam", + "default": "VISam", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "394", + "default": "394", + "title": "Id", + "type": "string" + } + }, + "title": "_Visam", + "type": "object" + }, + "_Visam1": { + "description": "Model VISam1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "03czfpz43", - "default": "03czfpz43", - "enum": [ - "03czfpz43" - ], - "title": "Registry Identifier", + "name": { + "const": "Anteromedial visual area, layer 1", + "default": "Anteromedial visual area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISam1", + "default": "VISam1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "281", + "default": "281", + "title": "Id", "type": "string" } }, - "title": "_Emory_University", + "title": "_Visam1", "type": "object" }, - "_Euresys": { - "description": "Model Euresys", + "_Visam2_3": { + "description": "Model VISam2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Euresys", - "default": "Euresys", - "enum": [ - "Euresys" - ], + "const": "Anteromedial visual area, layer 2/3", + "default": "Anteromedial visual area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISam2/3", + "default": "VISam2/3", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "1066", + "default": "1066", + "title": "Id", + "type": "string" + } + }, + "title": "_Visam2_3", + "type": "object" + }, + "_Visam4": { + "description": "Model VISam4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Anteromedial visual area, layer 4", + "default": "Anteromedial visual area, layer 4", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISam4", + "default": "VISam4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "401", + "default": "401", + "title": "Id", + "type": "string" } }, - "title": "_Euresys", + "title": "_Visam4", "type": "object" }, - "_Fib": { - "additionalProperties": false, - "description": "Model fib", + "_Visam5": { + "description": "Model VISam5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Fiber photometry", - "default": "Fiber photometry", - "enum": [ - "Fiber photometry" - ], + "const": "Anteromedial visual area, layer 5", + "default": "Anteromedial visual area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "fib", - "default": "fib", - "enum": [ - "fib" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISam5", + "default": "VISam5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "433", + "default": "433", + "title": "Id", "type": "string" } }, - "title": "_Fib", + "title": "_Visam5", "type": "object" }, - "_Fmost": { - "additionalProperties": false, - "description": "Model fMOST", + "_Visam6A": { + "description": "Model VISam6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Fluorescence micro-optical sectioning tomography", - "default": "Fluorescence micro-optical sectioning tomography", - "enum": [ - "Fluorescence micro-optical sectioning tomography" - ], + "const": "Anteromedial visual area, layer 6a", + "default": "Anteromedial visual area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "fMOST", - "default": "fMOST", - "enum": [ - "fMOST" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISam6a", + "default": "VISam6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1046", + "default": "1046", + "title": "Id", "type": "string" } }, - "title": "_Fmost", + "title": "_Visam6A", "type": "object" }, - "_Fujinon": { - "description": "Model Fujinon", + "_Visam6B": { + "description": "Model VISam6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Fujinon", - "default": "Fujinon", - "enum": [ - "Fujinon" - ], + "const": "Anteromedial visual area, layer 6b", + "default": "Anteromedial visual area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISam6b", + "default": "VISam6b", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "441", + "default": "441", + "title": "Id", + "type": "string" } }, - "title": "_Fujinon", + "title": "_Visam6B", "type": "object" }, - "_Hamamatsu": { - "description": "Model Hamamatsu", + "_Visc": { + "description": "Model VISC", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Hamamatsu", - "default": "Hamamatsu", - "enum": [ - "Hamamatsu" - ], + "const": "Visceral area", + "default": "Visceral area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISC", + "default": "VISC", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "03natb733", - "default": "03natb733", - "enum": [ - "03natb733" - ], - "title": "Registry Identifier", + "id": { + "const": "677", + "default": "677", + "title": "Id", "type": "string" } }, - "title": "_Hamamatsu", + "title": "_Visc", "type": "object" }, - "_Hamilton": { - "description": "Model Hamilton", + "_Visc1": { + "description": "Model VISC1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Hamilton", - "default": "Hamilton", - "enum": [ - "Hamilton" - ], + "const": "Visceral area, layer 1", + "default": "Visceral area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISC1", + "default": "VISC1", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "897", + "default": "897", + "title": "Id", + "type": "string" } }, - "title": "_Hamilton", + "title": "_Visc1", "type": "object" }, - "_Huazhong_University_Of_Science_And_Technology": { - "description": "Model Huazhong University of Science and Technology", + "_Visc2_3": { + "description": "Model VISC2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Huazhong University of Science and Technology", - "default": "Huazhong University of Science and Technology", - "enum": [ - "Huazhong University of Science and Technology" - ], + "const": "Visceral area, layer 2/3", + "default": "Visceral area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "HUST", - "default": "HUST", - "enum": [ - "HUST" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISC2/3", + "default": "VISC2/3", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "00p991c53", - "default": "00p991c53", - "enum": [ - "00p991c53" - ], - "title": "Registry Identifier", + "id": { + "const": "1106", + "default": "1106", + "title": "Id", "type": "string" } }, - "title": "_Huazhong_University_Of_Science_And_Technology", + "title": "_Visc2_3", "type": "object" }, - "_Icephys": { - "additionalProperties": false, - "description": "Model icephys", + "_Visc4": { + "description": "Model VISC4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Intracellular electrophysiology", - "default": "Intracellular electrophysiology", - "enum": [ - "Intracellular electrophysiology" - ], + "const": "Visceral area, layer 4", + "default": "Visceral area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "icephys", - "default": "icephys", - "enum": [ - "icephys" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISC4", + "default": "VISC4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "1010", + "default": "1010", + "title": "Id", "type": "string" } }, - "title": "_Icephys", + "title": "_Visc4", "type": "object" }, - "_Infinity_Photo_Optical": { - "description": "Model Infinity Photo-Optical", + "_Visc5": { + "description": "Model VISC5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Infinity Photo-Optical", - "default": "Infinity Photo-Optical", - "enum": [ - "Infinity Photo-Optical" - ], + "const": "Visceral area, layer 5", + "default": "Visceral area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISC5", + "default": "VISC5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "1058", + "default": "1058", + "title": "Id", + "type": "string" } }, - "title": "_Infinity_Photo_Optical", + "title": "_Visc5", "type": "object" - }, - "_Integrated_Dna_Technologies": { - "description": "Model Integrated DNA Technologies", + }, + "_Visc6A": { + "description": "Model VISC6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Integrated DNA Technologies", - "default": "Integrated DNA Technologies", - "enum": [ - "Integrated DNA Technologies" - ], + "const": "Visceral area, layer 6a", + "default": "Visceral area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "IDT", - "default": "IDT", - "enum": [ - "IDT" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISC6a", + "default": "VISC6a", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "009jvpf03", - "default": "009jvpf03", - "enum": [ - "009jvpf03" - ], - "title": "Registry Identifier", + "id": { + "const": "857", + "default": "857", + "title": "Id", "type": "string" } }, - "title": "_Integrated_Dna_Technologies", + "title": "_Visc6A", "type": "object" }, - "_Interuniversity_Microelectronics_Center": { - "description": "Model Interuniversity Microelectronics Center", + "_Visc6B": { + "description": "Model VISC6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Interuniversity Microelectronics Center", - "default": "Interuniversity Microelectronics Center", - "enum": [ - "Interuniversity Microelectronics Center" - ], + "const": "Visceral area, layer 6b", + "default": "Visceral area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "IMEC", - "default": "IMEC", - "enum": [ - "IMEC" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISC6b", + "default": "VISC6b", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "02kcbn207", - "default": "02kcbn207", - "enum": [ - "02kcbn207" - ], - "title": "Registry Identifier", + "id": { + "const": "849", + "default": "849", + "title": "Id", "type": "string" } }, - "title": "_Interuniversity_Microelectronics_Center", + "title": "_Visc6B", "type": "object" }, - "_Invitrogen": { - "description": "Model Invitrogen", + "_Visl": { + "description": "Model VISl", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Invitrogen", - "default": "Invitrogen", - "enum": [ - "Invitrogen" - ], + "const": "Lateral visual area", + "default": "Lateral visual area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISl", + "default": "VISl", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "03x1ewr52", - "default": "03x1ewr52", - "enum": [ - "03x1ewr52" - ], - "title": "Registry Identifier", + "id": { + "const": "409", + "default": "409", + "title": "Id", "type": "string" } }, - "title": "_Invitrogen", + "title": "_Visl", "type": "object" }, - "_Ir_Robot_Co": { - "description": "Model IR Robot Co", + "_Visl1": { + "description": "Model VISl1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "IR Robot Co", - "default": "IR Robot Co", - "enum": [ - "IR Robot Co" - ], + "const": "Lateral visual area, layer 1", + "default": "Lateral visual area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISl1", + "default": "VISl1", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "421", + "default": "421", + "title": "Id", + "type": "string" } }, - "title": "_Ir_Robot_Co", + "title": "_Visl1", "type": "object" }, - "_Isi": { - "additionalProperties": false, - "description": "Model ISI", + "_Visl2_3": { + "description": "Model VISl2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Intrinsic signal imaging", - "default": "Intrinsic signal imaging", - "enum": [ - "Intrinsic signal imaging" - ], + "const": "Lateral visual area, layer 2/3", + "default": "Lateral visual area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "ISI", - "default": "ISI", - "enum": [ - "ISI" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISl2/3", + "default": "VISl2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "973", + "default": "973", + "title": "Id", "type": "string" } }, - "title": "_Isi", + "title": "_Visl2_3", "type": "object" }, - "_Isl_Products_International": { - "description": "Model ISL Products International", + "_Visl4": { + "description": "Model VISl4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "ISL Products International", - "default": "ISL Products International", - "enum": [ - "ISL Products International" - ], + "const": "Lateral visual area, layer 4", + "default": "Lateral visual area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "ISL", - "default": "ISL", - "enum": [ - "ISL" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISl4", + "default": "VISl4", + "title": "Acronym", "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" - }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "573", + "default": "573", + "title": "Id", + "type": "string" } }, - "title": "_Isl_Products_International", + "title": "_Visl4", "type": "object" }, - "_Jackson_Laboratory": { - "description": "Model Jackson Laboratory", + "_Visl5": { + "description": "Model VISl5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Jackson Laboratory", - "default": "Jackson Laboratory", - "enum": [ - "Jackson Laboratory" - ], + "const": "Lateral visual area, layer 5", + "default": "Lateral visual area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "JAX", - "default": "JAX", - "enum": [ - "JAX" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISl5", + "default": "VISl5", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "021sy4w91", - "default": "021sy4w91", - "enum": [ - "021sy4w91" - ], - "title": "Registry Identifier", + "id": { + "const": "613", + "default": "613", + "title": "Id", "type": "string" } }, - "title": "_Jackson_Laboratory", + "title": "_Visl5", "type": "object" }, - "_Janelia_Research_Campus": { - "description": "Model Janelia Research Campus", + "_Visl6A": { + "description": "Model VISl6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Janelia Research Campus", - "default": "Janelia Research Campus", - "enum": [ - "Janelia Research Campus" - ], + "const": "Lateral visual area, layer 6a", + "default": "Lateral visual area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "Janelia", - "default": "Janelia", - "enum": [ - "Janelia" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISl6a", + "default": "VISl6a", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "013sk6x84", - "default": "013sk6x84", - "enum": [ - "013sk6x84" - ], - "title": "Registry Identifier", + "id": { + "const": "74", + "default": "74", + "title": "Id", "type": "string" } }, - "title": "_Janelia_Research_Campus", + "title": "_Visl6A", "type": "object" }, - "_Julabo": { - "description": "Model Julabo", + "_Visl6B": { + "description": "Model VISl6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Julabo", - "default": "Julabo", - "enum": [ - "Julabo" - ], + "const": "Lateral visual area, layer 6b", + "default": "Lateral visual area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISl6b", + "default": "VISl6b", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "121", + "default": "121", + "title": "Id", + "type": "string" } }, - "title": "_Julabo", + "title": "_Visl6B", "type": "object" }, - "_Leica": { - "description": "Model Leica", + "_Visli": { + "description": "Model VISli", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Leica", - "default": "Leica", - "enum": [ - "Leica" - ], + "const": "Laterointermediate area", + "default": "Laterointermediate area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISli", + "default": "VISli", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782574", + "default": "312782574", + "title": "Id", + "type": "string" } }, - "title": "_Leica", + "title": "_Visli", "type": "object" }, - "_Lg": { - "description": "Model LG", + "_Visli1": { + "description": "Model VISli1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "LG", - "default": "LG", - "enum": [ - "LG" - ], + "const": "Laterointermediate area, layer 1", + "default": "Laterointermediate area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISli1", + "default": "VISli1", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "02b948n83", - "default": "02b948n83", - "enum": [ - "02b948n83" - ], - "title": "Registry Identifier", + "id": { + "const": "312782578", + "default": "312782578", + "title": "Id", "type": "string" } }, - "title": "_Lg", + "title": "_Visli1", "type": "object" }, - "_Lifecanvas": { - "description": "Model LifeCanvas", + "_Visli2_3": { + "description": "Model VISli2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "LifeCanvas", - "default": "LifeCanvas", - "enum": [ - "LifeCanvas" - ], + "const": "Laterointermediate area, layer 2/3", + "default": "Laterointermediate area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISli2/3", + "default": "VISli2/3", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782582", + "default": "312782582", + "title": "Id", + "type": "string" } }, - "title": "_Lifecanvas", + "title": "_Visli2_3", "type": "object" }, - "_Lumen_Dynamics": { - "description": "Model Lumen Dynamics", + "_Visli4": { + "description": "Model VISli4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Lumen Dynamics", - "default": "Lumen Dynamics", - "enum": [ - "Lumen Dynamics" - ], + "const": "Laterointermediate area, layer 4", + "default": "Laterointermediate area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISli4", + "default": "VISli4", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782586", + "default": "312782586", + "title": "Id", + "type": "string" } }, - "title": "_Lumen_Dynamics", + "title": "_Visli4", "type": "object" }, - "_Mbf_Bioscience": { - "description": "Model MBF Bioscience", + "_Visli5": { + "description": "Model VISli5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "MBF Bioscience", - "default": "MBF Bioscience", - "enum": [ - "MBF Bioscience" - ], + "const": "Laterointermediate area, layer 5", + "default": "Laterointermediate area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "MBF", - "default": "MBF", - "enum": [ - "MBF" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISli5", + "default": "VISli5", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "02zynam48", - "default": "02zynam48", - "enum": [ - "02zynam48" - ], - "title": "Registry Identifier", + "id": { + "const": "312782590", + "default": "312782590", + "title": "Id", "type": "string" } }, - "title": "_Mbf_Bioscience", + "title": "_Visli5", "type": "object" }, - "_Meadowlark_Optics": { - "description": "Model Meadowlark Optics", + "_Visli6A": { + "description": "Model VISli6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Meadowlark Optics", - "default": "Meadowlark Optics", - "enum": [ - "Meadowlark Optics" - ], + "const": "Laterointermediate area, layer 6a", + "default": "Laterointermediate area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISli6a", + "default": "VISli6a", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "00n8qbq54", - "default": "00n8qbq54", - "enum": [ - "00n8qbq54" - ], - "title": "Registry Identifier", + "id": { + "const": "312782594", + "default": "312782594", + "title": "Id", "type": "string" } }, - "title": "_Meadowlark_Optics", + "title": "_Visli6A", "type": "object" }, - "_Merfish": { - "additionalProperties": false, - "description": "Model merfish", + "_Visli6B": { + "description": "Model VISli6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Multiplexed error-robust fluorescence in situ hybridization", - "default": "Multiplexed error-robust fluorescence in situ hybridization", - "enum": [ - "Multiplexed error-robust fluorescence in situ hybridization" - ], + "const": "Laterointermediate area, layer 6b", + "default": "Laterointermediate area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "merfish", - "default": "merfish", - "enum": [ - "merfish" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISli6b", + "default": "VISli6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782598", + "default": "312782598", + "title": "Id", "type": "string" } }, - "title": "_Merfish", + "title": "_Visli6B", "type": "object" }, - "_Mgi": { - "additionalProperties": false, - "description": "Model MGI", + "_Visp": { + "description": "Model VISp", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Mouse Genome Informatics", - "default": "Mouse Genome Informatics", - "enum": [ - "Mouse Genome Informatics" - ], + "const": "Primary visual area", + "default": "Primary visual area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "MGI", - "default": "MGI", - "enum": [ - "MGI" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISp", + "default": "VISp", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "385", + "default": "385", + "title": "Id", "type": "string" } }, - "title": "_Mgi", + "title": "_Visp", "type": "object" }, - "_Michael_J_Fox_Foundation_For_Parkinson_S_Research": { - "description": "Model Michael J. Fox Foundation for Parkinson's Research", + "_Visp1": { + "description": "Model VISp1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Michael J. Fox Foundation for Parkinson's Research", - "default": "Michael J. Fox Foundation for Parkinson's Research", - "enum": [ - "Michael J. Fox Foundation for Parkinson's Research" - ], + "const": "Primary visual area, layer 1", + "default": "Primary visual area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "MJFF", - "default": "MJFF", - "enum": [ - "MJFF" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISp1", + "default": "VISp1", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "593", + "default": "593", + "title": "Id", + "type": "string" + } + }, + "title": "_Visp1", + "type": "object" + }, + "_Visp2_3": { + "description": "Model VISp2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "03arq3225", - "default": "03arq3225", - "enum": [ - "03arq3225" - ], - "title": "Registry Identifier", + "name": { + "const": "Primary visual area, layer 2/3", + "default": "Primary visual area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISp2/3", + "default": "VISp2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "821", + "default": "821", + "title": "Id", "type": "string" } }, - "title": "_Michael_J_Fox_Foundation_For_Parkinson_S_Research", + "title": "_Visp2_3", "type": "object" }, - "_Midwest_Optical_Systems_Inc_": { - "description": "Model Midwest Optical Systems, Inc.", + "_Visp4": { + "description": "Model VISp4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Midwest Optical Systems, Inc.", - "default": "Midwest Optical Systems, Inc.", - "enum": [ - "Midwest Optical Systems, Inc." - ], + "const": "Primary visual area, layer 4", + "default": "Primary visual area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "MidOpt", - "default": "MidOpt", - "enum": [ - "MidOpt" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISp4", + "default": "VISp4", + "title": "Acronym", "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" - }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "721", + "default": "721", + "title": "Id", + "type": "string" } }, - "title": "_Midwest_Optical_Systems_Inc_", + "title": "_Visp4", "type": "object" }, - "_Mitutuyo": { - "description": "Model Mitutuyo", + "_Visp5": { + "description": "Model VISp5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Mitutuyo", - "default": "Mitutuyo", - "enum": [ - "Mitutuyo" - ], + "const": "Primary visual area, layer 5", + "default": "Primary visual area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISp5", + "default": "VISp5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "778", + "default": "778", + "title": "Id", + "type": "string" } }, - "title": "_Mitutuyo", + "title": "_Visp5", "type": "object" }, - "_Mks_Newport": { - "description": "Model MKS Newport", + "_Visp6A": { + "description": "Model VISp6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "MKS Newport", - "default": "MKS Newport", - "enum": [ - "MKS Newport" - ], + "const": "Primary visual area, layer 6a", + "default": "Primary visual area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISp6a", + "default": "VISp6a", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "33", + "default": "33", + "title": "Id", + "type": "string" + } + }, + "title": "_Visp6A", + "type": "object" + }, + "_Visp6B": { + "description": "Model VISp6b", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "00k17f049", - "default": "00k17f049", - "enum": [ - "00k17f049" - ], - "title": "Registry Identifier", + "name": { + "const": "Primary visual area, layer 6b", + "default": "Primary visual area, layer 6b", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISp6b", + "default": "VISp6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "305", + "default": "305", + "title": "Id", "type": "string" } }, - "title": "_Mks_Newport", + "title": "_Visp6B", "type": "object" }, - "_Mpi": { - "description": "Model MPI", + "_Vispl": { + "description": "Model VISpl", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "MPI", - "default": "MPI", - "enum": [ - "MPI" - ], + "const": "Posterolateral visual area", + "default": "Posterolateral visual area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "MPI", - "default": "MPI", - "enum": [ - "MPI" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISpl", + "default": "VISpl", + "title": "Acronym", "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "425", + "default": "425", + "title": "Id", + "type": "string" + } + }, + "title": "_Vispl", + "type": "object" + }, + "_Vispl1": { + "description": "Model VISpl1", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Posterolateral visual area, layer 1", + "default": "Posterolateral visual area, layer 1", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISpl1", + "default": "VISpl1", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "750", + "default": "750", + "title": "Id", + "type": "string" } }, - "title": "_Mpi", + "title": "_Vispl1", "type": "object" }, - "_Mri": { - "additionalProperties": false, - "description": "Model MRI", + "_Vispl2_3": { + "description": "Model VISpl2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Magnetic resonance imaging", - "default": "Magnetic resonance imaging", - "enum": [ - "Magnetic resonance imaging" - ], + "const": "Posterolateral visual area, layer 2/3", + "default": "Posterolateral visual area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "MRI", - "default": "MRI", - "enum": [ - "MRI" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISpl2/3", + "default": "VISpl2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "269", + "default": "269", + "title": "Id", "type": "string" } }, - "title": "_Mri", + "title": "_Vispl2_3", "type": "object" }, - "_National_Center_For_Complementary_And_Integrative_Health": { - "description": "Model National Center for Complementary and Integrative Health", + "_Vispl4": { + "description": "Model VISpl4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "National Center for Complementary and Integrative Health", - "default": "National Center for Complementary and Integrative Health", - "enum": [ - "National Center for Complementary and Integrative Health" - ], + "const": "Posterolateral visual area, layer 4", + "default": "Posterolateral visual area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "NCCIH", - "default": "NCCIH", - "enum": [ - "NCCIH" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISpl4", + "default": "VISpl4", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "869", + "default": "869", + "title": "Id", + "type": "string" + } + }, + "title": "_Vispl4", + "type": "object" + }, + "_Vispl5": { + "description": "Model VISpl5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "const": "00190t495", - "default": "00190t495", - "enum": [ - "00190t495" - ], - "title": "Registry Identifier", + "name": { + "const": "Posterolateral visual area, layer 5", + "default": "Posterolateral visual area, layer 5", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISpl5", + "default": "VISpl5", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "902", + "default": "902", + "title": "Id", "type": "string" } }, - "title": "_National_Center_For_Complementary_And_Integrative_Health", + "title": "_Vispl5", "type": "object" }, - "_National_Institute_Of_Mental_Health": { - "description": "Model National Institute of Mental Health", + "_Vispl6A": { + "description": "Model VISpl6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "National Institute of Mental Health", - "default": "National Institute of Mental Health", - "enum": [ - "National Institute of Mental Health" - ], + "const": "Posterolateral visual area, layer 6a", + "default": "Posterolateral visual area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "NIMH", - "default": "NIMH", - "enum": [ - "NIMH" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISpl6a", + "default": "VISpl6a", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "04xeg9z08", - "default": "04xeg9z08", - "enum": [ - "04xeg9z08" - ], - "title": "Registry Identifier", + "id": { + "const": "377", + "default": "377", + "title": "Id", "type": "string" } }, - "title": "_National_Institute_Of_Mental_Health", + "title": "_Vispl6A", "type": "object" }, - "_National_Institute_Of_Neurological_Disorders_And_Stroke": { - "description": "Model National Institute of Neurological Disorders and Stroke", + "_Vispl6B": { + "description": "Model VISpl6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "National Institute of Neurological Disorders and Stroke", - "default": "National Institute of Neurological Disorders and Stroke", - "enum": [ - "National Institute of Neurological Disorders and Stroke" - ], + "const": "Posterolateral visual area, layer 6b", + "default": "Posterolateral visual area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "NINDS", - "default": "NINDS", - "enum": [ - "NINDS" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISpl6b", + "default": "VISpl6b", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "01s5ya894", - "default": "01s5ya894", - "enum": [ - "01s5ya894" - ], - "title": "Registry Identifier", + "id": { + "const": "393", + "default": "393", + "title": "Id", "type": "string" } }, - "title": "_National_Institute_Of_Neurological_Disorders_And_Stroke", + "title": "_Vispl6B", "type": "object" }, - "_National_Instruments": { - "description": "Model National Instruments", + "_Vispm": { + "description": "Model VISpm", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "National Instruments", - "default": "National Instruments", - "enum": [ - "National Instruments" - ], + "const": "posteromedial visual area", + "default": "posteromedial visual area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISpm", + "default": "VISpm", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "026exqw73", - "default": "026exqw73", - "enum": [ - "026exqw73" - ], - "title": "Registry Identifier", + "id": { + "const": "533", + "default": "533", + "title": "Id", "type": "string" } }, - "title": "_National_Instruments", + "title": "_Vispm", "type": "object" }, - "_Navitar": { - "description": "Model Navitar", + "_Vispm1": { + "description": "Model VISpm1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Navitar", - "default": "Navitar", - "enum": [ - "Navitar" - ], + "const": "posteromedial visual area, layer 1", + "default": "posteromedial visual area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISpm1", + "default": "VISpm1", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "805", + "default": "805", + "title": "Id", + "type": "string" } }, - "title": "_Navitar", + "title": "_Vispm1", "type": "object" }, - "_Ncbi": { - "additionalProperties": false, - "description": "Model NCBI", + "_Vispm2_3": { + "description": "Model VISpm2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "National Center for Biotechnology Information", - "default": "National Center for Biotechnology Information", - "enum": [ - "National Center for Biotechnology Information" - ], + "const": "posteromedial visual area, layer 2/3", + "default": "posteromedial visual area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "NCBI", - "default": "NCBI", - "enum": [ - "NCBI" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISpm2/3", + "default": "VISpm2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "41", + "default": "41", + "title": "Id", "type": "string" } }, - "title": "_Ncbi", + "title": "_Vispm2_3", "type": "object" }, - "_Neurophotometrics": { - "description": "Model Neurophotometrics", + "_Vispm4": { + "description": "Model VISpm4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Neurophotometrics", - "default": "Neurophotometrics", - "enum": [ - "Neurophotometrics" - ], + "const": "posteromedial visual area, layer 4", + "default": "posteromedial visual area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISpm4", + "default": "VISpm4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "501", + "default": "501", + "title": "Id", + "type": "string" + } + }, + "title": "_Vispm4", + "type": "object" + }, + "_Vispm5": { + "description": "Model VISpm5", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "posteromedial visual area, layer 5", + "default": "posteromedial visual area, layer 5", + "title": "Name", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISpm5", + "default": "VISpm5", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "565", + "default": "565", + "title": "Id", + "type": "string" } }, - "title": "_Neurophotometrics", + "title": "_Vispm5", "type": "object" }, - "_New_Scale_Technologies": { - "description": "Model New Scale Technologies", + "_Vispm6A": { + "description": "Model VISpm6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "New Scale Technologies", - "default": "New Scale Technologies", - "enum": [ - "New Scale Technologies" - ], + "const": "posteromedial visual area, layer 6a", + "default": "posteromedial visual area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISpm6a", + "default": "VISpm6a", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "257", + "default": "257", + "title": "Id", + "type": "string" } }, - "title": "_New_Scale_Technologies", + "title": "_Vispm6A", "type": "object" }, - "_New_York_University": { - "description": "Model New York University", + "_Vispm6B": { + "description": "Model VISpm6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "New York University", - "default": "New York University", - "enum": [ - "New York University" - ], + "const": "posteromedial visual area, layer 6b", + "default": "posteromedial visual area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "NYU", - "default": "NYU", - "enum": [ - "NYU" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISpm6b", + "default": "VISpm6b", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "0190ak572", - "default": "0190ak572", - "enum": [ - "0190ak572" - ], - "title": "Registry Identifier", + "id": { + "const": "469", + "default": "469", + "title": "Id", "type": "string" } }, - "title": "_New_York_University", + "title": "_Vispm6B", "type": "object" }, - "_Nikon": { - "description": "Model Nikon", + "_Vispor": { + "description": "Model VISpor", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Nikon", - "default": "Nikon", - "enum": [ - "Nikon" - ], + "const": "Postrhinal area", + "default": "Postrhinal area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "VISpor", + "default": "VISpor", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "0280y9h11", - "default": "0280y9h11", - "enum": [ - "0280y9h11" - ], - "title": "Registry Identifier", + "id": { + "const": "312782628", + "default": "312782628", + "title": "Id", "type": "string" } }, - "title": "_Nikon", + "title": "_Vispor", "type": "object" }, - "_Nresearch_Inc": { - "description": "Model NResearch Inc", + "_Vispor1": { + "description": "Model VISpor1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "NResearch Inc", - "default": "NResearch Inc", - "enum": [ - "NResearch Inc" - ], + "const": "Postrhinal area, layer 1", + "default": "Postrhinal area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISpor1", + "default": "VISpor1", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782632", + "default": "312782632", + "title": "Id", + "type": "string" } }, - "title": "_Nresearch_Inc", + "title": "_Vispor1", "type": "object" }, - "_Olympus": { - "description": "Model Olympus", + "_Vispor2_3": { + "description": "Model VISpor2/3", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Olympus", - "default": "Olympus", - "enum": [ - "Olympus" - ], + "const": "Postrhinal area, layer 2/3", + "default": "Postrhinal area, layer 2/3", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISpor2/3", + "default": "VISpor2/3", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "id": { + "const": "312782636", + "default": "312782636", + "title": "Id", + "type": "string" + } + }, + "title": "_Vispor2_3", + "type": "object" + }, + "_Vispor4": { + "description": "Model VISpor4", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "Postrhinal area, layer 4", + "default": "Postrhinal area, layer 4", + "title": "Name", + "type": "string" }, - "registry_identifier": { - "const": "02vcdte90", - "default": "02vcdte90", - "enum": [ - "02vcdte90" - ], - "title": "Registry Identifier", + "acronym": { + "const": "VISpor4", + "default": "VISpor4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782640", + "default": "312782640", + "title": "Id", "type": "string" } }, - "title": "_Olympus", + "title": "_Vispor4", "type": "object" }, - "_Open_Ephys_Production_Site": { - "description": "Model Open Ephys Production Site", + "_Vispor5": { + "description": "Model VISpor5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Open Ephys Production Site", - "default": "Open Ephys Production Site", - "enum": [ - "Open Ephys Production Site" - ], + "const": "Postrhinal area, layer 5", + "default": "Postrhinal area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "OEPS", - "default": "OEPS", - "enum": [ - "OEPS" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISpor5", + "default": "VISpor5", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "007rkz355", - "default": "007rkz355", - "enum": [ - "007rkz355" - ], - "title": "Registry Identifier", + "id": { + "const": "312782644", + "default": "312782644", + "title": "Id", "type": "string" } }, - "title": "_Open_Ephys_Production_Site", + "title": "_Vispor5", "type": "object" }, - "_Optotune": { - "description": "Model Optotune", + "_Vispor6A": { + "description": "Model VISpor6a", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Optotune", - "default": "Optotune", - "enum": [ - "Optotune" - ], + "const": "Postrhinal area, layer 6a", + "default": "Postrhinal area, layer 6a", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISpor6a", + "default": "VISpor6a", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "312782648", + "default": "312782648", + "title": "Id", + "type": "string" } }, - "title": "_Optotune", + "title": "_Vispor6A", "type": "object" }, - "_Orcid": { - "additionalProperties": false, - "description": "Model ORCID", + "_Vispor6B": { + "description": "Model VISpor6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Open Researcher and Contributor ID", - "default": "Open Researcher and Contributor ID", - "enum": [ - "Open Researcher and Contributor ID" - ], + "const": "Postrhinal area, layer 6b", + "default": "Postrhinal area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "ORCID", - "default": "ORCID", - "enum": [ - "ORCID" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISpor6b", + "default": "VISpor6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782652", + "default": "312782652", + "title": "Id", "type": "string" } }, - "title": "_Orcid", + "title": "_Vispor6B", "type": "object" }, - "_Other": { - "description": "Model Other", + "_Visrl": { + "description": "Model VISrl", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Other", - "default": "Other", - "enum": [ - "Other" - ], + "const": "Rostrolateral visual area", + "default": "Rostrolateral visual area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VISrl", + "default": "VISrl", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "417", + "default": "417", + "title": "Id", + "type": "string" } }, - "title": "_Other", + "title": "_Visrl", "type": "object" }, - "_Oxxius": { - "description": "Model Oxxius", + "_Visrl1": { + "description": "Model VISrl1", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Oxxius", - "default": "Oxxius", - "enum": [ - "Oxxius" - ], + "const": "Rostrolateral area, layer 1", + "default": "Rostrolateral area, layer 1", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISrl1", + "default": "VISrl1", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "312782604", + "default": "312782604", + "title": "Id", + "type": "string" + } + }, + "title": "_Visrl1", + "type": "object" + }, + "_Visrl2_3": { + "description": "Model VISrl2/3", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Rostrolateral area, layer 2/3", + "default": "Rostrolateral area, layer 2/3", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISrl2/3", + "default": "VISrl2/3", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782608", + "default": "312782608", + "title": "Id", + "type": "string" } }, - "title": "_Oxxius", + "title": "_Visrl2_3", "type": "object" }, - "_Pophys": { - "additionalProperties": false, - "description": "Model pophys", + "_Visrl4": { + "description": "Model VISrl4", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Planar optical physiology", - "default": "Planar optical physiology", - "enum": [ - "Planar optical physiology" - ], + "const": "Rostrolateral area, layer 4", + "default": "Rostrolateral area, layer 4", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "pophys", - "default": "pophys", - "enum": [ - "pophys" - ], - "title": "Abbreviation", + "acronym": { + "const": "VISrl4", + "default": "VISrl4", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782612", + "default": "312782612", + "title": "Id", "type": "string" } }, - "title": "_Pophys", + "title": "_Visrl4", "type": "object" }, - "_Prizmatix": { - "description": "Model Prizmatix", + "_Visrl5": { + "description": "Model VISrl5", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Prizmatix", - "default": "Prizmatix", - "enum": [ - "Prizmatix" - ], + "const": "Rostrolateral area, layer 5", + "default": "Rostrolateral area, layer 5", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISrl5", + "default": "VISrl5", + "title": "Acronym", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "id": { + "const": "312782616", + "default": "312782616", + "title": "Id", + "type": "string" + } + }, + "title": "_Visrl5", + "type": "object" + }, + "_Visrl6A": { + "description": "Model VISrl6a", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "name": { + "const": "Rostrolateral area, layer 6a", + "default": "Rostrolateral area, layer 6a", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VISrl6a", + "default": "VISrl6a", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782620", + "default": "312782620", + "title": "Id", + "type": "string" } }, - "title": "_Prizmatix", + "title": "_Visrl6A", "type": "object" }, - "_Quantifi": { - "description": "Model Quantifi", + "_Visrl6B": { + "description": "Model VISrl6b", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Quantifi", - "default": "Quantifi", - "enum": [ - "Quantifi" - ], + "const": "Rostrolateral area, layer 6b", + "default": "Rostrolateral area, layer 6b", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" + "acronym": { + "const": "VISrl6b", + "default": "VISrl6b", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "312782624", + "default": "312782624", + "title": "Id", + "type": "string" + } + }, + "title": "_Visrl6B", + "type": "object" + }, + "_Vl": { + "description": "Model VL", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "name": { + "const": "lateral ventricle", + "default": "lateral ventricle", + "title": "Name", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "acronym": { + "const": "VL", + "default": "VL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "81", + "default": "81", + "title": "Id", + "type": "string" } }, - "title": "_Quantifi", + "title": "_Vl", "type": "object" }, - "_Raspberry_Pi": { - "description": "Model Raspberry Pi", + "_Vlpo": { + "description": "Model VLPO", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Raspberry Pi", - "default": "Raspberry Pi", - "enum": [ - "Raspberry Pi" - ], + "const": "Ventrolateral preoptic nucleus", + "default": "Ventrolateral preoptic nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VLPO", + "default": "VLPO", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "689", + "default": "689", + "title": "Id", + "type": "string" } }, - "title": "_Raspberry_Pi", + "title": "_Vlpo", "type": "object" }, - "_Ror": { - "additionalProperties": false, - "description": "Model ROR", + "_Vm": { + "description": "Model VM", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Research Organization Registry", - "default": "Research Organization Registry", - "enum": [ - "Research Organization Registry" - ], + "const": "Ventral medial nucleus of the thalamus", + "default": "Ventral medial nucleus of the thalamus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "ROR", - "default": "ROR", - "enum": [ - "ROR" - ], - "title": "Abbreviation", + "acronym": { + "const": "VM", + "default": "VM", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "685", + "default": "685", + "title": "Id", "type": "string" } }, - "title": "_Ror", + "title": "_Vm", "type": "object" }, - "_Rrid": { - "additionalProperties": false, - "description": "Model RRID", + "_Vmh": { + "description": "Model VMH", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Research Resource Identifiers", - "default": "Research Resource Identifiers", - "enum": [ - "Research Resource Identifiers" - ], + "const": "Ventromedial hypothalamic nucleus", + "default": "Ventromedial hypothalamic nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "RRID", - "default": "RRID", - "enum": [ - "RRID" - ], - "title": "Abbreviation", + "acronym": { + "const": "VMH", + "default": "VMH", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "693", + "default": "693", + "title": "Id", "type": "string" } }, - "title": "_Rrid", + "title": "_Vmh", "type": "object" }, - "_Schneider_Kreuznach": { - "description": "Model Schneider-Kreuznach", + "_Vmpo": { + "description": "Model VMPO", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Schneider-Kreuznach", - "default": "Schneider-Kreuznach", - "enum": [ - "Schneider-Kreuznach" - ], + "const": "Ventromedial preoptic nucleus", + "default": "Ventromedial preoptic nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VMPO", + "default": "VMPO", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "576073699", + "default": "576073699", + "title": "Id", + "type": "string" } }, - "title": "_Schneider_Kreuznach", + "title": "_Vmpo", "type": "object" }, - "_Second_Order_Effects": { - "description": "Model Second Order Effects", + "_Vn": { + "description": "Model Vn", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Second Order Effects", - "default": "Second Order Effects", - "enum": [ - "Second Order Effects" - ], + "const": "trigeminal nerve", + "default": "trigeminal nerve", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "Vn", + "default": "Vn", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "901", + "default": "901", + "title": "Id", + "type": "string" } }, - "title": "_Second_Order_Effects", + "title": "_Vn", "type": "object" }, - "_Semrock": { - "description": "Model Semrock", + "_Vnc": { + "description": "Model VNC", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Semrock", - "default": "Semrock", - "enum": [ - "Semrock" - ], + "const": "Vestibular nuclei", + "default": "Vestibular nuclei", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VNC", + "default": "VNC", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "701", + "default": "701", + "title": "Id", + "type": "string" } }, - "title": "_Semrock", + "title": "_Vnc", "type": "object" }, - "_Sicgen": { - "description": "Model SICGEN", + "_Von": { + "description": "Model von", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "SICGEN", - "default": "SICGEN", - "enum": [ - "SICGEN" - ], + "const": "vomeronasal nerve", + "default": "vomeronasal nerve", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "von", + "default": "von", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "949", + "default": "949", + "title": "Id", + "type": "string" } }, - "title": "_Sicgen", + "title": "_Von", "type": "object" }, - "_Sigma_Aldrich": { - "description": "Model Sigma-Aldrich", + "_Vortran": { + "description": "Model Vortran", "properties": { "name": { - "const": "Sigma-Aldrich", - "default": "Sigma-Aldrich", - "enum": [ - "Sigma-Aldrich" - ], + "const": "Vortran", + "default": "Vortran", "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -8967,719 +58317,503 @@ "type": "null" } }, - "title": "_Sigma_Aldrich", + "title": "_Vortran", "type": "object" }, - "_Simons_Foundation": { - "description": "Model Simons Foundation", + "_Vp": { + "description": "Model VP", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Simons Foundation", - "default": "Simons Foundation", - "enum": [ - "Simons Foundation" - ], + "const": "Ventral posterior complex of the thalamus", + "default": "Ventral posterior complex of the thalamus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "01cmst727", - "default": "01cmst727", - "enum": [ - "01cmst727" - ], - "title": "Registry Identifier", + "acronym": { + "const": "VP", + "default": "VP", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "709", + "default": "709", + "title": "Id", "type": "string" } }, - "title": "_Simons_Foundation", + "title": "_Vp", "type": "object" }, - "_Slap": { - "additionalProperties": false, - "description": "Model slap", + "_Vpl": { + "description": "Model VPL", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Scanned line projection imaging", - "default": "Scanned line projection imaging", - "enum": [ - "Scanned line projection imaging" - ], + "const": "Ventral posterolateral nucleus of the thalamus", + "default": "Ventral posterolateral nucleus of the thalamus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "slap", - "default": "slap", - "enum": [ - "slap" - ], - "title": "Abbreviation", + "acronym": { + "const": "VPL", + "default": "VPL", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "718", + "default": "718", + "title": "Id", "type": "string" } }, - "title": "_Slap", + "title": "_Vpl", "type": "object" }, - "_Spim": { - "additionalProperties": false, - "description": "Model SPIM", + "_Vplpc": { + "description": "Model VPLpc", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Selective plane illumination microscopy", - "default": "Selective plane illumination microscopy", - "enum": [ - "Selective plane illumination microscopy" - ], + "const": "Ventral posterolateral nucleus of the thalamus, parvicellular part", + "default": "Ventral posterolateral nucleus of the thalamus, parvicellular part", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "SPIM", - "default": "SPIM", - "enum": [ - "SPIM" - ], - "title": "Abbreviation", + "acronym": { + "const": "VPLpc", + "default": "VPLpc", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "725", + "default": "725", + "title": "Id", "type": "string" } }, - "title": "_Spim", + "title": "_Vplpc", "type": "object" }, - "_Spinnaker": { - "description": "Model Spinnaker", + "_Vpm": { + "description": "Model VPM", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Spinnaker", - "default": "Spinnaker", - "enum": [ - "Spinnaker" - ], + "const": "Ventral posteromedial nucleus of the thalamus", + "default": "Ventral posteromedial nucleus of the thalamus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VPM", + "default": "VPM", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "733", + "default": "733", + "title": "Id", + "type": "string" } }, - "title": "_Spinnaker", + "title": "_Vpm", "type": "object" }, - "_Tamron": { - "description": "Model Tamron", + "_Vpmpc": { + "description": "Model VPMpc", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Tamron", - "default": "Tamron", - "enum": [ - "Tamron" - ], + "const": "Ventral posteromedial nucleus of the thalamus, parvicellular part", + "default": "Ventral posteromedial nucleus of the thalamus, parvicellular part", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "VPMpc", + "default": "VPMpc", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "741", + "default": "741", + "title": "Id", + "type": "string" } }, - "title": "_Tamron", + "title": "_Vpmpc", "type": "object" }, - "_Technical_Manufacturing_Corporation": { - "description": "Model Technical Manufacturing Corporation", + "_Vs": { + "description": "Model VS", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Technical Manufacturing Corporation", - "default": "Technical Manufacturing Corporation", - "enum": [ - "Technical Manufacturing Corporation" - ], + "const": "ventricular systems", + "default": "ventricular systems", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "TMC", - "default": "TMC", - "enum": [ - "TMC" - ], - "title": "Abbreviation", + "acronym": { + "const": "VS", + "default": "VS", + "title": "Acronym", "type": "string" }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" - }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "73", + "default": "73", + "title": "Id", + "type": "string" } }, - "title": "_Technical_Manufacturing_Corporation", + "title": "_Vs", "type": "object" }, - "_Teledyne_Flir": { - "description": "Model Teledyne FLIR", + "_Vta": { + "description": "Model VTA", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Teledyne FLIR", - "default": "Teledyne FLIR", - "enum": [ - "Teledyne FLIR" - ], + "const": "Ventral tegmental area", + "default": "Ventral tegmental area", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "FLIR", - "default": "FLIR", - "enum": [ - "FLIR" - ], - "title": "Abbreviation", + "acronym": { + "const": "VTA", + "default": "VTA", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "01j1gwp17", - "default": "01j1gwp17", - "enum": [ - "01j1gwp17" - ], - "title": "Registry Identifier", + "id": { + "const": "749", + "default": "749", + "title": "Id", "type": "string" } }, - "title": "_Teledyne_Flir", + "title": "_Vta", "type": "object" }, - "_Templeton_World_Charity_Foundation": { - "description": "Model Templeton World Charity Foundation", + "_Vtd": { + "description": "Model vtd", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Templeton World Charity Foundation", - "default": "Templeton World Charity Foundation", - "enum": [ - "Templeton World Charity Foundation" - ], + "const": "ventral tegmental decussation", + "default": "ventral tegmental decussation", "title": "Name", "type": "string" }, - "abbreviation": { - "const": "TWCF", - "default": "TWCF", - "enum": [ - "TWCF" - ], - "title": "Abbreviation", + "acronym": { + "const": "vtd", + "default": "vtd", + "title": "Acronym", "type": "string" }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" - }, - "registry_identifier": { - "const": "00x0z1472", - "default": "00x0z1472", - "enum": [ - "00x0z1472" - ], - "title": "Registry Identifier", + "id": { + "const": "397", + "default": "397", + "title": "Id", "type": "string" } }, - "title": "_Templeton_World_Charity_Foundation", + "title": "_Vtd", "type": "object" }, - "_The_Imaging_Source": { - "description": "Model The Imaging Source", + "_Vtn": { + "description": "Model VTN", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "The Imaging Source", - "default": "The Imaging Source", - "enum": [ - "The Imaging Source" - ], + "const": "Ventral tegmental nucleus", + "default": "Ventral tegmental nucleus", + "title": "Name", + "type": "string" + }, + "acronym": { + "const": "VTN", + "default": "VTN", + "title": "Acronym", + "type": "string" + }, + "id": { + "const": "757", + "default": "757", + "title": "Id", + "type": "string" + } + }, + "title": "_Vtn", + "type": "object" + }, + "_Vviiin": { + "description": "Model vVIIIn", + "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, + "name": { + "const": "vestibular nerve", + "default": "vestibular nerve", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "vVIIIn", + "default": "vVIIIn", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "413", + "default": "413", + "title": "Id", + "type": "string" } }, - "title": "_The_Imaging_Source", + "title": "_Vviiin", "type": "object" }, - "_The_Lee_Company": { - "description": "Model The Lee Company", + "_X": { + "description": "Model x", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "The Lee Company", - "default": "The Lee Company", - "enum": [ - "The Lee Company" - ], + "const": "Nucleus x", + "default": "Nucleus x", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "x", + "default": "x", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "765", + "default": "765", + "title": "Id", + "type": "string" } }, - "title": "_The_Lee_Company", + "title": "_X", "type": "object" }, - "_Thermo_Fisher_Scientific": { - "description": "Model Thermo Fisher Scientific", + "_Xi": { + "description": "Model Xi", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Thermo Fisher Scientific", - "default": "Thermo Fisher Scientific", - "enum": [ - "Thermo Fisher Scientific" - ], + "const": "Xiphoid thalamic nucleus", + "default": "Xiphoid thalamic nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "Xi", + "default": "Xi", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "03x1ewr52", - "default": "03x1ewr52", - "enum": [ - "03x1ewr52" - ], - "title": "Registry Identifier", + "id": { + "const": "560581559", + "default": "560581559", + "title": "Id", "type": "string" } }, - "title": "_Thermo_Fisher_Scientific", + "title": "_Xi", "type": "object" }, - "_Thorlabs": { - "description": "Model Thorlabs", + "_Xii": { + "description": "Model XII", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Thorlabs", - "default": "Thorlabs", - "enum": [ - "Thorlabs" - ], + "const": "Hypoglossal nucleus", + "default": "Hypoglossal nucleus", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": { - "name": "Research Organization Registry", - "abbreviation": "ROR" - }, - "discriminator": { - "mapping": { - "ADDGENE": "#/$defs/aind_data_schema_models__registries___Addgene", - "EMAPA": "#/$defs/_Emapa", - "MGI": "#/$defs/_Mgi", - "NCBI": "#/$defs/_Ncbi", - "ORCID": "#/$defs/_Orcid", - "ROR": "#/$defs/_Ror", - "RRID": "#/$defs/_Rrid" - }, - "propertyName": "abbreviation" - }, - "oneOf": [ - { - "$ref": "#/$defs/aind_data_schema_models__registries___Addgene" - }, - { - "$ref": "#/$defs/_Emapa" - }, - { - "$ref": "#/$defs/_Mgi" - }, - { - "$ref": "#/$defs/_Ncbi" - }, - { - "$ref": "#/$defs/_Orcid" - }, - { - "$ref": "#/$defs/_Ror" - }, - { - "$ref": "#/$defs/_Rrid" - } - ], - "title": "Registry" + "acronym": { + "const": "XII", + "default": "XII", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "const": "04gsnvb07", - "default": "04gsnvb07", - "enum": [ - "04gsnvb07" - ], - "title": "Registry Identifier", + "id": { + "const": "773", + "default": "773", + "title": "Id", "type": "string" } }, - "title": "_Thorlabs", + "title": "_Xii", "type": "object" }, - "_Tymphany": { - "description": "Model Tymphany", + "_Xn": { + "description": "Model Xn", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Tymphany", - "default": "Tymphany", - "enum": [ - "Tymphany" - ], + "const": "vagus nerve", + "default": "vagus nerve", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "Xn", + "default": "Xn", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "917", + "default": "917", + "title": "Id", + "type": "string" } }, - "title": "_Tymphany", + "title": "_Xn", "type": "object" }, - "_Vieworks": { - "description": "Model Vieworks", + "_Y": { + "description": "Model y", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Vieworks", - "default": "Vieworks", - "enum": [ - "Vieworks" - ], + "const": "Nucleus y", + "default": "Nucleus y", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "y", + "default": "y", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "781", + "default": "781", + "title": "Id", + "type": "string" } }, - "title": "_Vieworks", + "title": "_Y", "type": "object" }, - "_Vortran": { - "description": "Model Vortran", + "_Zi": { + "description": "Model ZI", "properties": { + "atlas": { + "const": "CCFv3", + "default": "CCFv3", + "title": "Atlas", + "type": "string" + }, "name": { - "const": "Vortran", - "default": "Vortran", - "enum": [ - "Vortran" - ], + "const": "Zona incerta", + "default": "Zona incerta", "title": "Name", "type": "string" }, - "abbreviation": { - "const": null, - "default": null, - "enum": [ - null - ], - "title": "Abbreviation", - "type": "null" - }, - "registry": { - "default": null, - "title": "Registry", - "type": "null" + "acronym": { + "const": "ZI", + "default": "ZI", + "title": "Acronym", + "type": "string" }, - "registry_identifier": { - "default": null, - "title": "Registry Identifier", - "type": "null" + "id": { + "const": "797", + "default": "797", + "title": "Id", + "type": "string" } }, - "title": "_Vortran", + "title": "_Zi", "type": "object" }, "aind_data_schema_models__organizations___Addgene": { @@ -9688,18 +58822,12 @@ "name": { "const": "Addgene", "default": "Addgene", - "enum": [ - "Addgene" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -9748,9 +58876,6 @@ "registry_identifier": { "const": "01nn1pw54", "default": "01nn1pw54", - "enum": [ - "01nn1pw54" - ], "title": "Registry Identifier", "type": "string" } @@ -9765,18 +58890,12 @@ "name": { "const": "Addgene", "default": "Addgene", - "enum": [ - "Addgene" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ADDGENE", "default": "ADDGENE", - "enum": [ - "ADDGENE" - ], "title": "Abbreviation", "type": "string" } @@ -9795,11 +58914,8 @@ "type": "string" }, "schema_version": { - "const": "1.0.3", - "default": "1.0.3", - "enum": [ - "1.0.3" - ], + "const": "1.0.4", + "default": "1.0.4", "title": "Schema Version", "type": "string" }, diff --git a/schemas/subject_schema.json b/schemas/subject_schema.json index d41b49b9c..de0baebe1 100644 --- a/schemas/subject_schema.json +++ b/schemas/subject_schema.json @@ -256,18 +256,12 @@ "name": { "const": "Addgene", "default": "Addgene", - "enum": [ - "Addgene" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ADDGENE", "default": "ADDGENE", - "enum": [ - "ADDGENE" - ], "title": "Abbreviation", "type": "string" } @@ -281,18 +275,12 @@ "name": { "const": "Allen Institute", "default": "Allen Institute", - "enum": [ - "Allen Institute" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "AI", "default": "AI", - "enum": [ - "AI" - ], "title": "Abbreviation", "type": "string" }, @@ -341,9 +329,6 @@ "registry_identifier": { "const": "03cpe7c52", "default": "03cpe7c52", - "enum": [ - "03cpe7c52" - ], "title": "Registry Identifier", "type": "string" } @@ -357,9 +342,6 @@ "name": { "const": "Callithrix jacchus", "default": "Callithrix jacchus", - "enum": [ - "Callithrix jacchus" - ], "title": "Name", "type": "string" }, @@ -408,9 +390,6 @@ "registry_identifier": { "const": "NCBI:txid9483", "default": "NCBI:txid9483", - "enum": [ - "NCBI:txid9483" - ], "title": "Registry Identifier", "type": "string" } @@ -424,18 +403,12 @@ "name": { "const": "Columbia University", "default": "Columbia University", - "enum": [ - "Columbia University" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Columbia", "default": "Columbia", - "enum": [ - "Columbia" - ], "title": "Abbreviation", "type": "string" }, @@ -484,9 +457,6 @@ "registry_identifier": { "const": "00hj8s172", "default": "00hj8s172", - "enum": [ - "00hj8s172" - ], "title": "Registry Identifier", "type": "string" } @@ -501,18 +471,12 @@ "name": { "const": "Edinburgh Mouse Atlas Project", "default": "Edinburgh Mouse Atlas Project", - "enum": [ - "Edinburgh Mouse Atlas Project" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "EMAPA", "default": "EMAPA", - "enum": [ - "EMAPA" - ], "title": "Abbreviation", "type": "string" } @@ -526,9 +490,6 @@ "name": { "const": "Homo sapiens", "default": "Homo sapiens", - "enum": [ - "Homo sapiens" - ], "title": "Name", "type": "string" }, @@ -577,9 +538,6 @@ "registry_identifier": { "const": "NCBI:txid9606", "default": "NCBI:txid9606", - "enum": [ - "NCBI:txid9606" - ], "title": "Registry Identifier", "type": "string" } @@ -593,18 +551,12 @@ "name": { "const": "Huazhong University of Science and Technology", "default": "Huazhong University of Science and Technology", - "enum": [ - "Huazhong University of Science and Technology" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "HUST", "default": "HUST", - "enum": [ - "HUST" - ], "title": "Abbreviation", "type": "string" }, @@ -653,9 +605,6 @@ "registry_identifier": { "const": "00p991c53", "default": "00p991c53", - "enum": [ - "00p991c53" - ], "title": "Registry Identifier", "type": "string" } @@ -669,18 +618,12 @@ "name": { "const": "Jackson Laboratory", "default": "Jackson Laboratory", - "enum": [ - "Jackson Laboratory" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "JAX", "default": "JAX", - "enum": [ - "JAX" - ], "title": "Abbreviation", "type": "string" }, @@ -729,9 +672,6 @@ "registry_identifier": { "const": "021sy4w91", "default": "021sy4w91", - "enum": [ - "021sy4w91" - ], "title": "Registry Identifier", "type": "string" } @@ -745,18 +685,12 @@ "name": { "const": "Janelia Research Campus", "default": "Janelia Research Campus", - "enum": [ - "Janelia Research Campus" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "Janelia", "default": "Janelia", - "enum": [ - "Janelia" - ], "title": "Abbreviation", "type": "string" }, @@ -805,9 +739,6 @@ "registry_identifier": { "const": "013sk6x84", "default": "013sk6x84", - "enum": [ - "013sk6x84" - ], "title": "Registry Identifier", "type": "string" } @@ -821,9 +752,6 @@ "name": { "const": "Macaca mulatta", "default": "Macaca mulatta", - "enum": [ - "Macaca mulatta" - ], "title": "Name", "type": "string" }, @@ -872,9 +800,6 @@ "registry_identifier": { "const": "NCBI:txid9544", "default": "NCBI:txid9544", - "enum": [ - "NCBI:txid9544" - ], "title": "Registry Identifier", "type": "string" } @@ -889,18 +814,12 @@ "name": { "const": "Mouse Genome Informatics", "default": "Mouse Genome Informatics", - "enum": [ - "Mouse Genome Informatics" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "MGI", "default": "MGI", - "enum": [ - "MGI" - ], "title": "Abbreviation", "type": "string" } @@ -914,9 +833,6 @@ "name": { "const": "Mus musculus", "default": "Mus musculus", - "enum": [ - "Mus musculus" - ], "title": "Name", "type": "string" }, @@ -965,9 +881,6 @@ "registry_identifier": { "const": "NCBI:txid10090", "default": "NCBI:txid10090", - "enum": [ - "NCBI:txid10090" - ], "title": "Registry Identifier", "type": "string" } @@ -982,18 +895,12 @@ "name": { "const": "National Center for Biotechnology Information", "default": "National Center for Biotechnology Information", - "enum": [ - "National Center for Biotechnology Information" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NCBI", "default": "NCBI", - "enum": [ - "NCBI" - ], "title": "Abbreviation", "type": "string" } @@ -1007,18 +914,12 @@ "name": { "const": "New York University", "default": "New York University", - "enum": [ - "New York University" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "NYU", "default": "NYU", - "enum": [ - "NYU" - ], "title": "Abbreviation", "type": "string" }, @@ -1067,9 +968,6 @@ "registry_identifier": { "const": "0190ak572", "default": "0190ak572", - "enum": [ - "0190ak572" - ], "title": "Registry Identifier", "type": "string" } @@ -1084,18 +982,12 @@ "name": { "const": "Open Researcher and Contributor ID", "default": "Open Researcher and Contributor ID", - "enum": [ - "Open Researcher and Contributor ID" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ORCID", "default": "ORCID", - "enum": [ - "ORCID" - ], "title": "Abbreviation", "type": "string" } @@ -1109,18 +1001,12 @@ "name": { "const": "Other", "default": "Other", - "enum": [ - "Other" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": null, "default": null, - "enum": [ - null - ], "title": "Abbreviation", "type": "null" }, @@ -1144,9 +1030,6 @@ "name": { "const": "Rattus norvegicus", "default": "Rattus norvegicus", - "enum": [ - "Rattus norvegicus" - ], "title": "Name", "type": "string" }, @@ -1195,9 +1078,6 @@ "registry_identifier": { "const": "NCBI:txid10116", "default": "NCBI:txid10116", - "enum": [ - "NCBI:txid10116" - ], "title": "Registry Identifier", "type": "string" } @@ -1212,18 +1092,12 @@ "name": { "const": "Research Organization Registry", "default": "Research Organization Registry", - "enum": [ - "Research Organization Registry" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "ROR", "default": "ROR", - "enum": [ - "ROR" - ], "title": "Abbreviation", "type": "string" } @@ -1238,18 +1112,12 @@ "name": { "const": "Research Resource Identifiers", "default": "Research Resource Identifiers", - "enum": [ - "Research Resource Identifiers" - ], "title": "Name", "type": "string" }, "abbreviation": { "const": "RRID", "default": "RRID", - "enum": [ - "RRID" - ], "title": "Abbreviation", "type": "string" } @@ -1268,11 +1136,8 @@ "type": "string" }, "schema_version": { - "const": "1.0.2", - "default": "1.0.2", - "enum": [ - "1.0.2" - ], + "const": "1.0.3", + "default": "1.0.3", "title": "Schema Version", "type": "string" }, diff --git a/src/aind_data_schema/core/acquisition.py b/src/aind_data_schema/core/acquisition.py index 26b0836e6..a98e14f01 100644 --- a/src/aind_data_schema/core/acquisition.py +++ b/src/aind_data_schema/core/acquisition.py @@ -45,7 +45,7 @@ class Acquisition(AindCoreModel): _DESCRIBED_BY_URL = AindCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/acquisition.py" describedBy: str = Field(default=_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL}) - schema_version: SkipValidation[Literal["1.0.3"]] = Field(default="1.0.3") + schema_version: SkipValidation[Literal["1.0.4"]] = Field(default="1.0.4") protocol_id: List[str] = Field(default=[], title="Protocol ID", description="DOI for protocols.io") experimenter_full_name: List[str] = Field( ..., diff --git a/src/aind_data_schema/core/data_description.py b/src/aind_data_schema/core/data_description.py index 9acf0987f..9248cbeb7 100644 --- a/src/aind_data_schema/core/data_description.py +++ b/src/aind_data_schema/core/data_description.py @@ -40,7 +40,7 @@ class DataDescription(AindCoreModel): _DESCRIBED_BY_URL = AindCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/data_description.py" describedBy: str = Field(default=_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL}) - schema_version: SkipValidation[Literal["1.0.3"]] = Field(default="1.0.3") + schema_version: SkipValidation[Literal["1.0.4"]] = Field(default="1.0.4") license: Literal["CC-BY-4.0"] = Field("CC-BY-4.0", title="License") platform: Platform.ONE_OF = Field( diff --git a/src/aind_data_schema/core/instrument.py b/src/aind_data_schema/core/instrument.py index a4df94bf7..33062c8c2 100644 --- a/src/aind_data_schema/core/instrument.py +++ b/src/aind_data_schema/core/instrument.py @@ -35,7 +35,7 @@ class Instrument(AindCoreModel): _DESCRIBED_BY_URL = AindCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/instrument.py" describedBy: str = Field(default=_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL}) - schema_version: SkipValidation[Literal["1.0.3"]] = Field(default="1.0.3") + schema_version: SkipValidation[Literal["1.0.4"]] = Field(default="1.0.4") instrument_id: Optional[str] = Field( default=None, diff --git a/src/aind_data_schema/core/metadata.py b/src/aind_data_schema/core/metadata.py index e428da660..a44a02dfa 100644 --- a/src/aind_data_schema/core/metadata.py +++ b/src/aind_data_schema/core/metadata.py @@ -72,7 +72,7 @@ class Metadata(AindCoreModel): _DESCRIBED_BY_URL = AindCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/metadata.py" describedBy: str = Field(default=_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL}) - schema_version: SkipValidation[Literal["1.1.1"]] = Field(default="1.1.1") + schema_version: SkipValidation[Literal["1.1.2"]] = Field(default="1.1.2") id: UUID = Field( default_factory=uuid4, alias="_id", diff --git a/src/aind_data_schema/core/procedures.py b/src/aind_data_schema/core/procedures.py index 7731da574..1903c62f9 100644 --- a/src/aind_data_schema/core/procedures.py +++ b/src/aind_data_schema/core/procedures.py @@ -650,7 +650,7 @@ class Procedures(AindCoreModel): _DESCRIBED_BY_URL = AindCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/procedures.py" describedBy: str = Field(default=_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL}) - schema_version: SkipValidation[Literal["1.1.3"]] = Field(default="1.1.3") + schema_version: SkipValidation[Literal["1.1.4"]] = Field(default="1.1.4") subject_id: str = Field( ..., description="Unique identifier for the subject. If this is not a Allen LAS ID, indicate this in the Notes.", diff --git a/src/aind_data_schema/core/processing.py b/src/aind_data_schema/core/processing.py index 0c0107107..50f16bd67 100644 --- a/src/aind_data_schema/core/processing.py +++ b/src/aind_data_schema/core/processing.py @@ -125,7 +125,7 @@ class Processing(AindCoreModel): _DESCRIBED_BY_URL: str = AindCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/processing.py" describedBy: str = Field(default=_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL}) - schema_version: SkipValidation[Literal["1.1.3"]] = Field(default="1.1.3") + schema_version: SkipValidation[Literal["1.1.4"]] = Field(default="1.1.4") processing_pipeline: PipelineProcess = Field( ..., description="Pipeline used to process data", title="Processing Pipeline" diff --git a/src/aind_data_schema/core/quality_control.py b/src/aind_data_schema/core/quality_control.py index fdc116b85..8bc2f2a2d 100644 --- a/src/aind_data_schema/core/quality_control.py +++ b/src/aind_data_schema/core/quality_control.py @@ -199,7 +199,7 @@ class QualityControl(AindCoreModel): _DESCRIBED_BY_URL = AindCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/quality_control.py" describedBy: str = Field(default=_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL}) - schema_version: SkipValidation[Literal["1.2.1"]] = Field(default="1.2.1") + schema_version: SkipValidation[Literal["1.2.2"]] = Field(default="1.2.2") evaluations: List[QCEvaluation] = Field(..., title="Evaluations") notes: Optional[str] = Field(default=None, title="Notes") diff --git a/src/aind_data_schema/core/rig.py b/src/aind_data_schema/core/rig.py index 8674a3d0c..5a783a790 100644 --- a/src/aind_data_schema/core/rig.py +++ b/src/aind_data_schema/core/rig.py @@ -51,7 +51,7 @@ class Rig(AindCoreModel): _DESCRIBED_BY_URL = AindCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/rig.py" describedBy: str = Field(default=_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL}) - schema_version: SkipValidation[Literal["1.0.3"]] = Field(default="1.0.3") + schema_version: SkipValidation[Literal["1.0.4"]] = Field(default="1.0.4") rig_id: str = Field( ..., description="Unique rig identifier, name convention: --", diff --git a/src/aind_data_schema/core/session.py b/src/aind_data_schema/core/session.py index b6c120fdd..03f12e925 100644 --- a/src/aind_data_schema/core/session.py +++ b/src/aind_data_schema/core/session.py @@ -537,7 +537,7 @@ class Session(AindCoreModel): _DESCRIBED_BY_URL = AindCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/session.py" describedBy: str = Field(default=_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL}) - schema_version: SkipValidation[Literal["1.0.3"]] = Field(default="1.0.3") + schema_version: SkipValidation[Literal["1.0.4"]] = Field(default="1.0.4") protocol_id: List[str] = Field(default=[], title="Protocol ID", description="DOI for protocols.io") experimenter_full_name: List[str] = Field( ..., diff --git a/src/aind_data_schema/core/subject.py b/src/aind_data_schema/core/subject.py index 5d96e4421..cfa8744ae 100644 --- a/src/aind_data_schema/core/subject.py +++ b/src/aind_data_schema/core/subject.py @@ -89,7 +89,7 @@ class Subject(AindCoreModel): _DESCRIBED_BY_URL = AindCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/subject.py" describedBy: str = Field(default=_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL}) - schema_version: SkipValidation[Literal["1.0.2"]] = Field(default="1.0.2") + schema_version: SkipValidation[Literal["1.0.3"]] = Field(default="1.0.3") subject_id: str = Field( ..., description="Unique identifier for the subject. If this is not a Allen LAS ID, indicate this in the Notes.",