-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstroke.rdf
More file actions
4786 lines (3596 loc) · 183 KB
/
stroke.rdf
File metadata and controls
4786 lines (3596 loc) · 183 KB
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
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="neo4j://graph.schema#Hemidystonia">
<rdfs:label>Hemidystonia</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Neurological deficit">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Bilateral embolism of middle cerebral arteries">
<rdfs:label>Bilateral embolism of middle cerebral arteries</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Has interpretation">
<rdfs:range rdf:resource="neo4j://graph.schema#Altered"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Structure of palpebral conjunctiva">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Procedure">
<rdfs:label>Procedure</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Occlusion of right cerebellar artery">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding site">
<rdfs:range rdf:resource="neo4j://graph.schema#Bone structure"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Associated morphology">
<rdfs:range rdf:resource="neo4j://graph.schema#Lacunar infarct"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Occlusion of bilateral cerebellar arteries"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Subject relationship context">
<rdfs:range rdf:resource="neo4j://graph.schema#Person in the family"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Skin scraping for examination">
<rdfs:label>Skin scraping for examination</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Bilateral occlusion of middle cerebral arteries"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Thrombosis of left middle cerebral artery">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding site">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Embolism of right carotid artery">
<rdfs:label>Embolism of right carotid artery</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Autoimmune process">
<rdfs:label>Autoimmune process</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding site">
<rdfs:range rdf:resource="neo4j://graph.schema#Lower limb structure"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Left posterior cerebral artery thrombosis">
<rdfs:label>Left posterior cerebral artery thrombosis</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#contains">
<rdfs:domain rdf:resource="neo4j://graph.schema#Function"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Structure of precerebral and/or intracranial artery">
<rdfs:label>Structure of precerebral and/or intracranial artery</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Progressive">
<rdfs:label>Progressive</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Thrombosis of right anterior cerebral artery"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding site">
<rdfs:range rdf:resource="neo4j://graph.schema#Basal ganglion structure"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Associated morphology">
<rdfs:range rdf:resource="neo4j://graph.schema#Dystrophy"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Person in the family">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Surgical extraction - action">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Cerebral hemisphere structure">
<rdfs:label>Cerebral hemisphere structure</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Dysplasia">
<rdfs:label>Dysplasia</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Follow-up status">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Basilar artery embolism"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Pathological developmental process">
<rdfs:label>Pathological developmental process</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Thrombosis of right carotid artery"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Occlusion of left anterior cerebral artery">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Stenosis of left vertebral artery">
<rdfs:label>Stenosis of left vertebral artery</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Maternal postpartum">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Thrombosis of left carotid artery">
<rdfs:label>Thrombosis of left carotid artery</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Risk factor">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Skeletal muscle structure of limb">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Structure of nervous system">
<rdfs:label>Structure of nervous system</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Associated morphology">
<rdfs:domain rdf:resource="neo4j://graph.schema#Autosomal recessive hereditary disorder"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#contains">
<rdfs:domain rdf:resource="neo4j://graph.schema#Surgical removal"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Decreased cardiac function">
<rdfs:label>Decreased cardiac function</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Paralytic syndrome as late effect of stroke">
<rdfs:label>Paralytic syndrome as late effect of stroke</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Embolism of left anterior cerebral artery">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Occlusion of anterior choroidal artery"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Bone graft material">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Structural change due to ischemia">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Thrombosis of anterior cerebral artery">
<rdfs:label>Thrombosis of anterior cerebral artery</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Past - specified">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Incision - action">
<rdfs:label>Incision - action</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Has interpretation">
<rdfs:range rdf:resource="neo4j://graph.schema#Decreased"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Temporal context">
<rdfs:range rdf:resource="neo4j://graph.schema#Current or past"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Occurrence">
<rdfs:range rdf:resource="neo4j://graph.schema#Maternal pregnancy period"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Thrombosis of right middle cerebral artery">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding site">
<rdfs:range rdf:resource="neo4j://graph.schema#Structure of right facial muscle"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Lacunar infarction">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Evaluation - action">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Interprets">
<rdfs:domain rdf:resource="neo4j://graph.schema#Dementia"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Hypercoagulability state">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Known absent">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Basal ganglion structure">
<rdfs:label>Basal ganglion structure</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Ataxia">
<rdfs:label>Ataxia</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Sensory disorder">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Has interpretation">
<rdfs:range rdf:resource="neo4j://graph.schema#Below reference range"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Hemiplegia of dominant side">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Person in the family">
<rdfs:label>Person in the family</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Temporal context">
<rdfs:domain rdf:resource="neo4j://graph.schema#Situation with explicit context"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Period of life between birth and death">
<rdfs:label>Period of life between birth and death</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Increased">
<rdfs:label>Increased</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Brain stem infarction">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Has interpretation">
<rdfs:domain rdf:resource="neo4j://graph.schema#Abnormal body temperature"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Occlusion of right anterior cerebral artery">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Bilateral embolism of carotid arteries"/>
<rdfs:domain rdf:resource="neo4j://graph.schema#Hemiplegia of dominant side"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#contains">
<rdfs:range rdf:resource="neo4j://graph.schema#Confusional state"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Assessment score">
<rdfs:label>Assessment score</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Blood viscosity measurement">
<rdfs:label>Blood viscosity measurement</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Right cerebellar artery thrombosis"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding site">
<rdfs:domain rdf:resource="neo4j://graph.schema#Autosomal recessive hereditary disorder"/>
<rdfs:range rdf:resource="neo4j://graph.schema#Brain structure"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Cardiovascular function finding">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding site">
<rdfs:range rdf:resource="neo4j://graph.schema#Erythrocyte"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Stenosis of precerebral artery">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#contains">
<rdfs:range rdf:resource="neo4j://graph.schema#Dysarthria"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Subject relationship context">
<rdfs:domain rdf:resource="neo4j://graph.schema#History of cerebrovascular accident with residual deficit"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Autosomal recessive hereditary disorder">
<rdfs:label>Autosomal recessive hereditary disorder</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Neurological observable">
<rdfs:label>Neurological observable</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Occlusion of bilateral cerebellar arteries">
<rdfs:label>Occlusion of bilateral cerebellar arteries</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#After">
<rdfs:domain rdf:resource="neo4j://graph.schema#Disease"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Ineffective thermoregulation"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Structure of nervous system">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#contains">
<rdfs:range rdf:resource="neo4j://graph.schema#Posterior cerebral circulation infarction"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Aphasia">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Scraping">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Interprets">
<rdfs:range rdf:resource="neo4j://graph.schema#Memory performance"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Temporal context">
<rdfs:range rdf:resource="neo4j://graph.schema#All times past"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#contains">
<rdfs:range rdf:resource="neo4j://graph.schema#Memory impairment"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Associated morphology">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Right posterior cerebral artery thrombosis">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Occlusion of left cerebellar artery by embolus">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:domain rdf:resource="neo4j://graph.schema#Hemiplegia"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Bilateral embolism of carotid arteries">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Referral to service">
<rdfs:label>Referral to service</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Occlusion of left cerebellar artery by embolus"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Body temperature">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Impaired mineralization">
<rdfs:label>Impaired mineralization</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#After">
<rdfs:range rdf:resource="neo4j://graph.schema#Cerebrovascular accident"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Normal">
<rdfs:label>Normal</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding site">
<rdfs:range rdf:resource="neo4j://graph.schema#Structure of cerebellar artery"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Structure of canthus">
<rdfs:label>Structure of canthus</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Bilateral embolism of vertebral arteries"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Structure of blood vessel of retina">
<rdfs:label>Structure of blood vessel of retina</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Above reference range">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Procedure site - Direct">
<rdfs:range rdf:resource="neo4j://graph.schema#Bone structure"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Left cerebellar artery thrombosis"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Vascular structure of head">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Right carotid artery stenosis">
<rdfs:label>Right carotid artery stenosis</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Ability to speak fluently">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Bilateral occlusion of anterior cerebral arteries">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Bilateral thrombosis of vertebral arteries"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Speech and language observable">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Occlusion of left posterior communicating artery">
<rdfs:label>Occlusion of left posterior communicating artery</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Procedure site - Direct">
<rdfs:range rdf:resource="neo4j://graph.schema#Structure of gum and supporting structure of tooth"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Procedure site - Indirect">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Reconstruction - action">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Clinical course">
<rdfs:domain rdf:resource="neo4j://graph.schema#Autosomal dominant hereditary disorder"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Basilar artery embolism">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Occlusion of right anterior choroidal artery"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#contains">
<rdfs:range rdf:resource="neo4j://graph.schema#Hemiplegia of nondominant side"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Pathological process">
<rdfs:range rdf:resource="neo4j://graph.schema#Abnormal immune process"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Paraganglioma">
<rdfs:label>Paraganglioma</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Reason for change in radiotherapy course">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Cerebral white matter structure">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Interprets">
<rdfs:domain rdf:resource="neo4j://graph.schema#Abnormal body temperature"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Procedure site - Direct">
<rdfs:domain rdf:resource="neo4j://graph.schema#Scraping"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Discharge from service">
<rdfs:label>Discharge from service</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Interprets">
<rdfs:range rdf:resource="neo4j://graph.schema#Left ventricular function"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Has interpretation">
<rdfs:domain rdf:resource="neo4j://graph.schema#Sensory disorder"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Structure of canthus">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Interprets">
<rdfs:range rdf:resource="neo4j://graph.schema#Cardiac function"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Grafting - action">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Temporal context">
<rdfs:domain rdf:resource="neo4j://graph.schema#No family history of"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Thrombosis of left anterior cerebral artery"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Associated morphology">
<rdfs:range rdf:resource="neo4j://graph.schema#Morphologically abnormal structure"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Structure of capillary blood vessel">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding site">
<rdfs:range rdf:resource="neo4j://graph.schema#Cerebrum"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Surgical removal">
<rdfs:label>Surgical removal</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Lens clear">
<rdfs:label>Lens clear</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Method">
<rdfs:domain rdf:resource="neo4j://graph.schema#Curettage of skin lesion"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Dementia">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Occlusion of left cerebellar artery">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Procedure site - Direct">
<rdfs:domain rdf:resource="neo4j://graph.schema#Curettage of skin lesion"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Sequela of cerebrovascular accident">
<rdfs:label>Sequela of cerebrovascular accident</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Occlusion of left cerebellar artery by embolus">
<rdfs:label>Occlusion of left cerebellar artery by embolus</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Occlusion of left posterior cerebral artery">
<rdfs:label>Occlusion of left posterior cerebral artery</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#contains">
<rdfs:range rdf:resource="neo4j://graph.schema#Monoplegia of upper limb affecting non-dominant side"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Has interpretation">
<rdfs:domain rdf:resource="neo4j://graph.schema#Dementia"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#contains">
<rdfs:range rdf:resource="neo4j://graph.schema#Removal of lesion of eyelid"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Dilation - action">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Function">
<rdfs:label>Function</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding context">
<rdfs:domain rdf:resource="neo4j://graph.schema#No family history of"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Method">
<rdfs:domain rdf:resource="neo4j://graph.schema#Scraping"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#contains">
<rdfs:range rdf:resource="neo4j://graph.schema#Operation on canthus"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Occlusion of anterior choroidal artery">
<rdfs:label>Occlusion of anterior choroidal artery</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Occurrence">
<rdfs:range rdf:resource="neo4j://graph.schema#Fetal antenatal period"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Cerebellar artery thrombosis">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Cervix uteri structure">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Thalamic structure">
<rdfs:label>Thalamic structure</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Has focus">
<rdfs:range rdf:resource="neo4j://graph.schema#Cerebrovascular accident"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Dissection of cervicocerebral artery">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#contains">
<rdfs:domain rdf:resource="neo4j://graph.schema#Paralytic syndrome"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Atherosclerosis of artery"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Left carotid artery occlusion">
<rdfs:label>Left carotid artery occlusion</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Apraxia">
<rdfs:label>Apraxia</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Skin structure">
<rdfs:label>Skin structure</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:domain rdf:resource="neo4j://graph.schema#Apraxia"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Chronic disease monitoring status">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Congenital">
<rdfs:label>Congenital</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Occlusion of left cerebellar artery">
<rdfs:label>Occlusion of left cerebellar artery</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Chronic central neuropathic pain">
<rdfs:label>Chronic central neuropathic pain</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding site">
<rdfs:domain rdf:resource="neo4j://graph.schema#Anterior cerebral circulation infarction"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Entire digit">
<rdfs:label>Entire digit</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Impaired">
<rdfs:label>Impaired</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Referral to service">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Above reference range">
<rdfs:label>Above reference range</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#contains">
<rdfs:range rdf:resource="neo4j://graph.schema#History of clinical finding in subject"/>
<rdfs:domain rdf:resource="neo4j://graph.schema#Curettage"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Occlusion of left posterior communicating artery">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Clinic">
<rdfs:label>Clinic</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding site">
<rdfs:domain rdf:resource="neo4j://graph.schema#Monoplegia of upper limb affecting non-dominant side"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Procedure site - Indirect">
<rdfs:domain rdf:resource="neo4j://graph.schema#Procedure"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Cerebrovascular disease">
<rdfs:label>Cerebrovascular disease</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Associated finding">
<rdfs:label>Associated finding</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Subject of record">
<rdfs:label>Subject of record</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Basilar artery thrombosis"/>
<rdfs:range rdf:resource="neo4j://graph.schema#Arterial thrombosis"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Regional blood vessel structure">
<rdfs:label>Regional blood vessel structure</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Brainstem structure">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Aspiration - action">
<rdfs:label>Aspiration - action</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:label>Due to</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding site">
<rdfs:range rdf:resource="neo4j://graph.schema#Structure of middle cerebral artery"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Abnormal immune process">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Procedure site - Direct">
<rdfs:domain rdf:resource="neo4j://graph.schema#Curettage of eyelid"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:domain rdf:resource="neo4j://graph.schema#Monoplegia"/>
<rdfs:range rdf:resource="neo4j://graph.schema#Ischemia"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Subject relationship context">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Posterior cerebral circulation infarction">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Bilateral embolism of cerebellar arteries">
<rdfs:label>Bilateral embolism of cerebellar arteries</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Lower limb structure">
<rdfs:label>Lower limb structure</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Method">
<rdfs:domain rdf:resource="neo4j://graph.schema#Curettage of eyelid"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Precerebral arterial occlusion">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding context">
<rdfs:domain rdf:resource="neo4j://graph.schema#Situation with explicit context"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Thrombosis of left vertebral artery">
<rdfs:label>Thrombosis of left vertebral artery</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Subarachnoid hemorrhage">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Inflammatory morphology">
<rdfs:label>Inflammatory morphology</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Thrombosis of anterior cerebral artery"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#contains">
<rdfs:range rdf:resource="neo4j://graph.schema#Cerebrovascular accident"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Extrapyramidal system structure">
<rdfs:label>Extrapyramidal system structure</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding site">
<rdfs:range rdf:resource="neo4j://graph.schema#Retinal structure"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Impaired">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding site">
<rdfs:range rdf:resource="neo4j://graph.schema#Structure of cerebral artery"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Occlusion of right cerebellar artery">
<rdfs:label>Occlusion of right cerebellar artery</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Bilateral embolism of carotid arteries">
<rdfs:label>Bilateral embolism of carotid arteries</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:domain rdf:resource="neo4j://graph.schema#Chronic central neuropathic pain"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Associated morphology">
<rdfs:range rdf:resource="neo4j://graph.schema#Impaired mineralization"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Cerebellar artery thrombosis"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#contains">
<rdfs:domain rdf:resource="neo4j://graph.schema#Hemiplegia of dominant side"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Bilateral thrombosis of carotid arteries">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Bilateral occlusion of anterior cerebral arteries">
<rdfs:label>Bilateral occlusion of anterior cerebral arteries</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Lesion">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#After">
<rdfs:domain rdf:resource="neo4j://graph.schema#Epilepsy"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Basal ganglion structure">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Known present">
<rdfs:label>Known present</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Body height measure">
<rdfs:label>Body height measure</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Method">
<rdfs:range rdf:resource="neo4j://graph.schema#Surgical extraction - action"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Hemorrhage">
<rdfs:label>Hemorrhage</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Seen by service">
<rdfs:label>Seen by service</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Embolism of right carotid artery"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding context">
<rdfs:domain rdf:resource="neo4j://graph.schema#Family history with explicit context"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Associated morphology">
<rdfs:domain rdf:resource="neo4j://graph.schema#Anterior cerebral circulation infarction"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Thrombosis of right vertebral artery">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Removal of lesion of eyelid">
<rdfs:label>Removal of lesion of eyelid</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Finding site">
<rdfs:range rdf:resource="neo4j://graph.schema#Lens clear"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Cognitive disorder">
<rdfs:label>Cognitive disorder</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Cerebral atherosclerosis">
<rdfs:label>Cerebral atherosclerosis</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Structure of left facial muscle">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Associated finding">
<rdfs:range rdf:resource="neo4j://graph.schema#Disease"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Endometrial cavity structure">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Family history with explicit context">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Due to">
<rdfs:range rdf:resource="neo4j://graph.schema#Bilateral occlusion of anterior cerebral arteries"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Direct morphology">
<rdfs:range rdf:resource="neo4j://graph.schema#Neoplasm"/>
</rdf:Description>
<rdf:Description rdf:about="neo4j://graph.schema#Arterial thrombosis">