-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathanatomical_structure.json
760 lines (760 loc) · 30.2 KB
/
anatomical_structure.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
{
"$defs": {
"ANATOMICALDIRECTION": {
"description": "A controlled vocabulary term defining axis direction in terms of anatomical direction.",
"enum": [
"left_to_right",
"posterior_to_anterior",
"inferior_to_superior",
"superior_to_inferior",
"anterior_to_posterior"
],
"title": "ANATOMICALDIRECTION",
"type": "string"
},
"AnatomicalAnnotationSet": {
"additionalProperties": false,
"description": "An anatomical annotation set is a versioned release of a set of anatomical annotations anchored in the same anatomical space that divides the space into distinct segments following some annotation criteria or parcellation scheme. For example, the anatomical annotation set of 3D image based reference atlases (e.g. Allen Mouse CCF) can be expressed as a set of label indices of single multi-valued image annotations or as a set of segmentation masks (ref: ILX:0777108, RRID:SCR_023499)",
"properties": {
"category": {
"enum": [
"AnS:AnatomicalAnnotationSet"
],
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"parameterizes": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
}
],
"description": "Reference to the anatomical space for which the anatomical annotation set is anchored",
"type": "string"
},
"revision_of": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
},
{
"type": "null"
}
],
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"parameterizes",
"version",
"id",
"name",
"description"
],
"title": "AnatomicalAnnotationSet",
"type": "object"
},
"AnatomicalSpace": {
"additionalProperties": false,
"description": "An anatomical space is versioned release of a mathematical space with a defined mapping between the anatomical axes and the mathematical axes. An anatomical space may be defined by a reference image chosen as the biological reference for an anatomical structure of interest derived from a single or multiple specimens (ref: ILX:0777106, RRID:SCR_023499)",
"properties": {
"category": {
"enum": [
"AnS:AnatomicalSpace"
],
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"measures": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
}
],
"description": "Reference to the specific image dataset used to define the anatomical space.",
"type": "string"
},
"name": {
"type": "string"
},
"revision_of": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
},
{
"type": "null"
}
],
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"measures",
"version",
"id",
"name",
"description"
],
"title": "AnatomicalSpace",
"type": "object"
},
"DISTANCEUNIT": {
"description": "",
"enum": [
"mm",
"um",
"m"
],
"title": "DISTANCEUNIT",
"type": "string"
},
"ImageDataset": {
"additionalProperties": false,
"description": "An image dataset is versioned release of a multidimensional regular grid of measurements and metadata required for a morphological representation of an entity such as an anatomical structure (ref: OBI_0003327, RRID:SCR_006266)",
"properties": {
"category": {
"enum": [
"AnS:ImageDataset"
],
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"revision_of": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
},
{
"type": "null"
}
],
"type": "string"
},
"unit": {
"$ref": "#/$defs/DISTANCEUNIT",
"description": "A controlled vocabulary attribute defining the length unit of the x, y, and z resolution values."
},
"version": {
"type": "string"
},
"x_direction": {
"$ref": "#/$defs/ANATOMICALDIRECTION",
"description": "A controlled vocabulary attribute defining the x axis direction in terms of anatomical direction."
},
"x_resolution": {
"description": "The resolution (length / pixel) in along the x axis (numerical value part).",
"type": [
"number",
"null"
]
},
"x_size": {
"description": "The number of pixels/voxels (size) along the x axis.",
"minimum": 1,
"type": [
"integer",
"null"
]
},
"y_direction": {
"$ref": "#/$defs/ANATOMICALDIRECTION",
"description": "A controlled vocabulary attribute defining the y axis direction in terms of anatomical direction."
},
"y_resolution": {
"description": "The resolution (length / pixel) in along the y axis (numerical value part).",
"type": [
"number",
"null"
]
},
"y_size": {
"description": "The number of pixels/voxels (size) along the y axis.",
"minimum": 1,
"type": [
"integer",
"null"
]
},
"z_direction": {
"$ref": "#/$defs/ANATOMICALDIRECTION",
"description": "A controlled vocabulary attribute defining the z axis direction in terms of anatomical direction."
},
"z_resolution": {
"description": "The resolution (length / pixel) in along the z axis (numerical value part).",
"type": [
"number",
"null"
]
},
"z_size": {
"description": "The number of pixels/voxels (size) along the y axis.",
"minimum": 1,
"type": [
"integer",
"null"
]
}
},
"required": [
"version",
"id",
"name",
"description"
],
"title": "ImageDataset",
"type": "object"
},
"ParcellationAnnotation": {
"additionalProperties": false,
"description": "A parcellation annotation defines a specific segment of an anatomical space denoted by an internal identifier and is a unique and exclusive member of a versioned release anatomical annotation set. For example, in the case where the anatomical annotation set is a single multi-value image mask (e.g. Allen Mouse CCF), a specific annotation corresponds to a specific label index (internal identifier) in the mask.",
"properties": {
"internal_identifier": {
"description": "An identifier that uniquely denotes a specific parcellation annotation within the context of an anatomical annotation set",
"type": "string"
},
"part_of_anatomical_annotation_set": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
}
],
"type": "string"
},
"voxel_count": {
"description": "The number of voxels (3D pixels) spanned by the parcellation annotation (optional).",
"minimum": 0,
"type": [
"integer",
"null"
]
}
},
"required": [
"part_of_anatomical_annotation_set",
"internal_identifier"
],
"title": "ParcellationAnnotation",
"type": "object"
},
"ParcellationAnnotationTermMap": {
"additionalProperties": false,
"description": "The parcellation annotation term map table defines the relationship between parcellation annotations and parcellation terms. A parcellation term is uniquely denoted by a parcellation term identifier and the parcellation terminology it belongs to. A parcellation term can be spatially parameterized by the union of one or more parcellation annotations within a versioned release of an anatomical annotation set. For example, annotations defining individual cortical layers in cortical region R (R1, R2/3, R4, etc) can be combined to define the parent region R.",
"properties": {
"subject_parcellation_annotation": {
"anyOf": [
{
"$ref": "#/$defs/ParcellationAnnotation"
},
{
"type": "string"
}
],
"description": "Reference to the parcellation annotation that is the subject of the association.",
"type": "string"
},
"subject_parcellation_term": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
}
],
"description": "Reference to the parcellation term that is the subject of the association.",
"type": "string"
}
},
"required": [
"subject_parcellation_annotation",
"subject_parcellation_term"
],
"title": "ParcellationAnnotationTermMap",
"type": "object"
},
"ParcellationAtlas": {
"additionalProperties": false,
"description": "A parcellation atlas is a versioned release reference used to guide experiments or deal with the spatial relationship between objects or the location of objects within the context of some anatomical structure. An atlas is minimally defined by a notion of space (either implicit or explicit) and an annotation set. Reference atlases usually have additional parts that make them more useful in certain situations, such as a well defined coordinate system, delineations indicating the boundaries of various regions or cell populations, landmarks, and labels and names to make it easier to communicate about well known and useful locations (ref: ILX:0777109, RRID:SCR_023499).",
"properties": {
"category": {
"enum": [
"AnS:ParcellationAtlas"
],
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"description": {
"type": "string"
},
"has_anatomical_annotation_set": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
}
],
"description": "Reference to the anatomical annotation set component of the parcellation atlas",
"type": "string"
},
"has_anatomical_space": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
}
],
"description": "Reference to the anatomical space component of the parcellation atlas",
"type": "string"
},
"has_parcellation_terminology": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
}
],
"description": "Reference to the parcellation terminology component of the parcellation atlas",
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"revision_of": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
},
{
"type": "null"
}
],
"type": "string"
},
"specialization_of": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Reference to the general (non versioned) parcellation atlas for which the parcellation atlas is a specific version release of.",
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"has_anatomical_space",
"has_anatomical_annotation_set",
"has_parcellation_terminology",
"version",
"id",
"name",
"description"
],
"title": "ParcellationAtlas",
"type": "object"
},
"ParcellationColorAssignment": {
"additionalProperties": false,
"description": "The parcellation color assignment associates hex color value to a parcellation term within a versioned release of a color scheme. A parcellation term is uniquely denoted by a parcellation term identifier and the parcellation terminology it belongs to.",
"properties": {
"color": {
"description": "A string representing to hex triplet code of a color",
"type": [
"string",
"null"
]
},
"part_of_parcellation_color_scheme": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
}
],
"description": "Reference to the parcellation color scheme for which the color assignment is part of.",
"type": "string"
},
"subject_parcellation_term": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
}
],
"description": "Reference to the parcellation term identifier for which the color assignment is about.",
"type": "string"
}
},
"required": [
"part_of_parcellation_color_scheme",
"subject_parcellation_term"
],
"title": "ParcellationColorAssignment",
"type": "object"
},
"ParcellationColorScheme": {
"additionalProperties": false,
"description": "A parcellation color scheme is a versioned release color palette that can be used to visualize a parcellation terminology or its related parcellation annotation. A parcellation terminology may have zero or more parcellation color schemes and each color scheme is in context of a specific parcellation terminology, where each parcellation term is assigned a hex color value. A parcellation color scheme is defined as a part of one and only one parcellation terminology.",
"properties": {
"category": {
"enum": [
"AnS:ParcellationColorScheme"
],
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"revision_of": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
},
{
"type": "null"
}
],
"type": "string"
},
"subject_parcellation_terminology": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
}
],
"description": "Reference to the parcellation terminology for which the parcellation color scheme is in context of.",
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"subject_parcellation_terminology",
"version",
"id",
"name",
"description"
],
"title": "ParcellationColorScheme",
"type": "object"
},
"ParcellationTerm": {
"additionalProperties": false,
"description": "A parcellation term is an individual term within a specific parcellation terminology describing a single anatomical entity by a persistent identifier, name, symbol and description. A parcellation term is a unique and exclusive member of a versioned release parcellation terminology. Although term identifiers must be unique within the context of one versioned release of a parcellation terminology, they can be reused in different parcellation terminology versions enabling the representation of terminology updates and modifications over time.",
"properties": {
"category": {
"enum": [
"AnS:ParcellationTerm"
],
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"description": {
"type": "string"
},
"has_parent_parcellation_term": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Reference to the parent parcellation term for which the parcellation term is a child ( spatially part) of",
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"ordinal": {
"description": "Ordinal of the parcellation term among other terms within the context of the associated parcellation terminology.",
"minimum": 0,
"type": [
"integer",
"null"
]
},
"part_of_parcellation_term_set": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
}
],
"description": "Reference to the parcellation term set for which the parcellation term is part of.",
"type": "string"
},
"symbol": {
"description": "Symbol representing a parcellation term.",
"type": [
"string",
"null"
]
}
},
"required": [
"part_of_parcellation_term_set",
"id",
"name",
"description"
],
"title": "ParcellationTerm",
"type": "object"
},
"ParcellationTermSet": {
"additionalProperties": false,
"description": "A parcellation term set is the set of parcellation terms within a specific parcellation terminology. A parcellation term set belongs to one and only one parcellation terminology and each parcellation term in a parcellation terminology belongs to one and only one term set. If the parcellation terminology is a taxonomy, parcellation term sets can be used to represent taxonomic ranks. For consistency, if the terminology does not have the notion of taxonomic ranks, all terms are grouped into a single parcellation term set.",
"properties": {
"category": {
"enum": [
"AnS:ParcellationTermSet"
],
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"description": {
"type": "string"
},
"has_parent_parcellation_term_set": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Reference to the parent parcellation term set for which the parcellation term set is a child (lower taxonomic rank) of.",
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"ordinal": {
"description": "Ordinal of the parcellation term set among other term sets within the context of the associated parcellation terminology.",
"minimum": 0,
"type": [
"integer",
"null"
]
},
"part_of_parcellation_terminology": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
}
],
"description": "Reference to the parcellation terminology for which the parcellation term set partitions.",
"type": "string"
}
},
"required": [
"part_of_parcellation_terminology",
"id",
"name",
"description"
],
"title": "ParcellationTermSet",
"type": "object"
},
"ParcellationTerminology": {
"additionalProperties": false,
"description": "A parcellation terminology is a versioned release set of terms that can be used to label annotations in an atlas, providing human readability and context and allowing communication about brain locations and structural properties. Typically, a terminology is a set of descriptive anatomical terms following a specific naming convention and/or approach to organization scheme. The terminology may be a flat list of controlled vocabulary, a taxonomy and partonomy, or an ontology (ref: ILX:0777107, RRID:SCR_023499)",
"properties": {
"category": {
"enum": [
"AnS:ParcellationTerminology"
],
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"revision_of": {
"anyOf": [
{
"type": "string"
},
{
"type": "string"
},
{
"type": "null"
}
],
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"version",
"id",
"name",
"description"
],
"title": "ParcellationTerminology",
"type": "object"
}
},
"$id": "https://w3id.org/my-org/anatomical-structure-schema",
"$schema": "https://json-schema.org/draft/2019-09/schema",
"additionalProperties": true,
"metamodel_version": "1.7.0",
"title": "anatomical-structure-schema",
"type": "object",
"version": null
}