browser_web_data_entity_sumarization 1.0.0beta1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,74 @@
1
+ # encoding: utf-8
2
+
3
+ ###
4
+ # Core project module
5
+ module BrowserWebData
6
+
7
+ class SPARQLRequest
8
+ include SPARQLQueries
9
+
10
+ def initialize(sparql_endpoint = 'http://dbpedia.org/sparql')
11
+ @sparql_client = SPARQL::Client.new(sparql_endpoint)
12
+ end
13
+
14
+ def get_resources_by_dbpedia_page_rank(entity_type, count = 10)
15
+ process_query(resources_by_dbpedia_page_rank(entity_type, count))
16
+ end
17
+
18
+ def get_all_predicates_by_object(object)
19
+ process_query(all_predicates_by_object(object))
20
+ end
21
+
22
+ def get_all_predicates_by_subject(subject, only_literal = false)
23
+ process_query(all_predicates_by_subject(subject, only_literal))
24
+ end
25
+
26
+ def get_all_predicates_by_subject_object(subject, object)
27
+ process_query(all_predicates_by_object_and_subject(subject, object))
28
+ end
29
+
30
+ def get_count_predicate_by_entity(entity_class, predicate)
31
+ process_query(count_predicate_by_entity(entity_class, predicate))
32
+ end
33
+
34
+ def get_count_of_identical_predicates(predicates)
35
+ process_query(count_of_identical_predicates(predicates))[0].to_h[:count].to_s.to_f
36
+ end
37
+
38
+ def get_resource_properties(resource, lang = :en)
39
+ process_query(resource_properties(resource, lang)).map{|solution|
40
+ solution = solution.to_h
41
+ {
42
+ predicate: solution[:predicate],
43
+ predicate_label: solution[:predicate_label],
44
+ value: solution[:value],
45
+ value_label: solution[:value_label]
46
+ }
47
+ }
48
+ end
49
+
50
+ def get_entity_classes(resource_uri)
51
+ process_query(entity_classes(resource_uri))
52
+ end
53
+
54
+
55
+ private
56
+
57
+ def process_query(query, retries_count = 15)
58
+ try = 1
59
+ begin
60
+ @sparql_client.query(query)
61
+ rescue => e
62
+ if try < retries_count
63
+ sleep(5 + (try * 2))
64
+ try += 1
65
+ retry
66
+ else
67
+ raise e
68
+ end
69
+ end
70
+ end
71
+
72
+ end
73
+
74
+ end
@@ -0,0 +1,3 @@
1
+ module EntitySumarization
2
+ VERSION = '1.0.0beta1'
3
+ end
@@ -0,0 +1,48 @@
1
+ # encoding: utf-8
2
+
3
+ module BrowserWebData
4
+
5
+ TMP_DIR = 'BROWSER_WEB_DATA'
6
+
7
+ module EntitySumarizationConfig
8
+
9
+ IDENTICAL_PROPERTY_LIMIT = 0.8
10
+
11
+ NO_SENSE_PROPERTIES = %w(
12
+ http://xmlns.com/foaf/0.1/primaryTopic
13
+ http://dbpedia.org/ontology/wikiPageRedirects
14
+ http://dbpedia.org/ontology/wikiPageDisambiguates
15
+ http://dbpedia.org/ontology/wikiPageRevisionID
16
+ http://dbpedia.org/ontology/wikiPageID
17
+ http://www.w3.org/2002/07/owl#sameAs
18
+ http://www.w3.org/2000/01/rdf-schema#seeAlso
19
+ http://www.w3.org/2002/07/owl#differentFrom
20
+ http://dbpedia.org/ontology/wikiPageExternalLink
21
+ http://xmlns.com/foaf/0.1/depiction
22
+ )
23
+
24
+ COMMON_PROPERTIES = %W(
25
+ http://dbpedia.org/ontology/thumbnail
26
+ http://xmlns.com/foaf/0.1/name
27
+ http://www.w3.org/2000/01/rdf-schema#label
28
+ http://dbpedia.org/property/name
29
+ http://dbpedia.org/property/commonName
30
+ http://dbpedia.org/property/title
31
+ http://www.w3.org/2000/01/rdf-schema#comment
32
+ http://dbpedia.org/ontology/abstract
33
+ )
34
+
35
+ SCAN_REGEXP = {
36
+ begin_index: /(beginIndex).*"(\d+)"/,
37
+ end_index: /(endIndex).*"(\d+)"/,
38
+ scan_resource: /<(http:\/\/dbpedia.org\/resource\/(.*))>/,
39
+ target_resource_link: /(taIdentRef).*<(.*)>/,
40
+ anchor: /(anchorOf).*"(.*)"/,
41
+ section: / .*(nif=.*\d)/,
42
+ group: /(\w+)_(\d+)_(\d+)/,
43
+ identical_key: /<(http:\/\/[0-9a-zA-z\/._]*)>/
44
+ }
45
+
46
+ end
47
+
48
+ end
@@ -0,0 +1,906 @@
1
+ {
2
+ "Thing": {
3
+ "Activity": {
4
+ "Game": {
5
+ "BoardGame": {},
6
+ "CardGame": {}
7
+ },
8
+ "Sales": {},
9
+ "Sport": {
10
+ "Athletics": {},
11
+ "Boxing": {},
12
+ "HorseRiding": {}
13
+ }
14
+ },
15
+ "Agent": {
16
+ "Deity": {},
17
+ "Employer": {},
18
+ "Family": {
19
+ "NobleFamily": {}
20
+ },
21
+ "Organisation": {
22
+ "Broadcaster": {
23
+ "BroadcastNetwork": {},
24
+ "RadioStation": {},
25
+ "TelevisionStation": {}
26
+ },
27
+ "Company": {
28
+ "Airline": {},
29
+ "Bank": {},
30
+ "Brewery": {},
31
+ "BusCompany": {},
32
+ "Caterer": {},
33
+ "LawFirm": {},
34
+ "Publisher": {},
35
+ "RecordLabel": {},
36
+ "Winery": {}
37
+ },
38
+ "EducationalInstitution": {
39
+ "College": {},
40
+ "Library": {},
41
+ "School": {},
42
+ "University": {}
43
+ },
44
+ "EmployersOrganisation": {},
45
+ "GeopoliticalOrganisation": {},
46
+ "GovernmentAgency": {
47
+ "GovernmentCabinet": {}
48
+ },
49
+ "Group": {
50
+ "Band": {},
51
+ "ComedyGroup": {}
52
+ },
53
+ "InternationalOrganisation": {},
54
+ "Legislature": {},
55
+ "MilitaryUnit": {},
56
+ "Non-ProfitOrganisation": {
57
+ "RecordOffice": {}
58
+ },
59
+ "Parliament": {},
60
+ "PoliticalParty": {},
61
+ "PublicTransitSystem": {},
62
+ "ReligiousOrganisation": {
63
+ "ClericalOrder": {}
64
+ },
65
+ "SambaSchool": {},
66
+ "SportsClub": {
67
+ "HockeyClub": {}
68
+ },
69
+ "SportsLeague": {
70
+ "AmericanFootballLeague": {},
71
+ "AustralianFootballLeague": {},
72
+ "AutoRacingLeague": {},
73
+ "BaseballLeague": {},
74
+ "BasketballLeague": {},
75
+ "BowlingLeague": {},
76
+ "BoxingLeague": {},
77
+ "CanadianFootballLeague": {},
78
+ "CricketLeague": {},
79
+ "CurlingLeague": {},
80
+ "CyclingLeague": {},
81
+ "FieldHockeyLeague": {},
82
+ "FormulaOneRacing": {},
83
+ "GolfLeague": {},
84
+ "HandballLeague": {},
85
+ "IceHockeyLeague": {},
86
+ "InlineHockeyLeague": {},
87
+ "LacrosseLeague": {},
88
+ "MixedMartialArtsLeague": {},
89
+ "MotorcycleRacingLeague": {},
90
+ "PaintballLeague": {},
91
+ "PoloLeague": {},
92
+ "RadioControlledRacingLeague": {},
93
+ "RugbyLeague": {},
94
+ "SoccerLeague": {},
95
+ "SoftballLeague": {},
96
+ "SpeedwayLeague": {},
97
+ "TennisLeague": {},
98
+ "VideogamesLeague": {},
99
+ "VolleyballLeague": {}
100
+ },
101
+ "SportsTeam": {
102
+ "AmericanFootballTeam": {},
103
+ "AustralianFootballTeam": {},
104
+ "BaseballTeam": {},
105
+ "BasketballTeam": {},
106
+ "CanadianFootballTeam": {},
107
+ "CricketTeam": {},
108
+ "CyclingTeam": {},
109
+ "FormulaOneTeam": {},
110
+ "HandballTeam": {},
111
+ "HockeyTeam": {},
112
+ "RugbyClub": {},
113
+ "SoccerClub": {
114
+ "NationalSoccerClub": {}
115
+ },
116
+ "SpeedwayTeam": {}
117
+ },
118
+ "TermOfOffice": {},
119
+ "TradeUnion": {}
120
+ }
121
+ },
122
+ "Person": {
123
+ "Ambassador": {},
124
+ "Archeologist": {},
125
+ "Architect": {},
126
+ "Aristocrat": {},
127
+ "Artist": {
128
+ "Actor": {
129
+ "AdultActor": {},
130
+ "VoiceActor": {}
131
+ },
132
+ "Comedian": {},
133
+ "ComicsCreator": {},
134
+ "Dancer": {},
135
+ "FashionDesigner": {},
136
+ "Humorist": {},
137
+ "MusicalArtist": {
138
+ "BackScene": {},
139
+ "ClassicalMusicArtist": {},
140
+ "Instrumentalist": {},
141
+ "Guitarist": {},
142
+ "MusicDirector": {},
143
+ "Singer": {}
144
+ },
145
+ "Painter": {},
146
+ "Photographer": {},
147
+ "Sculptor": {}
148
+ },
149
+ "Astronaut": {},
150
+ "Athlete": {
151
+ "ArcherPlayer": {},
152
+ "AthleticsPlayer": {},
153
+ "AustralianRulesFootballPlayer": {},
154
+ "BadmintonPlayer": {},
155
+ "BaseballPlayer": {},
156
+ "BasketballPlayer": {},
157
+ "Bodybuilder": {},
158
+ "Boxer": {
159
+ "AmateurBoxer": {}
160
+ },
161
+ "BullFighter": {},
162
+ "Canoeist": {},
163
+ "ChessPlayer": {},
164
+ "Cricketer": {},
165
+ "Cyclist": {},
166
+ "DartsPlayer": {},
167
+ "Fencer": {},
168
+ "GaelicGamesPlayer": {},
169
+ "GolfPlayer": {},
170
+ "GridironFootballPlayer": {
171
+ "AmericanFootballPlayer": {},
172
+ "CanadianFootballPlayer": {}
173
+ },
174
+ "Gymnast": {},
175
+ "HandballPlayer": {},
176
+ "HighDiver": {},
177
+ "HorseRider": {},
178
+ "Jockey": {},
179
+ "LacrossePlayer": {},
180
+ "MartialArtist": {},
181
+ "MotorsportRacer": {
182
+ "MotorcycleRider": {
183
+ "MotocycleRacer": {},
184
+ "SpeedwayRider": {}
185
+ },
186
+ "RacingDriver": {
187
+ "DTMRacer": {},
188
+ "FormulaOneRacer": {},
189
+ "NascarDriver": {},
190
+ "RallyDriver": {}
191
+ }
192
+ },
193
+ "NationalCollegiateAthleticAssociationAthlete": {},
194
+ "NetballPlayer": {},
195
+ "PokerPlayer": {},
196
+ "Rower": {},
197
+ "RugbyPlayer": {},
198
+ "SnookerPlayer": {
199
+ "SnookerChamp": {}
200
+ },
201
+ "SoccerPlayer": {},
202
+ "SquashPlayer": {},
203
+ "Surfer": {},
204
+ "Swimmer": {},
205
+ "TableTennisPlayer": {},
206
+ "TeamMember": {},
207
+ "TennisPlayer": {},
208
+ "VolleyballPlayer": {
209
+ "BeachVolleyballPlayer": {}
210
+ },
211
+ "WaterPoloPlayer": {},
212
+ "WinterSportPlayer": {
213
+ "Biathlete": {},
214
+ "BobsleighAthlete": {},
215
+ "CrossCountrySkier": {},
216
+ "Curler": {},
217
+ "FigureSkater": {},
218
+ "IceHockeyPlayer": {},
219
+ "NordicCombined": {},
220
+ "Skater": {},
221
+ "Ski_jumper": {},
222
+ "Skier": {},
223
+ "SpeedSkater": {}
224
+ },
225
+ "Wrestler": {
226
+ "SumoWrestler": {}
227
+ }
228
+ },
229
+ "BeautyQueen": {},
230
+ "BusinessPerson": {},
231
+ "Celebrity": {},
232
+ "Chef": {},
233
+ "Cleric": {
234
+ "Cardinal": {},
235
+ "ChristianBishop": {},
236
+ "ChristianPatriarch": {},
237
+ "Pope": {},
238
+ "Priest": {},
239
+ "Saint": {},
240
+ "Vicar": {}
241
+ },
242
+ "Coach": {
243
+ "AmericanFootballCoach": {},
244
+ "CollegeCoach": {},
245
+ "VolleyballCoach": {}
246
+ },
247
+ "Criminal": {
248
+ "Murderer": {
249
+ "SerialKiller": {}
250
+ }
251
+ },
252
+ "Economist": {},
253
+ "Egyptologist": {},
254
+ "Engineer": {},
255
+ "Farmer": {},
256
+ "FictionalCharacter": {
257
+ "ComicsCharacter": {
258
+ "AnimangaCharacter": {}
259
+ },
260
+ "DisneyCharacter": {},
261
+ "MythologicalFigure": {},
262
+ "NarutoCharacter": {},
263
+ "SoapCharacter": {}
264
+ },
265
+ "HorseTrainer": {},
266
+ "Journalist": {},
267
+ "Judge": {},
268
+ "Lawyer": {},
269
+ "Linguist": {},
270
+ "MemberResistanceMovement": {},
271
+ "MilitaryPerson": {},
272
+ "Model": {},
273
+ "Monarch": {},
274
+ "MovieDirector": {},
275
+ "Noble": {},
276
+ "OfficeHolder": {},
277
+ "OrganisationMember": {
278
+ "SportsTeamMember": {}
279
+ },
280
+ "Orphan": {},
281
+ "Philosopher": {},
282
+ "PlayboyPlaymate": {},
283
+ "Politician": {
284
+ "Chancellor": {},
285
+ "Congressman": {},
286
+ "Deputy": {},
287
+ "Governor": {},
288
+ "Lieutenant": {},
289
+ "Mayor": {},
290
+ "MemberOfParliament": {},
291
+ "President": {},
292
+ "PrimeMinister": {},
293
+ "Senator": {},
294
+ "VicePresident": {},
295
+ "VicePrimeMinister": {}
296
+ },
297
+ "PoliticianSpouse": {},
298
+ "Presenter": {
299
+ "RadioHost": {},
300
+ "TelevisionHost": {}
301
+ },
302
+ "Producer": {},
303
+ "Psychologist": {},
304
+ "Referee": {},
305
+ "Religious": {},
306
+ "RomanEmperor": {},
307
+ "Royalty": {
308
+ "BritishRoyalty": {
309
+ "Baronet": {}
310
+ }
311
+ },
312
+ "Scientist": {
313
+ "Biologist": {},
314
+ "Entomologist": {},
315
+ "Medician": {},
316
+ "Professor": {}
317
+ },
318
+ "SportsManager": {
319
+ "SoccerManager": {}
320
+ },
321
+ "TelevisionDirector": {},
322
+ "TelevisionPersonality": {
323
+ "Host": {}
324
+ },
325
+ "TheatreDirector": {},
326
+ "Writer": {
327
+ "Historian": {},
328
+ "MusicComposer": {},
329
+ "PlayWright": {},
330
+ "Poet": {},
331
+ "ScreenWriter": {},
332
+ "SongWriter": {}
333
+ }
334
+ },
335
+ "Altitude": {},
336
+ "AnatomicalStructure": {
337
+ "Artery": {},
338
+ "BloodVessel": {},
339
+ "Bone": {},
340
+ "Brain": {},
341
+ "Embryology": {},
342
+ "Ligament": {},
343
+ "Lymph": {},
344
+ "Muscle": {},
345
+ "Nerve": {},
346
+ "Vein": {}
347
+ },
348
+ "Area ": {},
349
+ "Award": {
350
+ "Decoration": {},
351
+ "NobelPrize": {}
352
+ },
353
+ "Biomolecule": {
354
+ "Enzyme": {},
355
+ "Gene": {
356
+ "HumanGene": {},
357
+ "MouseGene": {}
358
+ },
359
+ "Lipid": {},
360
+ "Polysaccharide": {},
361
+ "Protein": {}
362
+ },
363
+ "Blazon": {},
364
+ "ChartsPlacements": {},
365
+ "ChemicalSubstance": {
366
+ "ChemicalCompound": {},
367
+ "ChemicalElement": {},
368
+ "Drug": {},
369
+ "Mineral": {}
370
+ },
371
+ "Colour": {},
372
+ "Currency": {},
373
+ "Demographics": {},
374
+ "Depth": {},
375
+ "Device": {
376
+ "Camera": {
377
+ "DigitalCamera": {}
378
+ },
379
+ "Engine": {
380
+ "AutomobileEngine": {},
381
+ "RocketEngine": {}
382
+ },
383
+ "InformationAppliance": {},
384
+ "Instrument": {
385
+ "Guitar": {},
386
+ "Organ": {}
387
+ },
388
+ "MobilePhone": {},
389
+ "Weapon": {}
390
+ },
391
+ "Diploma": {},
392
+ "Disease": {},
393
+ "ElectionDiagram": {},
394
+ "EthnicGroup": {},
395
+ "Event": {
396
+ "Competition": {
397
+ "Contest": {}
398
+ },
399
+ "LifeCycleEvent": {
400
+ "PersonalEvent": {
401
+ "Birth": {},
402
+ "Death": {},
403
+ "Divorce": {},
404
+ "Marriage": {}
405
+ }
406
+ },
407
+ "NaturalEvent": {
408
+ "Earthquake": {},
409
+ "SolarEclipse": {},
410
+ "StormSurge": {}
411
+ },
412
+ "SocietalEvent": {
413
+ "AcademicConference": {},
414
+ "Attack": {},
415
+ "Convention": {},
416
+ "Election": {},
417
+ "FilmFestival": {},
418
+ "Meeting": {},
419
+ "MilitaryConflict": {},
420
+ "MusicFestival": {},
421
+ "Rebellion": {},
422
+ "SpaceMission": {},
423
+ "SportsEvent": {
424
+ "CyclingCompetition": {},
425
+ "FootballMatch": {},
426
+ "GrandPrix": {},
427
+ "InternationalFootballLeagueEvent": {},
428
+ "MixedMartialArtsEvent": {},
429
+ "NationalFootballLeagueEvent": {},
430
+ "Olympics": {
431
+ "OlympicEvent": {}
432
+ },
433
+ "Race": {
434
+ "CyclingRace": {},
435
+ "HorseRace": {},
436
+ "MotorRace": {}
437
+ },
438
+ "Tournament": {
439
+ "GolfTournament": {},
440
+ "SoccerTournament": {},
441
+ "TennisTournament": {},
442
+ "WomensTennisAssociationTournament": {}
443
+ },
444
+ "WrestlingEvent": {}
445
+ }
446
+ }
447
+ },
448
+ "Flag": {},
449
+ "Food": {
450
+ "Beverage": {
451
+ "Beer": {},
452
+ "Vodka": {},
453
+ "Wine": {
454
+ "ControlledDesignationOfOriginWine": {}
455
+ }
456
+ },
457
+ "Cheese": {}
458
+ },
459
+ "GeneLocation": {
460
+ "HumanGeneLocation": {},
461
+ "MouseGeneLocation": {}
462
+ },
463
+ "GrossDomesticProduct": {},
464
+ "GrossDomesticProductPerCapita": {},
465
+ "Holiday": {},
466
+ "HumanDevelopmentIndex": {},
467
+ "Language": {
468
+ "ProgrammingLanguage": {}
469
+ },
470
+ "List": {
471
+ "TrackList": {}
472
+ },
473
+ "MeanOfTransportation": {
474
+ "Aircraft": {
475
+ "MilitaryAircraft": {}
476
+ },
477
+ "Automobile": {},
478
+ "Locomotive": {},
479
+ "MilitaryVehicle": {},
480
+ "Motorcycle": {},
481
+ "On-SiteTransportation": {
482
+ "ConveyorSystem": {},
483
+ "Escalator": {},
484
+ "MovingWalkway": {}
485
+ },
486
+ "Rocket": {},
487
+ "Ship": {},
488
+ "SpaceShuttle": {},
489
+ "SpaceStation": {},
490
+ "Spacecraft": {},
491
+ "Train": {},
492
+ "TrainCarriage": {},
493
+ "Tram": {}
494
+ },
495
+ "Media": {},
496
+ "Medicine": {},
497
+ "Name": {
498
+ "GivenName": {},
499
+ "Surname": {}
500
+ },
501
+ "PenaltyShootOut": {},
502
+ "PersonFunction": {
503
+ "PoliticalFunction": {},
504
+ "Profession": {}
505
+ },
506
+ "Place": {
507
+ "ArchitecturalStructure": {
508
+ "AmusementParkAttraction": {
509
+ "RollerCoaster": {},
510
+ "WaterRide": {}
511
+ },
512
+ "Arena": {},
513
+ "Building": {
514
+ "Casino": {},
515
+ "Castle": {},
516
+ "Factory": {},
517
+ "HistoricBuilding": {},
518
+ "Hospital": {},
519
+ "Hotel": {},
520
+ "Museum": {},
521
+ "Prison": {},
522
+ "ReligiousBuilding": {
523
+ "Abbey": {},
524
+ "Church": {},
525
+ "Monastery": {},
526
+ "Mosque": {},
527
+ "Synagogue": {},
528
+ "Temple": {}
529
+ },
530
+ "Restaurant": {},
531
+ "ShoppingMall": {},
532
+ "Skyscraper": {}
533
+ },
534
+ "Gate": {},
535
+ "Infrastructure": {
536
+ "Airport": {},
537
+ "Dam": {},
538
+ "Dike": {},
539
+ "LaunchPad": {},
540
+ "Lock": {},
541
+ "Port": {},
542
+ "PowerStation": {
543
+ "NuclearPowerStation": {}
544
+ },
545
+ "RestArea": {},
546
+ "RouteOfTransportation": {
547
+ "Bridge": {},
548
+ "RailwayLine": {},
549
+ "RailwayTunnel": {},
550
+ "Road": {},
551
+ "RoadJunction": {},
552
+ "RoadTunnel": {},
553
+ "WaterwayTunnel": {}
554
+ },
555
+ "Station": {
556
+ "ElectricalSubstation": {},
557
+ "FillingStation": {},
558
+ "MetroStation": {},
559
+ "RailwayStation": {},
560
+ "TramStation": {}
561
+ }
562
+ },
563
+ "MilitaryStructure": {},
564
+ "Mill": {
565
+ "Treadmill": {},
566
+ "Watermill": {},
567
+ "WindMotor": {},
568
+ "Windmill": {}
569
+ },
570
+ "Pyramid": {},
571
+ "Shrine": {},
572
+ "SportFacility": {
573
+ "CricketGround": {},
574
+ "GolfCourse": {},
575
+ "RaceTrack": {
576
+ "Racecourse": {}
577
+ },
578
+ "SkiArea": {
579
+ "SkiResort": {}
580
+ },
581
+ "Stadium": {}
582
+ },
583
+ "Square": {},
584
+ "Tower": {
585
+ "Lighthouse": {},
586
+ "WaterTower": {}
587
+ },
588
+ "Tunnel": {},
589
+ "Venue": {
590
+ "Theatre": {}
591
+ },
592
+ "Zoo": {}
593
+ },
594
+ "CelestialBody": {
595
+ "Asteroid": {},
596
+ "Constellation": {},
597
+ "Galaxy": {},
598
+ "Planet": {},
599
+ "Satellite": {
600
+ "ArtificialSatellite": {}
601
+ },
602
+ "Star": {
603
+ "BrownDwarf": {}
604
+ },
605
+ "Swarm": {
606
+ "Globularswarm": {},
607
+ "Openswarm": {}
608
+ }
609
+ },
610
+ "Cemetery": {},
611
+ "ConcentrationCamp": {},
612
+ "CountrySeat": {},
613
+ "Garden": {},
614
+ "HistoricPlace": {},
615
+ "Mine": {
616
+ "CoalPit": {}
617
+ },
618
+ "Monument": {
619
+ "GraveMonument": {},
620
+ "Memorial": {}
621
+ },
622
+ "NaturalPlace": {
623
+ "Archipelago": {},
624
+ "Beach": {},
625
+ "BodyOfWater": {
626
+ "Bay": {},
627
+ "Lake": {},
628
+ "Ocean": {},
629
+ "Sea": {},
630
+ "Stream": {
631
+ "Canal": {},
632
+ "Creek": {},
633
+ "River": {}
634
+ }
635
+ },
636
+ "Cave": {},
637
+ "Crater": {
638
+ "LunarCrater": {}
639
+ },
640
+ "Desert": {},
641
+ "Forest": {},
642
+ "Glacier": {},
643
+ "HotSpring": {},
644
+ "Mountain": {},
645
+ "MountainPass": {},
646
+ "MountainRange": {},
647
+ "Valley": {},
648
+ "Volcano": {}
649
+ },
650
+ "Park": {},
651
+ "PopulatedPlace": {
652
+ "Agglomeration": {},
653
+ "Community": {},
654
+ "Continent": {},
655
+ "Country": {
656
+ "HistoricalCountry": {}
657
+ },
658
+ "GatedCommunity": {},
659
+ "Intercommunality": {},
660
+ "Island": {
661
+ "Atoll": {}
662
+ },
663
+ "Locality": {},
664
+ "Region": {
665
+ "AdministrativeRegion": {
666
+ "ClericalAdministrativeRegion": {
667
+ "Deanery": {},
668
+ "Diocese": {},
669
+ "Parish": {}
670
+ },
671
+ "GovernmentalAdministrativeRegion": {
672
+ "Arrondissement": {},
673
+ "Canton": {},
674
+ "Department": {
675
+ "OverseasDepartment": {}
676
+ },
677
+ "District": {
678
+ "HistoricalDistrict": {}
679
+ },
680
+ "DistrictWaterBoard": {},
681
+ "MicroRegion": {},
682
+ "Municipality": {
683
+ "FormerMunicipality": {}
684
+ },
685
+ "Prefecture": {},
686
+ "Province": {
687
+ "HistoricalProvince": {}
688
+ },
689
+ "Regency": {},
690
+ "SubMunicipality": {}
691
+ },
692
+ "HistoricalAreaOfAuthority": {
693
+ "Fiefdom": {}
694
+ }
695
+ },
696
+ "HistoricalRegion": {},
697
+ "NaturalRegion": {}
698
+ },
699
+ "Settlement": {
700
+ "City": {
701
+ "Capital": {},
702
+ "CapitalOfRegion": {}
703
+ },
704
+ "CityDistrict": {},
705
+ "HistoricalSettlement": {},
706
+ "Town": {},
707
+ "Village": {}
708
+ },
709
+ "State": {},
710
+ "Street": {},
711
+ "Territory": {
712
+ "OldTerritory": {}
713
+ }
714
+ },
715
+ "ProtectedArea": {},
716
+ "SiteOfSpecialScientificInterest": {},
717
+ "WineRegion": {},
718
+ "WorldHeritageSite": {}
719
+ },
720
+ "Polyhedron": {},
721
+ "Population": {},
722
+ "PublicService": {},
723
+ "RouteStop": {},
724
+ "Species": {
725
+ "Archaea": {},
726
+ "Bacteria": {},
727
+ "Eukaryote": {
728
+ "Animal": {
729
+ "Amphibian": {},
730
+ "Arachnid": {},
731
+ "Bird": {},
732
+ "Crustacean": {},
733
+ "Fish": {},
734
+ "Insect": {},
735
+ "Mammal": {
736
+ "Cat": {},
737
+ "Dog": {},
738
+ "Horse": {
739
+ "RaceHorse": {}
740
+ }
741
+ },
742
+ "Mollusca": {},
743
+ "Reptile": {}
744
+ },
745
+ "Fungus": {},
746
+ "Plant": {
747
+ "ClubMoss": {},
748
+ "Conifer": {},
749
+ "CultivatedVariety": {},
750
+ "Cycad": {},
751
+ "Fern": {},
752
+ "FloweringPlant": {
753
+ "Grape": {}
754
+ },
755
+ "Ginkgo": {},
756
+ "Gnetophytes": {},
757
+ "GreenAlga": {},
758
+ "Moss": {}
759
+ }
760
+ }
761
+ },
762
+ "SportCompetitionResult": {
763
+ "OlympicResult": {},
764
+ "SnookerWorldRanking": {}
765
+ },
766
+ "SportsSeason": {
767
+ "MotorsportSeason": {},
768
+ "SportsTeamSeason": {
769
+ "BaseballSeason": {},
770
+ "FootballLeagueSeason": {
771
+ "NationalFootballLeagueSeason": {}
772
+ },
773
+ "NCAATeamSeason": {},
774
+ "SoccerClubSeason": {},
775
+ "SoccerLeagueSeason": {}
776
+ }
777
+ },
778
+ "Statistic": {},
779
+ "TimePeriod": {
780
+ "CareerStation": {},
781
+ "GeologicalPeriod": {},
782
+ "HistoricalPeriod": {},
783
+ "PeriodOfArtisticStyle": {},
784
+ "PrehistoricalPeriod": {},
785
+ "ProtohistoricalPeriod": {},
786
+ "Year": {},
787
+ "YearInSpaceflight": {}
788
+ },
789
+ "TopicalConcept": {
790
+ "AcademicSubject": {},
791
+ "CardinalDirection": {},
792
+ "Fashion": {},
793
+ "Genre": {
794
+ "ArtisticGenre": {},
795
+ "LiteraryGenre": {},
796
+ "MovieGenre": {},
797
+ "MusicGenre": {}
798
+ },
799
+ "Ideology": {},
800
+ "MathematicalConcept": {},
801
+ "PhilosophicalConcept": {},
802
+ "PoliticalConcept": {},
803
+ "ScientificConcept": {},
804
+ "Standard": {},
805
+ "SystemOfLaw": {},
806
+ "Tax": {},
807
+ "Taxon": {},
808
+ "TheologicalConcept": {
809
+ "ChristianDoctrine": {}
810
+ },
811
+ "Type": {
812
+ "DocumentType": {},
813
+ "GovernmentType": {}
814
+ }
815
+ },
816
+ "UnitOfWork": {
817
+ "Case": {
818
+ "LegalCase": {
819
+ "SupremeCourtOfTheUnitedStatesCase": {}
820
+ }
821
+ },
822
+ "Project": {
823
+ "ResearchProject": {}
824
+ }
825
+ },
826
+ "Unknown": {},
827
+ "Work": {
828
+ "Artwork": {
829
+ "Painting": {},
830
+ "Sculpture": {}
831
+ },
832
+ "Cartoon": {
833
+ "Anime": {},
834
+ "HollywoodCartoon": {}
835
+ },
836
+ "CollectionOfValuables": {
837
+ "Archive": {}
838
+ },
839
+ "Database": {
840
+ "BiologicalDatabase": {}
841
+ },
842
+ "Document": {
843
+ "File": {},
844
+ "Image": {},
845
+ "MovingImage": {},
846
+ "StillImage": {},
847
+ "Sound": {}
848
+ },
849
+ "Film": {},
850
+ "LineOfFashion": {},
851
+ "MusicalWork": {
852
+ "Album": {},
853
+ "ArtistDiscography": {},
854
+ "ClassicalMusicComposition": {},
855
+ "Musical": {},
856
+ "NationalAnthem": {},
857
+ "Opera": {},
858
+ "Single": {},
859
+ "Song": {
860
+ "EurovisionSongContestEntry": {}
861
+ }
862
+ },
863
+ "RadioProgram": {},
864
+ "Software": {
865
+ "VideoGame": {}
866
+ },
867
+ "TelevisionEpisode": {},
868
+ "TelevisionSeason": {},
869
+ "TelevisionShow": {},
870
+ "Website": {},
871
+ "WrittenWork": {
872
+ "Annotation": {
873
+ "Reference": {}
874
+ },
875
+ "Article": {},
876
+ "Book": {
877
+ "Novel": {
878
+ "LightNovel": {}
879
+ }
880
+ },
881
+ "Comic": {
882
+ "ComicStrip": {},
883
+ "Manga": {},
884
+ "Manhua": {},
885
+ "Manhwa": {}
886
+ },
887
+ "Drama": {},
888
+ "Law": {},
889
+ "Letter": {},
890
+ "MultiVolumePublication": {},
891
+ "PeriodicalLiterature": {
892
+ "AcademicJournal": {},
893
+ "Magazine": {},
894
+ "Newspaper": {},
895
+ "UndergroundJournal": {}
896
+ },
897
+ "Play": {},
898
+ "Poem": {},
899
+ "Quote": {},
900
+ "Resume": {},
901
+ "StatedResolution": {},
902
+ "Treaty": {}
903
+ }
904
+ }
905
+ }
906
+ }