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