-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdomain_dict
More file actions
8499 lines (8499 loc) · 390 KB
/
domain_dict
File metadata and controls
8499 lines (8499 loc) · 390 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
{
"american_football": [
"american_football.football_team.historical_coaching_staff",
"american_football.game_rushing_statistics.longest",
"american_football.player_rushing_statistics.as_of_week",
"american_football.football_division.conference",
"american_football.nfl_game",
"american_football.game_receiving_statistics",
"american_football.player_passing_statistics.season",
"american_football.player_passing_statistics.completions",
"american_football.game_passing_statistics.sacks",
"american_football.player_rushing_statistics.touchdowns",
"american_football.player_passing_statistics.player",
"american_football.football_team.conference",
"american_football.football_team",
"american_football.football_player.passing",
"american_football.game_passing_statistics.game",
"american_football.player_rushing_statistics.yards",
"american_football.player_receiving_statistics",
"american_football.game_rushing_statistics.game",
"american_football.player_passing_statistics.attempts",
"american_football.game_rushing_statistics.yards",
"american_football.football_division",
"american_football.football_game.rushing",
"american_football.player_game_statistics.team",
"american_football.player_game_statistics.season",
"american_football.player_rushing_statistics.longest",
"american_football.football_conference.divisions",
"american_football.game_passing_statistics",
"american_football.football_scoring_event",
"american_football.football_coach.current_team_head_coached",
"american_football.football_historical_coach_position.team",
"american_football.game_rushing_statistics.team",
"american_football.game_passing_statistics.interceptions",
"american_football.game_passing_statistics.touchdown_on_longest_pass",
"american_football.player_rushing_statistics.player",
"american_football.player_receiving_statistics.player",
"american_football.player_receiving_statistics.touchdowns",
"american_football.player_receiving_statistics.touchdown_on_longest_reception",
"american_football.forty_yard_dash_time.time",
"american_football.football_game.passing",
"american_football.football_coach_position",
"american_football.player_passing_statistics.as_of_week",
"american_football.player_game_statistics.player",
"american_football.player_rushing_statistics",
"american_football.game_receiving_statistics.longest",
"american_football.player_game_statistics.starts",
"american_football.football_historical_coach_position",
"american_football.football_player.games",
"american_football.football_game",
"american_football.football_game.season",
"american_football.football_game_score.game",
"american_football.player_passing_statistics.interceptions",
"american_football.forty_yard_dash_time.date",
"american_football.player_game_statistics.games",
"american_football.game_rushing_statistics.carries",
"american_football.player_passing_statistics.yards",
"american_football.nfl_game.week",
"american_football.game_rushing_statistics.touchdown_on_longest_carry",
"american_football.football_player.forty_yard_dash_time",
"american_football.football_game.receiving",
"american_football.football_game_score.team",
"american_football.game_passing_statistics.team",
"american_football.football_team.home_games",
"american_football.football_historical_coach_position.coach",
"american_football.scoreboard_quarter",
"american_football.game_rushing_statistics.player",
"american_football.game_passing_statistics.yards_lost_on_sacks",
"american_football.player_rushing_statistics.carries",
"american_football.football_team.away_games",
"american_football.football_historical_coach_position.from",
"american_football.football_game.date",
"american_football.football_coach.coaching_history",
"american_football.super_bowl",
"american_football.game_rushing_statistics",
"american_football.player_rushing_statistics.team",
"american_football.game_passing_statistics.player",
"american_football.game_passing_statistics.longest_completion",
"american_football.player_rushing_statistics.touchdown_on_longest_carry",
"american_football.football_historical_coach_position.position",
"american_football.game_receiving_statistics.yards",
"american_football.player_passing_statistics",
"american_football.player_receiving_statistics.longest",
"american_football.game_passing_statistics.yards",
"american_football.player_receiving_statistics.receptions",
"american_football.football_player",
"american_football.football_division.teams",
"american_football.football_game.game_scores",
"american_football.football_conference",
"american_football.football_player.position_s",
"american_football.game_passing_statistics.touchdowns",
"american_football.game_receiving_statistics.touchdowns",
"american_football.game_passing_statistics.attempts",
"american_football.football_conference.teams",
"american_football.football_player.receiving",
"american_football.football_coach_position.coaches_holding_this_position",
"american_football.player_receiving_statistics.as_of_week",
"american_football.football_game.home_team",
"american_football.football_coach",
"american_football.football_game.away_team",
"american_football.game_receiving_statistics.touchdown_on_longest_reception",
"american_football.player_receiving_statistics.yards",
"american_football.game_receiving_statistics.team",
"american_football.football_conference.league",
"american_football.football_player.rushing",
"american_football.football_team.current_head_coach",
"american_football.player_passing_statistics.touchdowns",
"american_football.football_game_score",
"american_football.game_receiving_statistics.game",
"american_football.game_passing_statistics.rating",
"american_football.football_game_score.score",
"american_football.football_team.division",
"american_football.forty_yard_dash_time",
"american_football.game_receiving_statistics.player",
"american_football.game_passing_statistics.completions",
"american_football.player_receiving_statistics.team",
"american_football.player_game_statistics.as_of_week",
"american_football.game_receiving_statistics.receptions",
"american_football.player_game_statistics",
"american_football.player_receiving_statistics.season",
"american_football.player_rushing_statistics.season",
"american_football.game_rushing_statistics.touchdowns",
"american_football.player_passing_statistics.team",
"american_football.football_historical_coach_position.to"
],
"amusement_parks": [
"amusement_parks.accident.ride",
"amusement_parks.ride.ride_type",
"amusement_parks.ride.includes_film",
"amusement_parks.roller_coaster_propulsion_system",
"amusement_parks.ride.theme",
"amusement_parks.roller_coaster_material.roller_coasters",
"amusement_parks.roller_coaster_propulsion_system.roller_coasters",
"amusement_parks.ride.designer",
"amusement_parks.ride_manufacturer",
"amusement_parks.accident.injuries",
"amusement_parks.roller_coaster.track_length",
"amusement_parks.accident.date",
"amusement_parks.disney_ride_ticket_membership.from",
"amusement_parks.disney_ride_ticket_membership.ticket",
"amusement_parks.ride_theme",
"amusement_parks.roller_coaster.propulsion",
"amusement_parks.ride_type",
"amusement_parks.park.area",
"amusement_parks.ride.max_g",
"amusement_parks.amusement_park_area.parks",
"amusement_parks.park.opened",
"amusement_parks.ride.geolocation",
"amusement_parks.ride.inversions",
"amusement_parks.ride.height",
"amusement_parks.roller_coaster_train_configuration",
"amusement_parks.park.annual_visits",
"amusement_parks.amusement_park_area",
"amusement_parks.ride.duration",
"amusement_parks.disney_ride_ticket.rides",
"amusement_parks.disney_ride",
"amusement_parks.park.areas",
"amusement_parks.ride.manufacturer",
"amusement_parks.roller_coaster.material",
"amusement_parks.disney_ride_ticket",
"amusement_parks.ride.accidents",
"amusement_parks.ride_designer.rides",
"amusement_parks.ride_manufacturer.rides",
"amusement_parks.park.geolocation",
"amusement_parks.ride.park",
"amusement_parks.ride.closed",
"amusement_parks.roller_coaster.train_configuration",
"amusement_parks.ride.cost",
"amusement_parks.park.name_history",
"amusement_parks.ride.max_speed",
"amusement_parks.park",
"amusement_parks.ride.height_restriction",
"amusement_parks.ride.area",
"amusement_parks.roller_coaster_material",
"amusement_parks.accident",
"amusement_parks.ride_theme.rides",
"amusement_parks.roller_coaster_train_configuration.roller_coasters",
"amusement_parks.ride_type.rides",
"amusement_parks.park.location",
"amusement_parks.amusement_park_area.rides",
"amusement_parks.ride.capacity",
"amusement_parks.ride.drop",
"amusement_parks.disney_ride_ticket_membership",
"amusement_parks.park.rides",
"amusement_parks.accident.deaths",
"amusement_parks.ride_designer",
"amusement_parks.ride",
"amusement_parks.park.closed",
"amusement_parks.roller_coaster",
"amusement_parks.ride.opened",
"amusement_parks.disney_ride_ticket_membership.ride",
"amusement_parks.park.owner",
"amusement_parks.disney_ride_ticket_membership.to",
"amusement_parks.disney_ride.ticket"
],
"architecture": [
"architecture.building_function",
"architecture.architect",
"architecture.light_color_range.lighthouse_having_color_ranges",
"architecture.ownership.start_date",
"architecture.engineering_firm.projects",
"architecture.type_of_museum",
"architecture.landscape_project.construction_cost",
"architecture.building_complex_function.building_complexes",
"architecture.lighthouse.intensity",
"architecture.building.floor_space_square_meters",
"architecture.lighthouse.construction",
"architecture.architect.structure_count",
"architecture.architectural_style.architects",
"architecture.ownership.owner",
"architecture.light_attributes.lighthouse_having_attributes",
"architecture.tower_shape.lighthouse_has_shape",
"architecture.lighthouse_construction_material.used_on_lighthouse",
"architecture.lighthouse.light_color_range",
"architecture.lighthouse.light_sequence",
"architecture.occupancy.from",
"architecture.architectural_contractor",
"architecture.tower",
"architecture.architecture_firm.projects",
"architecture.structural_engineer",
"architecture.ownership",
"architecture.building_complex_function",
"architecture.light_color_range",
"architecture.architecture_firm_partners",
"architecture.lighthouse.focal_height_of_light",
"architecture.light_attributes.sequence_duration",
"architecture.structure.height_meters",
"architecture.landscape_project",
"architecture.architect.architectural_style",
"architecture.tower_shape",
"architecture.building_occupant",
"architecture.occupancy.building",
"architecture.occupancy.occupant",
"architecture.structure.architectural_style",
"architecture.landscape_project.closed",
"architecture.house",
"architecture.lighthouse.out_of_service_date",
"architecture.destruction_method",
"architecture.structure.opened",
"architecture.structure.engineer",
"architecture.building",
"architecture.light_characteristic.lighthouse_having_characteristics",
"architecture.venue.capacity",
"architecture.architecture_firm",
"architecture.structure.architecture_firm",
"architecture.building_complex.floor_space_square_meters",
"architecture.architectural_structure_owner",
"architecture.light_sequence",
"architecture.unrealized_design",
"architecture.skyscraper.height_with_antenna_spire_meters",
"architecture.engineer.partner_in_firm",
"architecture.lighthouse",
"architecture.light_sequence.flash_secs",
"architecture.occupancy.to",
"architecture.building.occupant",
"architecture.architectural_contractor.projects",
"architecture.engineering_firm",
"architecture.landscape_project.opened",
"architecture.engineer.projects",
"architecture.landscape_project.address",
"architecture.type_of_museum.museums",
"architecture.building_complex.complex_function",
"architecture.museum.type_of_museum",
"architecture.lighthouse.tower_shape",
"architecture.museum.director",
"architecture.structure.architect",
"architecture.structure.owner",
"architecture.light_color_range.light_range",
"architecture.structure.construction_cost",
"architecture.museum",
"architecture.architecture_firm.firm_partners",
"architecture.landscape_architect",
"architecture.architectural_style",
"architecture.skyscraper",
"architecture.occupancy",
"architecture.architect.structures_designed",
"architecture.venue",
"architecture.museum_director",
"architecture.lighthouse.year_first_lit",
"architecture.museum.visitors",
"architecture.landscape_project.landscape_architect",
"architecture.architectural_structure_owner.structures_owned",
"architecture.structure.destroyed_by",
"architecture.structure.closed",
"architecture.building_complex",
"architecture.lighthouse.automated",
"architecture.museum.address",
"architecture.museum.established",
"architecture.light_attributes",
"architecture.light_color_range.color",
"architecture.destruction_method.structures_destroyed",
"architecture.structure.contractor",
"architecture.building_complex.buildings_in_complex",
"architecture.light_characteristic",
"architecture.landscape_architect.landscape_project",
"architecture.architectural_style.examples",
"architecture.lighthouse.light_attributes",
"architecture.museum_director.museum",
"architecture.building.building_complex",
"architecture.engineer",
"architecture.light_sequence.seq_num",
"architecture.building_occupant.buildings_occupied",
"architecture.structure.destruction_date",
"architecture.structure",
"architecture.ownership.end_date",
"architecture.building.building_function",
"architecture.structure.engineering_firm",
"architecture.lighthouse_construction_material",
"architecture.architecture_firm_partners.partner_in_firm",
"architecture.structure.topped_out",
"architecture.light_sequence.eclipse_secs_dark",
"architecture.building_function.buildings",
"architecture.civil_engineer",
"architecture.engineering_firm.partners",
"architecture.light_attributes.light_type",
"architecture.ownership.structure",
"architecture.structure.construction_started",
"architecture.building.floors"
],
"astronomy": [
"astronomy.apparent_dimension.major_axis",
"astronomy.asteroid_family.founding_asteroid_family_member",
"astronomy.celestial_object.hipparcos_catalog_number",
"astronomy.meteor_shower.meteor_shower_observation",
"astronomy.galactic_super_cluster.galaxy_filament",
"astronomy.planetographic_coordinate.elevation",
"astronomy.nebula",
"astronomy.celestial_object_age",
"astronomy.celestial_object_with_coordinate_system",
"astronomy.meteorite.meteorite_fall_discoverer",
"astronomy.telescope_principle_type.telescopic_classifications_of_this_technique",
"astronomy.meteorite",
"astronomy.asteroid_group",
"astronomy.star.mass_m",
"astronomy.asteroid_group.asteroid_group_founding_member",
"astronomy.extraterrestrial_location.type_of_planetographic_feature",
"astronomy.celestial_object.cosmological_distance",
"astronomy.star.constellation",
"astronomy.asteroid_spectral_type.asteroids_of_this_type",
"astronomy.galactic_group.galaxies_in_group",
"astronomy.supernova",
"astronomy.telescope_type.telescopes_of_this_type",
"astronomy.galaxy_classification_code.galaxy_shape",
"astronomy.celestial_object_age.uncertainty",
"astronomy.galactic_cluster.galaxy_supercluster",
"astronomy.asterism",
"astronomy.star_system.stars",
"astronomy.orbital_relationship.orbited_by",
"astronomy.star_system.plutoids",
"astronomy.star_system_body",
"astronomy.plutoid.star_system",
"astronomy.trans_neptunian_region",
"astronomy.near_earth_object_classification.near_earth_objects",
"astronomy.satellite_galaxy",
"astronomy.galactic_group.galaxy_cluster",
"astronomy.meteorite.meteorite_surface_crater_earth",
"astronomy.comet.next_perihelion_predicted",
"astronomy.astronomical_discovery.discovery_date",
"astronomy.near_earth_object",
"astronomy.astronomical_discovery.discovery_organization",
"astronomy.type_of_planetographic_feature",
"astronomy.astronomer",
"astronomy.extraterrestrial_location.geolocation",
"astronomy.galaxy.galactic_group",
"astronomy.star_system_body.absolute_magnitude",
"astronomy.astronomical_discovery.status",
"astronomy.star_system.planets",
"astronomy.astronomical_discovery.discoverer",
"astronomy.planetographic_coordinate.longitude",
"astronomy.galactic_cluster",
"astronomy.galactic_filament",
"astronomy.galactic_group",
"astronomy.meteorite.meteorite_mass",
"astronomy.telescope_type.telescopic_principle",
"astronomy.astronomical_discovery.discovery_technique",
"astronomy.astronomical_discovery_status.objects",
"astronomy.meteor_shower.radiant",
"astronomy.galactic_shape",
"astronomy.planetographic_coordinate.coordinate_system",
"astronomy.meteoric_composition.meteorites",
"astronomy.galaxy_classification_code",
"astronomy.telescope_platform",
"astronomy.galactic_interaction.interaction_type",
"astronomy.telescope.type_of_telescope",
"astronomy.meteor_shower_occurrence.zenith_hourly_rate",
"astronomy.astronomical_discovery_technique",
"astronomy.meteorite.meteorite_observer",
"astronomy.constellation_bordering_relationship",
"astronomy.telescope.operational_period",
"astronomy.star.luminosity",
"astronomy.galactic_super_cluster.galaxy_clusters",
"astronomy.star.radius",
"astronomy.comet.comet_group",
"astronomy.star",
"astronomy.planetographic_coordinate",
"astronomy.galactic_filament.galaxy_superclusters",
"astronomy.telescope_type.higher_classification",
"astronomy.asteroid.spectral_type",
"astronomy.star.metallicity",
"astronomy.orbital_relationship.orbits",
"astronomy.trans_neptunian_object.region",
"astronomy.star.star_system",
"astronomy.comet.last_perihelion",
"astronomy.meteor_shower.common_calendar_occurance",
"astronomy.planetographic_coordinate_system",
"astronomy.galaxy.number_of_stars",
"astronomy.planetographic_coordinate_system.prime_meridian_feature",
"astronomy.extraterrestrial_location.contained_by",
"astronomy.apparent_dimension.minor_axis",
"astronomy.apparent_mass.uncertainty",
"astronomy.galactic_shape.galaxies_of_this_shape",
"astronomy.galaxy.satellite_galaxies",
"astronomy.telescope.operational_altitude",
"astronomy.meteorite.meteorite_composition",
"astronomy.asteroid_family.asteroid_family_member",
"astronomy.galaxy_classification_code.galaxies_of_this_code",
"astronomy.meteor_shower_occurrence.start_date",
"astronomy.galactic_interaction.status",
"astronomy.star_system_body.star_system",
"astronomy.star_system.system_age",
"astronomy.meteorite.meteorite_fall_geolocation",
"astronomy.satellite_galaxy.satellite_of_this_galaxy",
"astronomy.plutoid",
"astronomy.meteor_shower_occurrence",
"astronomy.dwarf_planet",
"astronomy.apparent_dimension",
"astronomy.astronomical_observatory",
"astronomy.apparent_mass.mass",
"astronomy.telescope.operational_platform",
"astronomy.comet.meteor_shower_spawned",
"astronomy.celestial_object_age.age",
"astronomy.asteroid.member_of_asteroid_family",
"astronomy.extraterrestrial_location",
"astronomy.celestial_object.magnitude",
"astronomy.astronomical_discovery.discovery_site",
"astronomy.meteorite_source.meteorites",
"astronomy.type_of_planetographic_feature.planetographic_features_of_this_type",
"astronomy.type_of_planetographic_feature.includes",
"astronomy.galaxy",
"astronomy.astronomical_survey_project_organization.celestial_objects_discovered",
"astronomy.apparent_mass",
"astronomy.galactic_interaction_status",
"astronomy.scattered_disc_object",
"astronomy.orbital_relationship.orbital_period",
"astronomy.asteroid",
"astronomy.celestial_object_with_coordinate_system.planetographic_coordinate_system",
"astronomy.meteorite.meteorite_fall_location",
"astronomy.orbital_relationship.orbit_type",
"astronomy.near_earth_object.near_earth_object_classification",
"astronomy.astronomical_observatory.telescope_s",
"astronomy.star_system.constellation",
"astronomy.galactic_interaction.galaxy",
"astronomy.galaxy.constellation",
"astronomy.meteoric_composition",
"astronomy.orbital_relationship.semi_major_axis",
"astronomy.planetographic_coordinate.extraterrestrial_location",
"astronomy.astronomical_survey_project_organization.observatory",
"astronomy.number_of_stars.stars",
"astronomy.star_system",
"astronomy.celestial_object.celestial_age",
"astronomy.orbital_relationship",
"astronomy.celestial_object.decllnation",
"astronomy.asteroid_spectral_type",
"astronomy.star.temperature_k",
"astronomy.orbit_type.orbiting_bodies",
"astronomy.extraterrestrial_location.contains",
"astronomy.meteorite.meteorite_discovery_location",
"astronomy.orbital_relationship.orbital_order",
"astronomy.asterism.constellations",
"astronomy.star.planet_s",
"astronomy.moon",
"astronomy.celestial_object.artificial_satellites",
"astronomy.orbital_relationship.periapsis",
"astronomy.meteorite.institutional_specimen_location",
"astronomy.star.spectral_type",
"astronomy.constellation.bordering_constellations",
"astronomy.astronomer.astronomical_objects_discovered",
"astronomy.comet",
"astronomy.planetographic_coordinate.latitude",
"astronomy.constellation.bordering_constellations_new",
"astronomy.asterism.stars",
"astronomy.galactic_interaction",
"astronomy.telescope_platform.telescopes_based_on_this",
"astronomy.planet",
"astronomy.celestial_object.locations",
"astronomy.galactic_interaction_type",
"astronomy.celestial_object.category",
"astronomy.type_of_planetographic_feature.included_in",
"astronomy.telescope_type.lower_telescope_classification",
"astronomy.trans_neptunian_region.trans_neptunian_objects",
"astronomy.galaxy.diameter",
"astronomy.meteorite_source",
"astronomy.astronomical_discovery",
"astronomy.astronomical_discovery_status",
"astronomy.number_of_stars",
"astronomy.meteor_shower_occurrence.end_date",
"astronomy.galaxy.galaxy_classification_hubble",
"astronomy.constellation.meteor_showers",
"astronomy.telescope_principle_type",
"astronomy.orbital_relationship.epoch",
"astronomy.celestial_object.absolute_magnitude",
"astronomy.asteroid.member_of_asteroid_group",
"astronomy.constellation.galaxies_observed_in_constellation",
"astronomy.celestial_object",
"astronomy.meteor_shower",
"astronomy.constellation",
"astronomy.asteroid_family",
"astronomy.meteorite.meteorite_fall_date",
"astronomy.extraterrestrial_location.on_celestial_object",
"astronomy.celestial_object_category.objects",
"astronomy.planetographic_coordinate_system.celestial_object",
"astronomy.star.rotation",
"astronomy.constellation_bordering_relationship.constellations",
"astronomy.meteor_shower_occurrence.peak_of_meteor_shower",
"astronomy.orbit_type",
"astronomy.dwarf_planet.star_system",
"astronomy.meteorite.meteorite_discovery_geolocation",
"astronomy.telescope_type",
"astronomy.spectral_type.celestial_objects_of_this_spectral_type",
"astronomy.comet_group",
"astronomy.orbital_relationship.aoapsis",
"astronomy.star_system.planetary_system",
"astronomy.astronomical_survey_project_organization",
"astronomy.celestial_object.color_index",
"astronomy.near_earth_object_classification",
"astronomy.asteroid_group.asteroid_group_members",
"astronomy.meteorite.meteorite_discovery_date",
"astronomy.celestial_object_category.subcategory_of",
"astronomy.galactic_interaction_status.galactic_interactions",
"astronomy.star_system.dwarf_planets",
"astronomy.orbital_relationship.orbit_eccentricity",
"astronomy.galaxy.interaction",
"astronomy.constellation.contains",
"astronomy.spectral_type",
"astronomy.meteorite.source_celestial_body",
"astronomy.meteor_shower.source_of_meteor_shower",
"astronomy.number_of_stars.uncertainty",
"astronomy.galactic_interaction.when",
"astronomy.astronomical_observatory.discoveries",
"astronomy.astronomical_discovery_technique.astronomical_discoveries_by_this_method",
"astronomy.celestial_object_category.subcategories",
"astronomy.galactic_interaction_type.galaxy_s_interacting_this_way",
"astronomy.galaxy.apparent_mass",
"astronomy.orbital_relationship.mean_orbital_speed",
"astronomy.trans_neptunian_object",
"astronomy.galactic_super_cluster",
"astronomy.celestial_object.right_ascention",
"astronomy.meteor_shower_occurrence.observation_start",
"astronomy.telescope",
"astronomy.orbital_relationship.inclination",
"astronomy.meteor_shower_occurrence.observation_ends",
"astronomy.comet_group.comet",
"astronomy.telescope.housed_in",
"astronomy.celestial_object_category",
"astronomy.galactic_interaction.duration",
"astronomy.galactic_cluster.galaxy_groups"
],
"automotive": [
"automotive.trim_level.engine",
"automotive.manufacturing_plant_model_relationship",
"automotive.company.manufacturing_plants",
"automotive.us_fuel_economy.highway_mpg",
"automotive.make.parent_company",
"automotive.warranty.year_limit",
"automotive.body_style.front_leg_room_in",
"automotive.engine.fuel_delivery",
"automotive.driveline",
"automotive.trim_level",
"automotive.body_style.examples",
"automotive.trim_level.us_fuel_economy",
"automotive.exterior_color",
"automotive.trim_level.passenger_volume",
"automotive.model.successor",
"automotive.body_style.passenger_volume_cu_ft",
"automotive.automotive_class.examples",
"automotive.trim_level.hybrid",
"automotive.model_year.generation",
"automotive.engine.forced_induction",
"automotive.model_year.make",
"automotive.body_style.rear_leg_room",
"automotive.engine.size_in_liters",
"automotive.upholstery.material",
"automotive.transmission_type",
"automotive.privately_owned_vehicle.model",
"automotive.generation.years",
"automotive.model.manufactured_at",
"automotive.body_style.curb_weight",
"automotive.fuel_delivery_method",
"automotive.warranty.milage_limit",
"automotive.manufacturing_plant_model_relationship.to",
"automotive.engine_type",
"automotive.us_fuel_economy",
"automotive.engine.torque_ft_lbs",
"automotive.upholstery.color",
"automotive.trim_level.acceleration",
"automotive.trim_level.driveline",
"automotive.model_year.trim_levels",
"automotive.make",
"automotive.platform.related",
"automotive.model.predecessor",
"automotive.platform.generations",
"automotive.body_style.luggage_capacity",
"automotive.platform.predecessor",
"automotive.trim_level.rear_track",
"automotive.transmission.number_of_reverse_gears",
"automotive.body_style.rear_track",
"automotive.us_fuel_economy.trim_level",
"automotive.trim_level.front_headroom",
"automotive.trim_level.transmission",
"automotive.model.similar",
"automotive.body_style.exterior_height",
"automotive.engine.trim_levels",
"automotive.model_year.body_style",
"automotive.manufacturing_plant",
"automotive.privately_owned_vehicle.exterior_color",
"automotive.generation.successor",
"automotive.company.make_s",
"automotive.fuel",
"automotive.privately_owned_vehicle.make",
"automotive.designer.automobiles_designed",
"automotive.generation.model",
"automotive.trim_level.cargo_volume",
"automotive.model_year.next_model_year",
"automotive.body_style.turning_circle_m",
"automotive.body_style",
"automotive.body_style.range",
"automotive.transmission",
"automotive.engine.make",
"automotive.generation.designer",
"automotive.trim_level.max_cargo_volume",
"automotive.model.related_models",
"automotive.transmission.number_of_gears",
"automotive.model.make",
"automotive.generation",
"automotive.privately_owned_vehicle.owner",
"automotive.generation.markets",
"automotive.body_style.exterior_length",
"automotive.trim_level.max_passengers",
"automotive.trim_level.height",
"automotive.generation.models",
"automotive.trim_level.weight",
"automotive.body_style.front_shoulder_room",
"automotive.privately_owned_vehicle",
"automotive.body_style.front_track",
"automotive.trim_level.year",
"automotive.exterior_color.metallic",
"automotive.trim_level.top_speed",
"automotive.us_fuel_economy.fuel",
"automotive.exterior_color.clear_coat",
"automotive.manufacturing_plant.company",
"automotive.transmission.used_in",
"automotive.model.generations",
"automotive.driveline.trim_levels",
"automotive.manufacturing_plant_model_relationship.from",
"automotive.trim_level.rear_shoulder_room",
"automotive.model_year",
"automotive.transmission.trim_levels",
"automotive.manufacturing_plant_model_relationship.manufacturing_plant",
"automotive.generation.years_produced",
"automotive.trim_level.model_year",
"automotive.trim_level.msrp",
"automotive.engine.engine_type",
"automotive.trim_level.interior",
"automotive.trim_level.width",
"automotive.model",
"automotive.manufacturing_plant.models_manufactured",
"automotive.model_year.year",
"automotive.model.automotive_class",
"automotive.model_year.examples",
"automotive.platform",
"automotive.model_year.previous_model_year",
"automotive.make.model_s",
"automotive.body_style.maximum_seating",
"automotive.trim_level.front_track",
"automotive.us_fuel_economy.city_mpg",
"automotive.trim_level.front_shoulder_room",
"automotive.privately_owned_vehicle.milage",
"automotive.engine.horsepower",
"automotive.designer",
"automotive.trim_level.exterior_colors",
"automotive.privately_owned_vehicle.model_year",
"automotive.body_style.rear_shoulder_room",
"automotive.body_style.exterior_width",
"automotive.engine_type.used_in",
"automotive.transmission.classification",
"automotive.body_style.front_headroom",
"automotive.transmission.select_shift",
"automotive.engine_type.examples",
"automotive.model_year.warranty",
"automotive.fuel.engines",
"automotive.trim_level.rear_legroom",
"automotive.manufacturing_plant_model_relationship.model",
"automotive.body_style.wheelbase",
"automotive.manufacturing_plant.location",
"automotive.generation.make",
"automotive.similar_automobile_models.related_model",
"automotive.warranty",
"automotive.transmission.overdrive",
"automotive.generation.predecessor",
"automotive.trim_level.doors",
"automotive.model_year.model",
"automotive.trim_level.front_legroom",
"automotive.trim_level.wheelbase",
"automotive.company",
"automotive.body_style.rear_headroom",
"automotive.privately_owned_vehicle.interior",
"automotive.platform.successor",
"automotive.generation.generation_number",
"automotive.generation.manufacturing_plant",
"automotive.engine",
"automotive.generation.platforms",
"automotive.engine.used_in",
"automotive.similar_automobile_models",
"automotive.model.related",
"automotive.transmission_type.transmissions",
"automotive.engine.fuels_used",
"automotive.trim_level.length",
"automotive.trim_level.rear_headroom",
"automotive.upholstery",
"automotive.model.model_years",
"automotive.automotive_class",
"automotive.trim_level.ground_clearance",
"automotive.body_style.fuel_tank_capacity",
"automotive.body_style.generation"
],
"aviation": [
"aviation.aircraft_status",
"aviation.airline_alliance.number_of_annual_passengers",
"aviation.airline.number_of_destinations",
"aviation.aircraft_owner.aircraft_fleet_composition",
"aviation.airport_runway.start_elevation",
"aviation.airline_alliance.number_of_countries_served",
"aviation.airline_airport_presence",
"aviation.aircraft_model.passengers",
"aviation.aviation_incident_aircraft_relationship.incident",
"aviation.aircraft_model.engine_type",
"aviation.aviation_incident_aircraft_relationship.passengers",
"aviation.waypoint_type",
"aviation.airport_operator",
"aviation.aircraft_model.comparable_aircraft",
"aviation.airliner_accident.aircraft",
"aviation.airport",
"aviation.aircraft_ownership_count.number_owned",
"aviation.airline_airport_presence.airport",
"aviation.aircraft_model.retired",
"aviation.airline_alliance.number_of_full_members",
"aviation.airport_runway.end_location",
"aviation.airline",
"aviation.airline.IATA_designator",
"aviation.aircraft_model.number_built",
"aviation.aviation_incident_aircraft_relationship.crew",
"aviation.airport_terminal.airport",
"aviation.cargo_by_year.date",
"aviation.airliner_accident",
"aviation.airliner_accident.passengers",
"aviation.aircraft_line",
"aviation.airport.amount_of_cargo",
"aviation.airline.fleet_size",
"aviation.airliner_accident.flight_destination",
"aviation.aviation_incident_aircraft_relationship.aircraft_model",
"aviation.aircraft_model.unit_cost",
"aviation.aircraft_engine_type",
"aviation.aircraft_manufacturer.aircraft_models_made",
"aviation.aviation_incident_aircraft_relationship.flight_destination",
"aviation.airline_alliance.number_of_airports_served",
"aviation.icao_airline_designator",
"aviation.airport_runway.airport",
"aviation.aircraft_model.designed_by",
"aviation.airport_type",
"aviation.accident_type",
"aviation.aircraft_ownership_count.aircraft_owner",
"aviation.comparable_aircraft_relationship",
"aviation.aircraft_model.parent_aircraft_model",
"aviation.aviation_incident_aircraft_relationship.flight_origin",
"aviation.airport.airlines",
"aviation.aviation_incident_aircraft_relationship.survivors",
"aviation.airline_alliance",
"aviation.airline_alliance.number_of_pending_members",
"aviation.aircraft_model.aircraft",
"aviation.airport_type.airports_of_this_type",
"aviation.accident_type.aircraft_accidents_of_this_type",
"aviation.aircraft_model.length_meters",
"aviation.airliner_accident.fatalities",
"aviation.airport.serves",
"aviation.aircraft_model.part_of_line",
"aviation.airline_alliance.fleet_size",
"aviation.airliner_accident.aircraft_type",
"aviation.aircraft_model.wingspan",
"aviation.airport.operator",
"aviation.aircraft_status.date",
"aviation.airport_runway.length",
"aviation.aircraft_model.manufacturer",
"aviation.airline_alliance.official_launch_date",
"aviation.aircraft_type.aircraft_of_this_type",
"aviation.airport.airport_type",
"aviation.airport.hub_for",
"aviation.airline.ICAO_designator",
"aviation.airport.runway_information",
"aviation.aircraft_manufacturer",
"aviation.waypoint_type.waypoints_of_this_type",
"aviation.airline_alliance.number_of_non_voting_members",
"aviation.aircraft_model.accidents",
"aviation.aircraft_designer",
"aviation.airline.accidents",
"aviation.aircraft_ownership_count",
"aviation.airport_operator.airports_operated",
"aviation.aircraft.first_flight",
"aviation.iata_airline_designator.airline",
"aviation.aircraft_model.cargo_capacity",
"aviation.airport.focus_city_for",
"aviation.airliner_accident.date",
"aviation.comparable_aircraft_relationship.aircraft",
"aviation.airline.airports_served",
"aviation.aircraft_owner",
"aviation.airline.alliance",
"aviation.airport.number_of_runways",
"aviation.aviation_incident_aircraft_relationship.operator",
"aviation.airport.terminals",
"aviation.airport_runway",
"aviation.aircraft_model.status",
"aviation.iata_airline_designator",
"aviation.airport.number_of_passengers",
"aviation.aviation_waypoint",
"aviation.airliner_accident.accident_site",
"aviation.aircraft_model.introduced",
"aviation.aircraft",
"aviation.airport_runway_surface",
"aviation.aviation_incident_aircraft_relationship",
"aviation.aircraft_model.number_owned_by",
"aviation.cargo_by_year.weight",
"aviation.aircraft_line.models_in_line",
"aviation.airport_runway.surface",
"aviation.aircraft_model.range",
"aviation.aircraft_model.variants",
"aviation.aircraft_model.maximum_speed_km_h",
"aviation.airline.focus_cities",
"aviation.aircraft_model.maiden_flight",
"aviation.airline_alliance.member_airlines",
"aviation.airliner_accident.operator",
"aviation.airport_runway.end_elevation",
"aviation.aircraft_model.aircraft_type",
"aviation.airline.hubs",
"aviation.airliner_accident.accident_type",
"aviation.airliner_accident.injuries",
"aviation.airliner_accident.survivors",
"aviation.airport_runway.start_location",
"aviation.aviation_waypoint.waypoint_type",
"aviation.aircraft.date_manufactured",
"aviation.airline_airport_presence.cities_served",
"aviation.cargo_by_year",
"aviation.aircraft_type",
"aviation.icao_airline_designator.airline",
"aviation.airliner_accident.crew",
"aviation.aircraft_model.cruise_speed",
"aviation.airport.number_of_aircraft_movements",
"aviation.aircraft_ownership_count.aircraft_model",
"aviation.airport_runway.width",
"aviation.aircraft_designer.aircraft_models_designed",
"aviation.airport_terminal",
"aviation.airport_runway_surface.runways",
"aviation.aircraft.model",
"aviation.airliner_accident.flight_origin",
"aviation.airline_airport_presence.airline",
"aviation.aircraft_model",
"aviation.aircraft_status.military_service"
],
"award": [
"award.award_achievement_level.date_discontinued",
"award.hall_of_fame_discipline.halls_of_fame",
"award.award",
"award.recurring_award_ceremony.awards",
"award.award_presenting_organization",
"award.award.presented_by",
"award.award.ceremony",
"award.hall_of_fame_induction",
"award.award_winner",
"award.award_honor.ceremony",
"award.category_ceremony_relationship.category",
"award.recurring_competition",
"award.award_ceremony",
"award.award_honor",
"award.award_achievement_level",
"award.ranked_list.year_inaugurated",
"award.award_nomination_announcement.award_categories",
"award.award_nominee",
"award.competition_type",
"award.award_category.judges_jury",
"award.award.award_announcements",
"award.long_list_nomination.award",
"award.ranking.rank",
"award.hall_of_fame_induction_category.inductees",
"award.award_presenting_organization.awards_presented",
"award.recurring_award_ceremony",
"award.award_category.date_established",
"award.award_achievement_level.date_established",
"award.award_category.nomination_announcement",
"award.ranked_list_compiler.ranked_lists",
"award.award_ceremony.awards_presented",
"award.award_judging_term.award",
"award.award_announcement",
"award.competitor",
"award.competition.competitors",
"award.category_ceremony_relationship",
"award.award.parent_award",
"award.award_category.disciplines_or_subjects",
"award.award_ceremony.nominees",
"award.ranked_list.ranked_by",
"award.award_nominated_work.award_nominations",
"award.category_ceremony_relationship.to",
"award.award_announcement.award_categories",
"award.long_list_nominee.long_list_nominations",
"award.competition.instance_of_recurring_competition",
"award.hall_of_fame",
"award.award_achievement_level.winners",
"award.ranked_list_compiler",
"award.long_list_nomination.nominated_work",
"award.ranked_list.ranked_list_items",
"award.award_winner.awards_won",
"award.hall_of_fame_inductee.hall_of_fame_inductions",
"award.hall_of_fame_induction.hall_of_fame",
"award.award_category.nominees",
"award.award_discipline",
"award.award_honor.achievement_level",
"award.award_category",
"award.award_category.date_discontinued",
"award.ranked_list",
"award.award_nomination_announcement.award",
"award.award.achievement_levels",
"award.award_nomination_announcement",
"award.hall_of_fame_induction_category",
"award.category_ceremony_relationship.ceremony",
"award.award_winning_work",
"award.award.nomination_announcements",
"award.ranking.year",
"award.award_achievement_level.lower_level",
"award.competitor.competitions",
"award.award_nomination.award_nominee",
"award.award_honor.award_winner",
"award.award_category.long_lists",
"award.award_nomination.award",
"award.award_nomination.year",
"award.award_nominated_work",
"award.hall_of_fame_inductee",
"award.award_category.recurring_ceremony",
"award.award_honor.award",
"award.long_list_nomination.nominee",
"award.recurring_award_ceremony.award_categories",
"award.hall_of_fame_discipline",
"award.ranked_item",
"award.award_judging_term.judge",
"award.hall_of_fame_induction.inductee",
"award.award_category.award_announcements",
"award.recurring_competition.individual_competitions",
"award.competition.type_of_competition",
"award.award_nomination.nominated_for",
"award.award_judge",
"award.competition.winner",
"award.award_discipline.awards_in_this_discipline",
"award.award_judge.awards_judged",
"award.award_category.presenting_organization",
"award.award_announcement.award",
"award.award_presenting_organization.award_categories_presented",
"award.long_list_nominee",
"award.award_category.winners",
"award.award_nomination.ceremony",
"award.ranking.item",
"award.ranking",
"award.award_category.category_of",
"award.ranking.list",
"award.award_honor.honored_for",
"award.award_judging_term.year",
"award.award.child_awards",
"award.award_nomination",
"award.long_listed_work",
"award.competitor.competitions_won",
"award.award_winning_work.awards_won",
"award.award_nominee.award_nominations",
"award.award_judging_term",
"award.award_achievement_level.award",
"award.award_achievement_level.higher_level",
"award.competition_type.competitions_of_this_type",
"award.award_honor.year",
"award.hall_of_fame.inductees",
"award.category_ceremony_relationship.from",
"award.ranked_item.appears_in_ranked_lists",
"award.hall_of_fame_induction.category",
"award.long_listed_work.long_list_nominations",
"award.award.category",
"award.hall_of_fame_induction.date",
"award.hall_of_fame.discipline",
"award.long_list_nomination.year",
"award.hall_of_fame.address",
"award.competition",
"award.long_list_nomination"
],
"base.events": [
"base.events.geographical_scope",
"base.events.geographical_scope.conferences_and_conventions_with_this_geographic_scope"
],
"base.exoplanetology": [