-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyago-schema.ttl
1207 lines (880 loc) · 35.6 KB
/
yago-schema.ttl
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
@prefix yago: <http://yago-knowledge.org/resource/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix ontolex: <http://www.w3.org/ns/lemon/ontolex#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix wikibase: <http://wikiba.se/ontology#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix schema: <http://schema.org/> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix wd: <http://www.wikidata.org/entity/> .
@prefix data: <https://www.wikidata.org/wiki/Special:EntityData/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix s: <http://www.wikidata.org/entity/statement/> .
@prefix ref: <http://www.wikidata.org/reference/> .
@prefix v: <http://www.wikidata.org/value/> .
@prefix wdt: <http://www.wikidata.org/prop/direct/> .
@prefix wpq: <http://www.wikidata.org/prop/quant/> .
@prefix wdtn: <http://www.wikidata.org/prop/direct-normalized/> .
@prefix p: <http://www.wikidata.org/prop/> .
@prefix ps: <http://www.wikidata.org/prop/statement/> .
@prefix psv: <http://www.wikidata.org/prop/statement/value/> .
@prefix psn: <http://www.wikidata.org/prop/statement/value-normalized/> .
@prefix pq: <http://www.wikidata.org/prop/qualifier/> .
@prefix pqv: <http://www.wikidata.org/prop/qualifier/value/> .
@prefix pqn: <http://www.wikidata.org/prop/qualifier/value-normalized/> .
@prefix pr: <http://www.wikidata.org/prop/reference/> .
@prefix prv: <http://www.wikidata.org/prop/reference/value/> .
@prefix prn: <http://www.wikidata.org/prop/reference/value-normalized/> .
@prefix wdno: <http://www.wikidata.org/prop/novalue/> .
@prefix ys: <http://yago-knowledge.org/schema#> .
ys: rdfs:label "Manual YAGO 4.5 shapes declaration"@en .
schema:CreativeWork rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q386724, wd:Q17537576 ;
sh:property ys:CreativeWork_property_38, ys:CreativeWork_property_20, ys:CreativeWork_property_28, ys:CreativeWork_property_19, ys:CreativeWork_property_27, ys:CreativeWork_property_21 ;
rdfs:subClassOf schema:Thing .
schema:Event owl:disjointWith schema:CreativeWork ;
rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q1656682, wd:Q1190554 ;
sh:property ys:Event_property_105, ys:Event_property_106, ys:Event_property_107, ys:Event_property_113, ys:Event_property_140, ys:Event_property_133, ys:Event_property_139, ys:Event_property_146, ys:Event_property_123 ;
rdfs:subClassOf schema:Thing .
schema:Organization owl:disjointWith schema:Event, schema:CreativeWork ;
rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q155076, wd:Q895526, wd:Q43229, wd:Q167037 ;
sh:property ys:Organization_property_149, ys:Organization_property_163, ys:Organization_property_164, ys:Organization_property_166, ys:Organization_property_165, ys:Organization_property_179, ys:Organization_property_148, ys:Organization_property_161, ys:Organization_property_178, ys:Organization_property_162, ys:Organization_property_176, ys:Organization_property_151, ys:Organization_property_147, ys:Organization_property_150, ys:Organization_property_177 ;
rdfs:subClassOf schema:Thing .
schema:Taxon owl:disjointWith schema:Event, schema:Organization, schema:CreativeWork ;
rdf:type sh:NodeShape, rdfs:Class ;
sh:property ys:Taxon_property_289, ys:Taxon_property_288 ;
ys:fromClass wd:Q16521 ;
rdfs:subClassOf schema:Thing .
schema:Person owl:disjointWith schema:Event, schema:Taxon, schema:Organization, schema:CreativeWork ;
rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q215627, wd:Q5 ;
sh:property ys:Person_property_194, ys:Person_property_196, ys:Person_property_226, ys:Person_property_193, ys:Person_property_197, ys:Person_property_198, ys:Person_property_221, ys:Person_property_225, ys:Person_property_228, ys:Person_property_222, ys:Person_property_209, ys:Person_property_227, ys:Person_property_211, ys:Person_property_195, ys:Person_property_223, ys:Person_property_224, ys:Person_property_210, ys:Person_property_199 ;
rdfs:subClassOf schema:Thing .
schema:Place owl:disjointWith schema:Event, schema:Person, schema:Taxon, schema:CreativeWork ;
rdf:type sh:NodeShape, rdfs:Class ;
sh:property ys:Place_property_241, ys:Place_property_237, ys:Place_property_240, ys:Place_property_242, ys:Place_property_238, ys:Place_property_239, ys:Place_property_236 ;
rdfs:subClassOf schema:Thing .
schema:Product owl:disjointWith schema:Event, schema:Person, schema:Taxon, schema:Place, schema:Organization ;
rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q2342494, wd:Q2424752, wd:Q28877, wd:Q2184715 ;
sh:property ys:Product_property_276, ys:Product_property_287, ys:Product_property_275, ys:Product_property_274, ys:Product_property_277 ;
rdfs:subClassOf schema:Thing .
schema:Intangible owl:disjointWith schema:Event, schema:Person, schema:Taxon, schema:Place, schema:Organization ;
rdfs:subClassOf schema:Thing .
schema:Thing rdf:type sh:NodeShape, rdfs:Class ;
sh:property ys:Thing_property_1, ys:Thing_property_6, ys:Thing_property_4, ys:Thing_property_2, ys:Thing_property_7, ys:Thing_property_3, ys:Thing_property_5 .
ys:Thing_property_1 sh:path schema:image ;
sh:datatype xsd:anyURI ;
ys:fromProperty wdt:P18 .
ys:Thing_property_2 sh:path schema:alternateName ;
sh:datatype rdf:langString ;
ys:fromProperty wdt:1843, skos:altLabel, wdt:P225 .
ys:Thing_property_3 sh:path rdfs:comment ;
sh:datatype rdf:langString ;
sh:uniqueLang true ;
ys:fromProperty schema:description .
ys:Thing_property_4 sh:path rdfs:label ;
sh:datatype rdf:langString ;
sh:uniqueLang true ;
ys:fromProperty schema:name .
ys:Thing_property_5 sh:path schema:mainEntityOfPage ;
sh:datatype xsd:anyURI .
ys:Thing_property_6 sh:path schema:url ;
sh:datatype xsd:anyURI ;
ys:fromProperty wdt:P856 .
ys:Thing_property_7 sh:path schema:sameAs ;
sh:datatype xsd:string ;
ys:fromProperty wdt:P646, wdt:P1053, wdt:P345, wdt:P2671 .
rdfs:Class rdf:type sh:NodeShape, rdfs:Class ;
sh:property ys:Class_property_8, ys:Class_property_12, ys:Class_property_10, ys:Class_property_11, ys:Class_property_9 .
ys:Class_property_8 sh:path schema:alternateName ;
sh:datatype rdf:langString ;
ys:fromProperty skos:altLabel .
ys:Class_property_9 sh:path rdfs:comment ;
sh:datatype rdf:langString ;
sh:uniqueLang true ;
ys:fromProperty schema:description .
ys:Class_property_10 sh:path rdfs:label ;
sh:datatype rdf:langString ;
sh:uniqueLang true ;
ys:fromProperty schema:name .
ys:Class_property_11 sh:path schema:sameAs ;
sh:datatype xsd:string ;
ys:fromProperty wdt:P646, wdt:P1053, wdt:P345, wdt:P2671 .
ys:Class_property_12 sh:path schema:mainEntityOfPage ;
sh:datatype xsd:anyURI .
yago:Award rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q618779, wd:Q38033430 ;
rdfs:subClassOf schema:Intangible ;
sh:property ys:Award_property_13 .
ys:Award_property_13 sh:path yago:conferredBy ;
sh:or ys:list_14 ;
ys:fromProperty wdt:P1027 .
ys:list_14 rdf:first ys:element_15 ;
rdf:rest ys:list_16 .
ys:element_15 sh:node schema:Organization .
ys:list_16 rdf:first ys:element_17 ;
rdf:rest rdf:nil .
ys:element_17 sh:node schema:Person .
yago:BeliefSystem rdf:type sh:NodeShape, rdfs:Class ;
rdfs:subClassOf schema:Intangible ;
ys:fromClass wd:Q5390013 .
yago:Gender rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q48264 ;
rdfs:subClassOf schema:Intangible .
schema:Language rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q34770 ;
rdfs:subClassOf schema:Intangible .
ys:CreativeWork_property_19 sh:path schema:about ;
sh:node schema:Thing ;
ys:fromProperty wdt:P921 .
ys:CreativeWork_property_20 sh:path schema:award ;
sh:node yago:Award ;
ys:fromProperty wdt:P166 .
ys:CreativeWork_property_21 sh:path schema:author ;
sh:or ys:list_22 ;
ys:fromProperty wdt:P170, wdt:P50 .
ys:list_22 rdf:first ys:element_23 ;
rdf:rest ys:list_24 .
ys:element_23 sh:node schema:Organization .
ys:list_24 rdf:first ys:element_25 ;
rdf:rest rdf:nil .
ys:element_25 sh:node schema:Person .
ys:CreativeWork_property_27 sh:path schema:contentLocation ;
sh:node schema:Place ;
ys:fromProperty wdt:P840 .
ys:CreativeWork_property_28 sh:path schema:dateCreated ;
sh:or ys:list_29 ;
sh:maxCount 1 ;
ys:fromProperty wdt:P571 .
ys:list_29 rdf:first ys:element_30 ;
rdf:rest ys:list_31 .
ys:element_30 sh:datatype xsd:dateTime .
ys:list_31 rdf:first ys:element_32 ;
rdf:rest ys:list_33 .
ys:element_32 sh:datatype xsd:date .
ys:list_33 rdf:first ys:element_34 ;
rdf:rest ys:list_35 .
ys:element_34 sh:datatype xsd:gYearMonth .
ys:list_35 rdf:first ys:element_36 ;
rdf:rest rdf:nil .
ys:element_36 sh:datatype xsd:gYear .
ys:CreativeWork_property_38 sh:path schema:inLanguage ;
sh:node schema:Language ;
ys:fromProperty wdt:P407 .
schema:Book rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q571 ;
sh:property ys:Book_property_42, ys:Book_property_40, ys:Book_property_41, ys:Book_property_39, ys:Book_property_48 ;
rdfs:subClassOf schema:CreativeWork .
ys:Book_property_39 sh:path schema:isbn ;
sh:datatype xsd:string ;
sh:maxCount 1 ;
ys:fromProperty wdt:P212, wdt:P957 ;
sh:pattern "^(97[89]-([0-57]-(\\d-\\d{7}|\\d\\d-\\d{6}|\\d\\d\\d-\\d{5}|\\d{4}-\\d{4}|\\d{5}-\\d\\d\\d|\\d{6}-\\d\\d|\\d{7}-\\d)|[89]\\d-(\\d-\\d{6}|\\d\\d-\\d{5}|\\d\\d\\d-\\d{4}|\\d{4}-\\d\\d\\d|\\d{5}-\\d\\d|\\d{6}-\\d)|[69]\\d\\d-(\\d-\\d{5}|\\d\\d-\\d{4}|\\d\\d\\d-\\d\\d\\d|\\d{4}-\\d\\d|\\d{5}-\\d)|99[0-8]\\d-\\d-\\d{4}|99[0-8]\\d-\\d\\d-\\d\\d\\d|99[0-8]\\d-\\d\\d\\d-\\d\\d|99[0-8]\\d-\\d{4}-\\d|999\\d\\d-\\d-\\d\\d\\d|999\\d\\d-\\d\\d-\\d\\d|999\\d\\d-\\d\\d\\d-\\d)-\\d|\\d{9}(\\d|X))|(\\d{1,5}-\\d{1,7}-\\d{1,6}-[0-9X])$" .
ys:Book_property_40 sh:path schema:illustrator ;
sh:node schema:Person ;
ys:fromProperty wdt:P110 .
ys:Book_property_41 sh:path schema:editor ;
sh:node schema:Person ;
ys:fromProperty wdt:P98 .
ys:Book_property_42 sh:path schema:publisher ;
sh:maxCount 1 ;
sh:or ys:list_43 ;
ys:fromProperty wdt:P123 .
ys:list_43 rdf:first ys:element_44 ;
rdf:rest ys:list_45 .
ys:element_44 sh:node schema:Organization .
ys:list_45 rdf:first ys:element_46 ;
rdf:rest rdf:nil .
ys:element_46 sh:node schema:Person .
ys:Book_property_48 sh:path schema:numberOfPages ;
sh:datatype xsd:decimal ;
sh:maxCount 1 ;
ys:fromProperty wdt:P1104 .
schema:Newspaper rdf:type sh:NodeShape, rdfs:Class ;
rdfs:subClassOf schema:CreativeWork ;
ys:fromClass wd:Q11032 ;
sh:property ys:Newspaper_property_55, ys:Newspaper_property_49 .
ys:Newspaper_property_49 sh:path schema:publisher ;
sh:or ys:list_50 ;
sh:maxCount 1 ;
ys:fromProperty wdt:P123 .
ys:list_50 rdf:first ys:element_51 ;
rdf:rest ys:list_52 .
ys:element_51 sh:node schema:Organization .
ys:list_52 rdf:first ys:element_53 ;
rdf:rest rdf:nil .
ys:element_53 sh:node schema:Person .
ys:Newspaper_property_55 sh:path schema:sponsor ;
sh:or ys:list_56 ;
ys:fromProperty wdt:P859 .
ys:list_56 rdf:first ys:element_57 ;
rdf:rest ys:list_58 .
ys:element_57 sh:node schema:Organization .
ys:list_58 rdf:first ys:element_59 ;
rdf:rest rdf:nil .
ys:element_59 sh:node schema:Person .
schema:TVSeries rdf:type sh:NodeShape, rdfs:Class ;
rdfs:subClassOf schema:CreativeWork ;
ys:fromClass wd:Q5398426 ;
sh:property ys:TVSeries_property_68, ys:TVSeries_property_61, ys:TVSeries_property_71, ys:TVSeries_property_67, ys:TVSeries_property_72, ys:TVSeries_property_69, ys:TVSeries_property_70 .
ys:TVSeries_property_61 sh:path schema:musicBy ;
sh:or ys:list_62 ;
ys:fromProperty wdt:P86 .
ys:list_62 rdf:first ys:element_63 ;
rdf:rest ys:list_64 .
ys:element_63 sh:node schema:MusicGroup .
ys:list_64 rdf:first ys:element_65 ;
rdf:rest rdf:nil .
ys:element_65 sh:node schema:Person .
ys:TVSeries_property_67 sh:path schema:actor ;
sh:node schema:Person ;
ys:fromProperty wdt:P161 .
ys:TVSeries_property_68 sh:path schema:locationCreated ;
sh:node schema:Place ;
ys:fromProperty wdt:P495 .
ys:TVSeries_property_69 sh:path schema:director ;
sh:node schema:Person ;
ys:fromProperty wdt:P57 .
ys:TVSeries_property_70 sh:path schema:numberOfEpisodes ;
sh:datatype xsd:decimal ;
sh:maxCount 1 ;
ys:fromProperty wdt:P1113 .
ys:TVSeries_property_71 sh:path schema:numberOfSeasons ;
sh:datatype xsd:decimal ;
sh:maxCount 1 ;
ys:fromProperty wdt:P2437 .
ys:TVSeries_property_72 sh:path schema:productionCompany ;
sh:node schema:Organization ;
ys:fromProperty wdt:P272 .
schema:MusicComposition rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q207628, wd:Q2188189 ;
sh:property ys:MusicComposition_property_80, ys:MusicComposition_property_73, ys:MusicComposition_property_79 ;
rdfs:subClassOf schema:CreativeWork .
ys:MusicComposition_property_73 sh:path schema:musicBy ;
sh:or ys:list_74 ;
ys:fromProperty wdt:P86 .
ys:list_74 rdf:first ys:element_75 ;
rdf:rest ys:list_76 .
ys:element_75 sh:node schema:Person .
ys:list_76 rdf:first ys:element_77 ;
rdf:rest rdf:nil .
ys:element_77 sh:node schema:MusicGroup .
ys:MusicComposition_property_79 sh:path schema:iswcCode ;
sh:datatype xsd:string ;
sh:pattern "^T-[0-9]{3}\\.[0-9]{3}\\.[0-9]{3}-[0-9]$" ;
sh:maxCount 1 ;
ys:fromProperty wdt:P1827 .
ys:MusicComposition_property_80 sh:path schema:lyricist ;
sh:or ys:list_81 ;
ys:fromProperty wdt:P676 .
ys:list_81 rdf:first ys:element_82 ;
rdf:rest ys:list_83 .
ys:element_82 sh:node schema:Person .
ys:list_83 rdf:first ys:element_84 ;
rdf:rest rdf:nil .
ys:element_84 sh:node schema:MusicGroup .
schema:Movie rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q11424 ;
sh:property ys:Movie_property_95, ys:Movie_property_96, ys:Movie_property_86, ys:Movie_property_87, ys:Movie_property_88, ys:Movie_property_94 ;
rdfs:subClassOf schema:CreativeWork .
ys:Movie_property_86 sh:path schema:actor ;
sh:node schema:Person ;
ys:fromProperty wdt:P161 .
ys:Movie_property_87 sh:path schema:locationCreated ;
sh:node schema:Place ;
ys:fromProperty wdt:P495 .
ys:Movie_property_88 sh:path schema:musicBy ;
sh:or ys:list_89 ;
ys:fromProperty wdt:P86 .
ys:list_89 rdf:first ys:element_90 ;
rdf:rest ys:list_91 .
ys:element_90 sh:node schema:MusicGroup .
ys:list_91 rdf:first ys:element_92 ;
rdf:rest rdf:nil .
ys:element_92 sh:node schema:Person .
ys:Movie_property_94 sh:path schema:director ;
sh:node schema:Person ;
ys:fromProperty wdt:P57 .
ys:Movie_property_95 sh:path schema:duration ;
sh:maxCount 1 ;
sh:datatype xsd:decimal ;
ys:fromProperty wdt:P2047 .
ys:Movie_property_96 sh:path schema:productionCompany ;
sh:node schema:Organization ;
ys:fromProperty wdt:P272 .
yago:FictionalEntity rdf:type sh:NodeShape, rdfs:Class ;
rdfs:subClassOf schema:Thing ;
rdfs:label "Fictional entity"@en ;
sh:property ys:FictionalEntity_property_97, ys:FictionalEntity_property_99, ys:FictionalEntity_property_98 ;
ys:fromClass wd:Q14897293, wd:Q64728693, wd:Q115537581, wd:Q18706315, wd:Q21070598 .
ys:FictionalEntity_property_97 sh:path yago:appearsIn ;
sh:node schema:CreativeWork ;
ys:fromProperty wdt:P1080, wdt:P4584, wdt:P1441 .
ys:FictionalEntity_property_98 sh:path schema:performer ;
sh:node schema:Person ;
ys:fromProperty wdt:P175 .
ys:FictionalEntity_property_99 sh:path schema:author ;
sh:or ys:list_100 ;
ys:fromProperty wdt:P170, wdt:P50 .
ys:list_100 rdf:first ys:element_101 ;
rdf:rest ys:list_102 .
ys:element_101 sh:node schema:Organization .
ys:list_102 rdf:first ys:element_103 ;
rdf:rest rdf:nil .
ys:element_103 sh:node schema:Person .
ys:Event_property_105 sh:path schema:about ;
sh:node schema:Thing ;
ys:fromProperty wdt:P921 .
ys:Event_property_106 sh:path schema:location ;
sh:node schema:Place ;
ys:fromProperty wdt:P276, wdt:P706, wdt:P4552, wdt:P131 .
ys:Event_property_107 sh:path schema:organizer ;
sh:or ys:list_108 ;
ys:fromProperty wdt:P664 .
ys:list_108 rdf:first ys:element_109 ;
rdf:rest ys:list_110 .
ys:element_109 sh:node schema:Person .
ys:list_110 rdf:first ys:element_111 ;
rdf:rest rdf:nil .
ys:element_111 sh:node schema:Organization .
ys:Event_property_113 sh:path schema:startDate ;
sh:or ys:list_114 ;
sh:maxCount 1 ;
ys:fromProperty wdt:P580 .
ys:list_114 rdf:first ys:element_115 ;
rdf:rest ys:list_116 .
ys:element_115 sh:datatype xsd:dateTime .
ys:list_116 rdf:first ys:element_117 ;
rdf:rest ys:list_118 .
ys:element_117 sh:datatype xsd:date .
ys:list_118 rdf:first ys:element_119 ;
rdf:rest ys:list_120 .
ys:element_119 sh:datatype xsd:gYearMonth .
ys:list_120 rdf:first ys:element_121 ;
rdf:rest rdf:nil .
ys:element_121 sh:datatype xsd:gYear .
ys:Event_property_123 sh:path schema:endDate ;
sh:or ys:list_124 ;
sh:maxCount 1 ;
ys:fromProperty wdt:P582 .
ys:list_124 rdf:first ys:element_125 ;
rdf:rest ys:list_126 .
ys:element_125 sh:datatype xsd:dateTime .
ys:list_126 rdf:first ys:element_127 ;
rdf:rest ys:list_128 .
ys:element_127 sh:datatype xsd:date .
ys:list_128 rdf:first ys:element_129 ;
rdf:rest ys:list_130 .
ys:element_129 sh:datatype xsd:gYearMonth .
ys:list_130 rdf:first ys:element_131 ;
rdf:rest rdf:nil .
ys:element_131 sh:datatype xsd:gYear .
ys:Event_property_133 sh:path schema:sponsor ;
sh:or ys:list_134 ;
ys:fromProperty wdt:P859 .
ys:list_134 rdf:first ys:element_135 ;
rdf:rest ys:list_136 .
ys:element_135 sh:node schema:Organization .
ys:list_136 rdf:first ys:element_137 ;
rdf:rest rdf:nil .
ys:element_137 sh:node schema:Person .
ys:Event_property_139 sh:path yago:follows ;
sh:node schema:Event ;
ys:fromProperty wdt:P155 .
ys:Event_property_140 sh:path yago:participant ;
sh:or ys:list_141 ;
ys:fromProperty wdt:P1923, wdt:P710 .
ys:list_141 rdf:first ys:element_142 ;
rdf:rest ys:list_143 .
ys:element_142 sh:node schema:Organization .
ys:list_143 rdf:first ys:element_144 ;
rdf:rest rdf:nil .
ys:element_144 sh:node schema:Person .
ys:Event_property_146 sh:path schema:superEvent ;
sh:node schema:Event ;
ys:fromProperty wdt:P361 .
yago:Election rdf:type sh:NodeShape, rdfs:Class ;
rdfs:subClassOf schema:Event ;
ys:fromClass wd:Q40231 .
ys:Organization_property_147 sh:path schema:award ;
sh:node yago:Award ;
ys:fromProperty wdt:P166 .
ys:Organization_property_148 sh:path schema:locationCreated ;
sh:node schema:Place ;
ys:fromProperty wdt:P495, wdt:P740 .
ys:Organization_property_149 sh:path schema:location ;
sh:node schema:Place ;
ys:fromProperty wdt:P276, wdt:P17, wdt:P4552, wdt:P131, wdt:P159, wdt:P706 .
ys:Organization_property_150 sh:path schema:logo ;
sh:datatype xsd:anyURI ;
ys:fromProperty wdt:P154 .
ys:Organization_property_151 sh:path schema:dissolutionDate ;
sh:or ys:list_152 ;
sh:maxCount 1 ;
ys:fromProperty wdt:P576 .
ys:list_152 rdf:first ys:element_153 ;
rdf:rest ys:list_154 .
ys:element_153 sh:datatype xsd:dateTime .
ys:list_154 rdf:first ys:element_155 ;
rdf:rest ys:list_156 .
ys:element_155 sh:datatype xsd:date .
ys:list_156 rdf:first ys:element_157 ;
rdf:rest ys:list_158 .
ys:element_157 sh:datatype xsd:gYearMonth .
ys:list_158 rdf:first ys:element_159 ;
rdf:rest rdf:nil .
ys:element_159 sh:datatype xsd:gYear .
ys:Organization_property_161 sh:path schema:duns ;
sh:datatype xsd:string ;
sh:pattern "^\\d{9}$" ;
sh:maxCount 1 ;
ys:fromProperty wdt:P2771 .
ys:Organization_property_162 sh:path schema:founder ;
sh:node schema:Person ;
ys:fromProperty wdt:P112 .
ys:Organization_property_163 sh:path schema:leader ;
sh:node schema:Person ;
ys:fromProperty wdt:P35, wdt:P6, wdt:P1075, wdt:P168, wdt:P169 .
ys:Organization_property_164 sh:path schema:motto ;
sh:datatype xsd:string ;
ys:fromProperty wdt:P1451 .
ys:Organization_property_165 sh:path schema:address ;
sh:datatype xsd:string ;
ys:fromProperty wdt:P6375 .
ys:Organization_property_166 sh:path schema:dateCreated ;
sh:or ys:list_167 ;
sh:maxCount 1 ;
ys:fromProperty wdt:P571 .
ys:list_167 rdf:first ys:element_168 ;
rdf:rest ys:list_169 .
ys:element_168 sh:datatype xsd:dateTime .
ys:list_169 rdf:first ys:element_170 ;
rdf:rest ys:list_171 .
ys:element_170 sh:datatype xsd:date .
ys:list_171 rdf:first ys:element_172 ;
rdf:rest ys:list_173 .
ys:element_172 sh:datatype xsd:gYearMonth .
ys:list_173 rdf:first ys:element_174 ;
rdf:rest rdf:nil .
ys:element_174 sh:datatype xsd:gYear .
ys:Organization_property_176 sh:path schema:leiCode ;
sh:datatype xsd:string ;
sh:pattern "^[0-9A-Z]{18}[0-9]{2}$" ;
sh:maxCount 1 ;
ys:fromProperty wdt:P1278 .
ys:Organization_property_177 sh:path schema:memberOf ;
sh:node schema:Organization ;
ys:fromProperty wdt:P463, wdt:P114 .
ys:Organization_property_178 sh:path schema:numberOfEmployees ;
sh:datatype xsd:decimal ;
ys:fromProperty wdt:P1128 .
ys:Organization_property_179 sh:path schema:ownedBy ;
sh:or ys:list_180 ;
ys:fromProperty wdt:P127, wdt:P749 .
ys:list_180 rdf:first ys:element_181 ;
rdf:rest ys:list_182 .
ys:element_181 sh:node schema:Organization .
ys:list_182 rdf:first ys:element_183 ;
rdf:rest rdf:nil .
ys:element_183 sh:node schema:Person .
schema:Corporation rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q783794, wd:Q4830453 ;
rdfs:subClassOf schema:Organization .
schema:Airline rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q46970 ;
rdfs:subClassOf schema:Corporation ;
sh:property ys:Airline_property_186, ys:Airline_property_185 .
ys:Airline_property_185 sh:path schema:iataCode ;
sh:datatype xsd:string ;
sh:pattern "^[A-Z0-9]{2}$" ;
sh:maxCount 1 ;
ys:fromProperty wdt:P229 .
ys:Airline_property_186 sh:path schema:icaoCode ;
sh:datatype xsd:string ;
sh:pattern "^[A-Z]{3}$" ;
sh:maxCount 1 ;
ys:fromProperty wdt:P230 .
schema:EducationalOrganization rdf:type sh:NodeShape, rdfs:Class ;
rdfs:subClassOf schema:Organization ;
ys:fromClass wd:Q5341295 ;
sh:property ys:EducationalOrganization_property_187 .
ys:EducationalOrganization_property_187 sh:path yago:studentsCount ;
sh:datatype xsd:decimal ;
ys:fromProperty wdt:P2196 .
schema:PerformingGroup rdf:type sh:NodeShape, rdfs:Class ;
rdfs:subClassOf schema:Organization ;
sh:property ys:PerformingGroup_property_188, ys:PerformingGroup_property_189, ys:PerformingGroup_property_190 ;
ys:fromClass wd:Q105815710 .
ys:PerformingGroup_property_188 sh:path yago:director ;
sh:node schema:Person ;
ys:fromProperty wdt:P1037, wdt:P1875 .
ys:PerformingGroup_property_189 sh:path schema:knowsLanguage ;
sh:node schema:Language ;
ys:fromProperty wdt:P1412 .
ys:PerformingGroup_property_190 sh:path yago:notableWork ;
sh:node schema:CreativeWork ;
ys:fromProperty wdt:P800 .
schema:MusicGroup rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q2088357 ;
sh:property ys:MusicGroup_property_191, ys:MusicGroup_property_192 ;
rdfs:subClassOf schema:PerformingGroup .
ys:MusicGroup_property_191 sh:path schema:influencedBy ;
sh:node schema:Thing ;
ys:fromProperty wdt:P941, wdt:P737 .
ys:MusicGroup_property_192 sh:path schema:recordLabel ;
sh:node schema:Organization ;
ys:fromProperty wdt:P264 .
ys:Person_property_193 sh:path yago:beliefSystem ;
sh:node yago:BeliefSystem ;
ys:fromProperty wdt:P140, wdt:P1142 .
ys:Person_property_194 sh:path yago:academicDegree ;
sh:node yago:Award ;
ys:fromProperty wdt:P512 .
ys:Person_property_195 sh:path schema:affiliation ;
sh:node schema:Organization ;
ys:fromProperty wdt:P1416 .
ys:Person_property_196 sh:path schema:worksFor ;
sh:node schema:Organization ;
ys:fromProperty wdt:P108 .
ys:Person_property_197 sh:path schema:alumniOf ;
sh:node schema:Organization ;
ys:fromProperty wdt:P69 .
ys:Person_property_198 sh:path schema:award ;
sh:node yago:Award ;
ys:fromProperty wdt:P166 .
ys:Person_property_199 sh:path schema:birthDate ;
sh:or ys:list_200 ;
sh:maxCount 1 ;
ys:fromProperty wdt:P569 .
ys:list_200 rdf:first ys:element_201 ;
rdf:rest ys:list_202 .
ys:element_201 sh:datatype xsd:dateTime .
ys:list_202 rdf:first ys:element_203 ;
rdf:rest ys:list_204 .
ys:element_203 sh:datatype xsd:date .
ys:list_204 rdf:first ys:element_205 ;
rdf:rest ys:list_206 .
ys:element_205 sh:datatype xsd:gYearMonth .
ys:list_206 rdf:first ys:element_207 ;
rdf:rest rdf:nil .
ys:element_207 sh:datatype xsd:gYear .
ys:Person_property_209 sh:path schema:birthPlace ;
sh:node schema:Place ;
sh:maxCount 1 ;
ys:fromProperty wdt:P19 .
ys:Person_property_210 sh:path schema:children ;
sh:node schema:Person ;
ys:fromProperty wdt:P40 .
ys:Person_property_211 sh:path schema:deathDate ;
sh:or ys:list_212 ;
sh:maxCount 1 ;
ys:fromProperty wdt:P570 .
ys:list_212 rdf:first ys:element_213 ;
rdf:rest ys:list_214 .
ys:element_213 sh:datatype xsd:dateTime .
ys:list_214 rdf:first ys:element_215 ;
rdf:rest ys:list_216 .
ys:element_215 sh:datatype xsd:date .
ys:list_216 rdf:first ys:element_217 ;
rdf:rest ys:list_218 .
ys:element_217 sh:datatype xsd:gYearMonth .
ys:list_218 rdf:first ys:element_219 ;
rdf:rest rdf:nil .
ys:element_219 sh:datatype xsd:gYear .
ys:Person_property_221 sh:path schema:deathPlace ;
sh:node schema:Place ;
sh:maxCount 1 ;
ys:fromProperty wdt:P20 .
ys:Person_property_222 sh:path schema:gender ;
sh:node yago:Gender ;
sh:maxCount 1 ;
ys:fromProperty wdt:P21 .
ys:Person_property_223 sh:path schema:homeLocation ;
sh:node schema:Place ;
ys:fromProperty wdt:P551 .
ys:Person_property_224 sh:path schema:knowsLanguage ;
sh:node schema:Language ;
ys:fromProperty wdt:P1412 .
ys:Person_property_225 sh:path schema:memberOf ;
sh:node schema:Organization ;
ys:fromProperty wdt:P102, wdt:P463, wdt:P54 .
ys:Person_property_226 sh:path schema:nationality ;
sh:node schema:Country ;
ys:fromProperty wdt:P27 .
ys:Person_property_227 sh:path schema:owns ;
sh:node schema:Thing ;
ys:fromProperty wdt:P1830 .
ys:Person_property_228 sh:path schema:spouse ;
sh:node schema:Person ;
ys:fromProperty wdt:P26 .
yago:Worker rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q702269, wd:Q327055 ;
rdfs:subClassOf schema:Person .
yago:Creator rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q2500638 ;
rdfs:subClassOf yago:Worker ;
sh:property ys:Creator_property_229, ys:Creator_property_230 .
ys:Creator_property_229 sh:path schema:influencedBy ;
sh:node schema:Thing ;
ys:fromProperty wdt:P941, wdt:P737 .
ys:Creator_property_230 sh:path yago:notableWork ;
sh:node schema:CreativeWork ;
ys:fromProperty wdt:P800 .
yago:Academic rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q66666685 ;
rdfs:subClassOf yago:Worker ;
sh:property ys:Academic_property_231, ys:Academic_property_232 .
ys:Academic_property_231 sh:path yago:studentOf ;
sh:node schema:Person ;
ys:fromProperty wdt:P1066 .
ys:Academic_property_232 sh:path yago:doctoralAdvisor ;
sh:node schema:Person ;
ys:fromProperty wdt:P184 .
yago:SportsPerson rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q50995749 ;
rdfs:subClassOf yago:Worker ;
sh:property ys:SportsPerson_property_234, ys:SportsPerson_property_233 .
ys:SportsPerson_property_233 sh:path yago:sportNumber ;
sh:datatype xsd:string ;
ys:fromProperty wdt:P1618 .
ys:SportsPerson_property_234 sh:path yago:playsIn ;
sh:node schema:Event ;
ys:fromProperty wdt:P118 .
yago:Politician rdf:type sh:NodeShape, rdfs:Class ;
ys:fromClass wd:Q82955 ;
rdfs:subClassOf yago:Worker ;
sh:property ys:Politician_property_235 .
ys:Politician_property_235 sh:path yago:candidateIn ;
sh:node schema:Event ;
ys:fromProperty wdt:P3602 .
ys:Place_property_236 sh:path schema:location ;
sh:node schema:Place ;
ys:fromProperty wdt:P276, wdt:P17, wdt:P4552, wdt:P131, wdt:P706 .
ys:Place_property_237 sh:path schema:area ;
sh:datatype xsd:decimal ;
ys:fromProperty wdt:P2046 .
ys:Place_property_238 sh:path schema:highestPoint ;
sh:node schema:Place ;
ys:fromProperty wdt:P610 .
ys:Place_property_239 sh:path schema:lowestPoint ;
sh:node schema:Place ;
ys:fromProperty wdt:P1589 .
ys:Place_property_240 sh:path schema:neighbors ;
sh:node schema:Place ;
ys:fromProperty wdt:P206, wdt:P47 .
ys:Place_property_241 sh:path schema:elevation ;
sh:datatype xsd:decimal ;
ys:fromProperty wdt:P2044 .
ys:Place_property_242 sh:path schema:geo ;
sh:datatype geo:wktLiteral ;
sh:maxCount 1 ;
ys:fromProperty wdt:P625 .
yago:AstronomicalObject rdf:type sh:NodeShape, rdfs:Class ;
rdfs:subClassOf schema:Place ;
sh:property ys:AstronomicalObject_property_246, ys:AstronomicalObject_property_245, ys:AstronomicalObject_property_248, ys:AstronomicalObject_property_247, ys:AstronomicalObject_property_243, ys:AstronomicalObject_property_244 ;
ys:fromClass wd:Q6999 .
ys:AstronomicalObject_property_243 sh:path yago:parentBody ;
sh:node yago:AstronomicalObject ;
ys:fromProperty wdt:P397 .
ys:AstronomicalObject_property_244 sh:path yago:mass ;
sh:datatype xsd:decimal ;
ys:fromProperty wdt:P2067 .
ys:AstronomicalObject_property_245 sh:path yago:luminosity ;
sh:datatype xsd:decimal ;
ys:fromProperty wdt:P2060 .
ys:AstronomicalObject_property_246 sh:path yago:parallax ;
sh:datatype xsd:decimal ;
ys:fromProperty wdt:P2214 .
ys:AstronomicalObject_property_247 sh:path yago:radialVelocity ;
sh:datatype xsd:decimal ;
ys:fromProperty wdt:P2216 .
ys:AstronomicalObject_property_248 sh:path yago:distanceFromEarth ;
sh:datatype xsd:decimal ;
ys:fromProperty wdt:P2583 .
schema:AdministrativeArea rdf:type sh:NodeShape, rdfs:Class ;
sh:property ys:AdministrativeArea_property_255, ys:AdministrativeArea_property_249, ys:AdministrativeArea_property_252, ys:AdministrativeArea_property_256, ys:AdministrativeArea_property_257, ys:AdministrativeArea_property_253, ys:AdministrativeArea_property_251, ys:AdministrativeArea_property_250, ys:AdministrativeArea_property_254, ys:AdministrativeArea_property_258 ;
ys:fromClass wd:Q486972, wd:Q56061 ;
rdfs:subClassOf schema:Place .
ys:AdministrativeArea_property_249 sh:path schema:dateCreated ;
sh:datatype xsd:dateTime ;
ys:fromProperty wdt:P571 ;
sh:maxCount 1 .
ys:AdministrativeArea_property_250 sh:path schema:demonym ;
sh:datatype xsd:string ;
ys:fromProperty wdt:P1549 .
ys:AdministrativeArea_property_251 sh:path schema:leader ;
sh:node schema:Person ;
ys:fromProperty wdt:P6, wdt:P35 .
ys:AdministrativeArea_property_252 sh:path yago:replaces ;
sh:node schema:AdministrativeArea ;
ys:fromProperty wdt:P1365 .
ys:AdministrativeArea_property_253 sh:path schema:populationNumber ;
sh:datatype xsd:decimal ;
ys:fromProperty wdt:P1082 .
ys:AdministrativeArea_property_254 sh:path schema:postalCode ;
sh:datatype xsd:string ;
ys:fromProperty wdt:P281 .
ys:AdministrativeArea_property_255 sh:path schema:motto ;
sh:datatype xsd:string ;
ys:fromProperty wdt:P1451 .
ys:AdministrativeArea_property_256 sh:path schema:memberOf ;
sh:node schema:Organization ;
ys:fromProperty wdt:P463 .