-
Notifications
You must be signed in to change notification settings - Fork 0
/
leopardi_kg_v1.ttl
1004 lines (826 loc) · 56.4 KB
/
leopardi_kg_v1.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00001> a crm:E31_Document ;
dcterms:created """19. Maggio 1816. -
20 Maggio"""@it ;
dcterms:extent "2 pages"@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Francesco Cancellieri"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00001/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00016> a crm:E31_Document ;
dcterms:created "26 Marzo 1826"@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Antonio Fortunato Stella"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00016/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00017> a crm:E31_Document ;
dcterms:created "23 Maggio 1827"@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Antonio Fortunato Stella"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00017/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00033> a crm:E31_Document ;
dcterms:created "1833"@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Feliciano Niccolini"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00033/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00034> a crm:E31_Document ;
dcterms:created "1814"@it ;
dcterms:extent "4 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Notes taken and translated from Fabricius"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00034/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00037> a crm:E31_Document ;
dcterms:created "20. X.bre 1816."@it ;
dcterms:extent "4 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Francesco Cancellieri"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00037/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00038> a crm:E31_Document ;
dcterms:created "26 Febbraio 1821"@it ;
dcterms:extent "4 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Antonio Fortunato Stella"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00038/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00039> a crm:E31_Document ;
dcterms:created "30. del 1829."@it ;
dcterms:extent "4 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Monaldo Leopardi to Giuseppe Politi"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00039/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00040> a crm:E31_Document ;
dcterms:created "5 12/64"@it ;
dcterms:extent "4 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Paolina Leopardi to Amalia"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00040/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/statement_1> a rdf:Statement ;
rdfs:label "<Porphyrii, Eusebii, Philonis Iudaei Opera et Fragmenta novissime detecta> <publication date> <1816>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00002> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/1816> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_publication_date> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Porphyrii__Eusebii__Philonis_Iudaei_Opera_et_Fragmenta_novissime_detecta> .
<https://sntcristian.github.io/leopardi_kg/statement_10> a rdf:Statement ;
rdfs:label "<Giacomo Leopardi> <instance of> <humility>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00007> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/humility> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_instance_of> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> .
<https://sntcristian.github.io/leopardi_kg/statement_11> a rdf:Statement ;
rdfs:label "<Giuseppe Antonio Zacchia> <work location> <Ascoli>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00007> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Ascoli> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_work_location> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giuseppe_Antonio_Zacchia> .
<https://sntcristian.github.io/leopardi_kg/statement_12> a rdf:Statement ;
rdfs:label "<Giacomo Leopardi> <notable work> <Greek inscription judged by Giacomo Leopardi>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00008> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Greek_inscription_judged_by_Giacomo_Leopardi> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_notable_work> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> .
<https://sntcristian.github.io/leopardi_kg/statement_13> a rdf:Statement ;
rdfs:label "<Nibby's translation of Strabo> <author> <Giacomo Leopardi>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00008> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_author> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Nibby_s_translation_of_Strabo> .
<https://sntcristian.github.io/leopardi_kg/statement_14> a rdf:Statement ;
rdfs:label "<Giuseppe Melchiorri> <work location> <Rome>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00008> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Rome> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_work_location> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giuseppe_Melchiorri> .
<https://sntcristian.github.io/leopardi_kg/statement_15> a rdf:Statement ;
rdfs:label "<Giuseppe Melchiorri> <work location> <Rome>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00009> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Rome> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_work_location> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giuseppe_Melchiorri> .
<https://sntcristian.github.io/leopardi_kg/statement_16> a rdf:Statement ;
rdfs:label "<Giuseppe Melchiorri> <work location> <Rome>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00010> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Rome> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_work_location> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giuseppe_Melchiorri> .
<https://sntcristian.github.io/leopardi_kg/statement_17> a rdf:Statement ;
rdfs:label "<Giuseppe Melchiorri> <work location> <Rome>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00011> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Rome> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_work_location> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giuseppe_Melchiorri> .
<https://sntcristian.github.io/leopardi_kg/statement_18> a rdf:Statement ;
rdfs:label "<Osservazioni eusebiane> <author> <Giacomo Leopardi>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00011> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_author> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Osservazioni_eusebiane> .
<https://sntcristian.github.io/leopardi_kg/statement_19> a rdf:Statement ;
rdfs:label "<Giuseppe Melchiorri> <work location> <Rome>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00012> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Rome> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_work_location> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giuseppe_Melchiorri> .
<https://sntcristian.github.io/leopardi_kg/statement_2> a rdf:Statement ;
rdfs:label "<Epigramma sopra Amore> <part of> <Libretto del Mosco>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00002> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Libretto_del_Mosco> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_part_of> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Epigramma_sopra_Amore> .
<https://sntcristian.github.io/leopardi_kg/statement_20> a rdf:Statement ;
rdfs:label "<Giuseppe Melchiorri> <work location> <Rome>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00013> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Rome> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_work_location> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giuseppe_Melchiorri> .
<https://sntcristian.github.io/leopardi_kg/statement_21> a rdf:Statement ;
rdfs:label "<Giuseppe Melchiorri> <work location> <Rome>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00014> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Rome> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_work_location> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giuseppe_Melchiorri> .
<https://sntcristian.github.io/leopardi_kg/statement_22> a rdf:Statement ;
rdfs:label "<Giuseppe Melchiorri> <work location> <Rome>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00015> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Rome> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_work_location> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giuseppe_Melchiorri> .
<https://sntcristian.github.io/leopardi_kg/statement_23> a rdf:Statement ;
rdfs:label "<Lettera> <author> <Giacomo Leopardi>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00018> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_author> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Lettera> .
<https://sntcristian.github.io/leopardi_kg/statement_24> a rdf:Statement ;
rdfs:label "<Giacomo Leopardi> <medical condition treated> <flussion d'occhi>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00018> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/flussion_d_occhi> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_medical_condition_treated> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> .
<https://sntcristian.github.io/leopardi_kg/statement_25> a rdf:Statement ;
rdfs:label "<flussion d'occhi> <medical condition treated> <Giacomo Leopardi>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00018> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_medical_condition_treated> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/flussion_d_occhi> .
<https://sntcristian.github.io/leopardi_kg/statement_26> a rdf:Statement ;
rdfs:label "<Carlo Emmanuele Muzzarelli> <work location> <Rome>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00019> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Rome> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_work_location> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Carlo_Emmanuele_Muzzarelli> .
<https://sntcristian.github.io/leopardi_kg/statement_27> a rdf:Statement ;
rdfs:label "<Carlo Emmanuele Muzzarelli> <position held> <Auditor of the Sacred Rota>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00019> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Auditor_of_the_Sacred_Rota> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_position_held> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Carlo_Emmanuele_Muzzarelli> .
<https://sntcristian.github.io/leopardi_kg/statement_28> a rdf:Statement ;
rdfs:label "<Giacomo Leopardi> <notable work> <chapter beautiful and good>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00020> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/chapter_beautiful_and_good> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_notable_work> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> .
<https://sntcristian.github.io/leopardi_kg/statement_29> a rdf:Statement ;
rdfs:label "<Carlo Emmanuele Muzzarelli> <work location> <Rome>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00021> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Rome> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_work_location> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Carlo_Emmanuele_Muzzarelli> .
<https://sntcristian.github.io/leopardi_kg/statement_3> a rdf:Statement ;
rdfs:label "<Il Bifolchetto> <part of> <Libretto del Mosco>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00002> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Libretto_del_Mosco> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_part_of> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Il_Bifolchetto> .
<https://sntcristian.github.io/leopardi_kg/statement_30> a rdf:Statement ;
rdfs:label "<Carlo Emmanuele Muzzarelli> <position held> <Auditor of the Sacred Rota>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00021> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Auditor_of_the_Sacred_Rota> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_position_held> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Carlo_Emmanuele_Muzzarelli> .
<https://sntcristian.github.io/leopardi_kg/statement_31> a rdf:Statement ;
rdfs:label "<Giovanni Rosini> <place of death> <location unknown>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00022> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/location_unknown> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_place_of_death> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giovanni_Rosini> .
<https://sntcristian.github.io/leopardi_kg/statement_32> a rdf:Statement ;
rdfs:label "<Giovanni Rosini> <place of death> <location unknown>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00023> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/location_unknown> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_place_of_death> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giovanni_Rosini> .
<https://sntcristian.github.io/leopardi_kg/statement_33> a rdf:Statement ;
rdfs:label "<Giacomo Leopardi> <participant in> <recovery from cold>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00024> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/recovery_from_cold> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_participant_in> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> .
<https://sntcristian.github.io/leopardi_kg/statement_34> a rdf:Statement ;
rdfs:label "<Luisa Strozzi> <spouse> <Giovanni Rosini>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00025> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Giovanni_Rosini> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_spouse> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Luisa_Strozzi> .
<https://sntcristian.github.io/leopardi_kg/statement_35> a rdf:Statement ;
rdfs:label "<Giovanni Rosini> <spouse> <Luisa Strozzi>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00025> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Luisa_Strozzi> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_spouse> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giovanni_Rosini> .
<https://sntcristian.github.io/leopardi_kg/statement_36> a rdf:Statement ;
rdfs:label "<betrayal by French translator> <author> <Giacomo Leopardi>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00026> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_author> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/betrayal_by_French_translator> .
<https://sntcristian.github.io/leopardi_kg/statement_37> a rdf:Statement ;
rdfs:label "<Giacomo Leopardi> <notable work> <Sinner>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00026> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Sinner> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_notable_work> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> .
<https://sntcristian.github.io/leopardi_kg/statement_38> a rdf:Statement ;
rdfs:label "<Giacomo Leopardi> <notable work> <betrayal by French translator>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00026> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/betrayal_by_French_translator> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_notable_work> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> .
<https://sntcristian.github.io/leopardi_kg/statement_39> a rdf:Statement ;
rdfs:label "<Francesco Galvani> <relative> <Mario Valdrighi>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00027> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Mario_Valdrighi> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_relative> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Francesco_Galvani> .
<https://sntcristian.github.io/leopardi_kg/statement_4> a rdf:Statement ;
rdfs:label "<assembly cost> <part of> <Printing cost breakdown>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00003> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Printing_cost_breakdown> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_part_of> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/assembly_cost> .
<https://sntcristian.github.io/leopardi_kg/statement_40> a rdf:Statement ;
rdfs:label "<Giovanni Galvani> <relative> <Mario Valdrighi>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00027> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Mario_Valdrighi> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_relative> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giovanni_Galvani> .
<https://sntcristian.github.io/leopardi_kg/statement_41> a rdf:Statement ;
rdfs:label "<Filicaia> <genre> <sonnet>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00028> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/sonnet> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_genre> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Filicaia> .
<https://sntcristian.github.io/leopardi_kg/statement_42> a rdf:Statement ;
rdfs:label "<Gasparo Mazzi> <field of work> <naturalist>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00028> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/naturalist> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_field_of_work> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Gasparo_Mazzi> .
<https://sntcristian.github.io/leopardi_kg/statement_43> a rdf:Statement ;
rdfs:label "<Luigi Canali> <field of work> <naturalist>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00028> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/naturalist> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_field_of_work> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Luigi_Canali> .
<https://sntcristian.github.io/leopardi_kg/statement_44> a rdf:Statement ;
rdfs:label "<Antonio Cocchi> <occupation> <writing>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00028> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/writing> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_occupation> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Antonio_Cocchi> .
<https://sntcristian.github.io/leopardi_kg/statement_45> a rdf:Statement ;
rdfs:label "<Giacomo Leopardi> <place of birth> <Roma>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00029> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Rome> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_place_of_birth> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> .
<https://sntcristian.github.io/leopardi_kg/statement_46> a rdf:Statement ;
rdfs:label "<Giacomo Leopardi> <has effect> <fever>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00029> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/fever> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_has_effect> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> .
<https://sntcristian.github.io/leopardi_kg/statement_47> a rdf:Statement ;
rdfs:label "<Dialoghetti> <author> <Giacomo Leopardi>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00029> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_author> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Dialoghetti> .
<https://sntcristian.github.io/leopardi_kg/statement_48> a rdf:Statement ;
rdfs:label "<Luigi Giambene> <position held> <General Secretary of the Pontifical Posts>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00030> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/General_Secretary_of_the_Pontifical_Posts> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_position_held> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Luigi_Giambene> .
<https://sntcristian.github.io/leopardi_kg/statement_49> a rdf:Statement ;
rdfs:label "<Giacomo Leopardi> <medical condition treated> <eye and nerve disease>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00031> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/eye_and_nerve_disease> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_medical_condition_treated> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> .
<https://sntcristian.github.io/leopardi_kg/statement_5> a rdf:Statement ;
rdfs:label "<Francesco Cancellieri> <work location> <Rome>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00003> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Rome> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_work_location> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Francesco_Cancellieri> .
<https://sntcristian.github.io/leopardi_kg/statement_50> a rdf:Statement ;
rdfs:label "<Giacomo Leopardi> <field of work> <writing limited by eye condition>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00032> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/writing_limited_by_eye_condition> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_field_of_work> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> .
<https://sntcristian.github.io/leopardi_kg/statement_51> a rdf:Statement ;
rdfs:label "<Corinthians> <author> <Paul the Apostle>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00035> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Paul_the_Apostle> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_author> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Corinthians> .
<https://sntcristian.github.io/leopardi_kg/statement_52> a rdf:Statement ;
rdfs:label "<Mockery of the Gentile Philosophers> <author> <Hermias>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00035> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Hermias> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_author> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Mockery_of_the_Gentile_Philosophers> .
<https://sntcristian.github.io/leopardi_kg/statement_53> a rdf:Statement ;
rdfs:label "<Critique on Philosophers> <author> <Giacomo Leopardi>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00035> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_author> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Critique_on_Philosophers> .
<https://sntcristian.github.io/leopardi_kg/statement_54> a rdf:Statement ;
rdfs:label "<Pindar's translation by Mazza> <author> <Giacomo Leopardi>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00036> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Giacomo_Leopardi> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_author> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Pindar_s_translation_by_Mazza> .
<https://sntcristian.github.io/leopardi_kg/statement_55> a rdf:Statement ;
rdfs:label "<Commentario Storico de Ecclesiis Recanatensi et Lauretana> <instance of> <manuscript>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00041> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/manuscript> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_instance_of> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Commentario_Storico_de_Ecclesiis_Recanatensi_et_Lauretana> .
<https://sntcristian.github.io/leopardi_kg/statement_56> a rdf:Statement ;
rdfs:label "<Filippo Solari> <field of work> <jealously guarding the manuscripts>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00041> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/jealously_guarding_the_manuscripts> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_field_of_work> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Filippo_Solari> .
<https://sntcristian.github.io/leopardi_kg/statement_57> a rdf:Statement ;
rdfs:label "<Vogel's Memorabilia> <collection> <Bishop's Chancellery of Macerata>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00041> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Bishop_s_Chancellery_of_Macerata> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_collection> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Vogel_s_Memorabilia> .
<https://sntcristian.github.io/leopardi_kg/statement_58> a rdf:Statement ;
rdfs:label "<Commentario Storico de Ecclesiis Recanatensi et Lauretana> <author> <Canonico Vogel>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00041> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Canonico_Vogel> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_author> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Commentario_Storico_de_Ecclesiis_Recanatensi_et_Lauretana> .
<https://sntcristian.github.io/leopardi_kg/statement_6> a rdf:Statement ;
rdfs:label "<Francesco Cancellieri> <work location> <Rome>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00004> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Rome> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_work_location> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Francesco_Cancellieri> .
<https://sntcristian.github.io/leopardi_kg/statement_7> a rdf:Statement ;
rdfs:label "<Lettere sopra la condotta di Bonaparte a Sant'Elena> <author> <Chirurgo Warden>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00005> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Chirurgo_Warden> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_author> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Lettere_sopra_la_condotta_di_Bonaparte_a_Sant_Elena> .
<https://sntcristian.github.io/leopardi_kg/statement_8> a rdf:Statement ;
rdfs:label "<Lettere sopra la condotta di Bonaparte a Sant'Elena> <author> <Unknown>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00005> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Unknown> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_author> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Lettere_sopra_la_condotta_di_Bonaparte_a_Sant_Elena> .
<https://sntcristian.github.io/leopardi_kg/statement_9> a rdf:Statement ;
rdfs:label "<Francesco Cancellieri> <work location> <Rome>"@en ;
dcterms:source <https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00006> ;
rdf:object <https://sntcristian.github.io/leopardi_kg/Rome> ;
rdf:predicate <https://sntcristian.github.io/leopardi_kg/property_work_location> ;
rdf:subject <https://sntcristian.github.io/leopardi_kg/Francesco_Cancellieri> .
<https://sntcristian.github.io/leopardi_kg/1816> a owl:Thing ;
rdfs:label "1816"@en .
<https://sntcristian.github.io/leopardi_kg/Antonio_Cocchi> a owl:Thing ;
rdfs:label "Antonio Cocchi"@en .
<https://sntcristian.github.io/leopardi_kg/Ascoli> a owl:Thing ;
rdfs:label "Ascoli"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/Q16117> .
<https://sntcristian.github.io/leopardi_kg/Bishop_s_Chancellery_of_Macerata> a owl:Thing ;
rdfs:label "Bishop's Chancellery of Macerata"@en .
<https://sntcristian.github.io/leopardi_kg/Canonico_Vogel> a owl:Thing ;
rdfs:label "Canonico Vogel"@en .
<https://sntcristian.github.io/leopardi_kg/Chirurgo_Warden> a owl:Thing ;
rdfs:label "Chirurgo Warden"@en .
<https://sntcristian.github.io/leopardi_kg/Corinthians> a owl:Thing ;
rdfs:label "Corinthians"@en .
<https://sntcristian.github.io/leopardi_kg/Critique_on_Philosophers> a owl:Thing ;
rdfs:label "Critique on Philosophers"@en .
<https://sntcristian.github.io/leopardi_kg/Dialoghetti> a owl:Thing ;
rdfs:label "Dialoghetti"@en .
<https://sntcristian.github.io/leopardi_kg/Epigramma_sopra_Amore> a owl:Thing ;
rdfs:label "Epigramma sopra Amore"@en .
<https://sntcristian.github.io/leopardi_kg/Filicaia> a owl:Thing ;
rdfs:label "Filicaia"@en .
<https://sntcristian.github.io/leopardi_kg/Filippo_Solari> a owl:Thing ;
rdfs:label "Filippo Solari"@en .
<https://sntcristian.github.io/leopardi_kg/Francesco_Galvani> a owl:Thing ;
rdfs:label "Francesco Galvani"@en .
<https://sntcristian.github.io/leopardi_kg/Gasparo_Mazzi> a owl:Thing ;
rdfs:label "Gasparo Mazzi"@en .
<https://sntcristian.github.io/leopardi_kg/General_Secretary_of_the_Pontifical_Posts> a owl:Thing ;
rdfs:label "General Secretary of the Pontifical Posts"@en .
<https://sntcristian.github.io/leopardi_kg/Giovanni_Galvani> a owl:Thing ;
rdfs:label "Giovanni Galvani"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/Q20860615> .
<https://sntcristian.github.io/leopardi_kg/Giuseppe_Antonio_Zacchia> a owl:Thing ;
rdfs:label "Giuseppe Antonio Zacchia"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/Q742403> .
<https://sntcristian.github.io/leopardi_kg/Greek_inscription_judged_by_Giacomo_Leopardi> a owl:Thing ;
rdfs:label "Greek inscription judged by Giacomo Leopardi"@en .
<https://sntcristian.github.io/leopardi_kg/Hermias> a owl:Thing ;
rdfs:label "Hermias"@en .
<https://sntcristian.github.io/leopardi_kg/Il_Bifolchetto> a owl:Thing ;
rdfs:label "Il Bifolchetto"@en .
<https://sntcristian.github.io/leopardi_kg/Lettera> a owl:Thing ;
rdfs:label "Lettera"@en .
<https://sntcristian.github.io/leopardi_kg/Luigi_Canali> a owl:Thing ;
rdfs:label "Luigi Canali"@en .
<https://sntcristian.github.io/leopardi_kg/Luigi_Giambene> a owl:Thing ;
rdfs:label "Luigi Giambene"@en .
<https://sntcristian.github.io/leopardi_kg/Mockery_of_the_Gentile_Philosophers> a owl:Thing ;
rdfs:label "Mockery of the Gentile Philosophers"@en .
<https://sntcristian.github.io/leopardi_kg/Nibby_s_translation_of_Strabo> a owl:Thing ;
rdfs:label "Nibby's translation of Strabo"@en .
<https://sntcristian.github.io/leopardi_kg/Osservazioni_eusebiane> a owl:Thing ;
rdfs:label "Osservazioni eusebiane"@en .
<https://sntcristian.github.io/leopardi_kg/Paul_the_Apostle> a owl:Thing ;
rdfs:label "Paul the Apostle"@en .
<https://sntcristian.github.io/leopardi_kg/Pindar_s_translation_by_Mazza> a owl:Thing ;
rdfs:label "Pindar's translation by Mazza"@en .
<https://sntcristian.github.io/leopardi_kg/Porphyrii__Eusebii__Philonis_Iudaei_Opera_et_Fragmenta_novissime_detecta> a owl:Thing ;
rdfs:label "Porphyrii, Eusebii, Philonis Iudaei Opera et Fragmenta novissime detecta"@en .
<https://sntcristian.github.io/leopardi_kg/Printing_cost_breakdown> a owl:Thing ;
rdfs:label "Printing cost breakdown"@en .
<https://sntcristian.github.io/leopardi_kg/Sinner> a owl:Thing ;
rdfs:label "Sinner"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/Q18574634> .
<https://sntcristian.github.io/leopardi_kg/Unknown> a owl:Thing ;
rdfs:label "Unknown"@en .
<https://sntcristian.github.io/leopardi_kg/Vogel_s_Memorabilia> a owl:Thing ;
rdfs:label "Vogel's Memorabilia"@en .
<https://sntcristian.github.io/leopardi_kg/assembly_cost> a owl:Thing ;
rdfs:label "assembly cost"@en .
<https://sntcristian.github.io/leopardi_kg/chapter_beautiful_and_good> a owl:Thing ;
rdfs:label "chapter beautiful and good"@en .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00004> a crm:E31_Document ;
dcterms:created "9. Decembre 1816."@it ;
dcterms:extent "4 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Francesco Cancellieri"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00004/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00006> a crm:E31_Document ;
dcterms:created "14. Dec.bre 1818."@it ;
dcterms:extent "4 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Francesco Cancellieri"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00006/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00009> a crm:E31_Document ;
dcterms:created "7 Giugno 1822."@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Giuseppe Melchiorri"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00009/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00010> a crm:E31_Document ;
dcterms:created "24 Giugno 1822."@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Giuseppe Melchiorri"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00010/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00012> a crm:E31_Document ;
dcterms:created "14. Novembre 1823."@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Giuseppe Melchiorri"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00012/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00013> a crm:E31_Document ;
dcterms:created "2. Gen. 1824."@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Giuseppe Melchiorri"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00013/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00014> a crm:E31_Document ;
dcterms:created "8. Gennaio 1825."@it ;
dcterms:extent "4 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Giuseppe Melchiorri"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00014/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00015> a crm:E31_Document ;
dcterms:created "18 Gen. 1826."@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Giuseppe Melchiorri"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00015/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00020> a crm:E31_Document ;
dcterms:created "3 Settembre 1828"@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Giovanni Rosini"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00020/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00022> a crm:E31_Document ;
dcterms:created "28 Nov. 1828."@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Giovanni Rosini"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00022/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00023> a crm:E31_Document ;
dcterms:created "19 Aprile 1829"@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Giovanni Rosini"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00023/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00024> a crm:E31_Document ;
dcterms:created "28 Giug."@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Paolina Leopardi"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00024/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00030> a crm:E31_Document ;
dcterms:created "14 Agosto 1832"@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Monaldo Leopardi"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00030/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00031> a crm:E31_Document ;
dcterms:created "Giugno 1832"@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Giovanni Rosini"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00031/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00032> a crm:E31_Document ;
dcterms:created "24 Ott. 1832"@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Monaldo Leopardi"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00032/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00036> a crm:E31_Document ;
dcterms:created "6 Decembre 1816."@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Antonio Fortunato Stella"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00036/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/eye_and_nerve_disease> a owl:Thing ;
rdfs:label "eye and nerve disease"@en .
<https://sntcristian.github.io/leopardi_kg/fever> a owl:Thing ;
rdfs:label "fever"@en .
<https://sntcristian.github.io/leopardi_kg/humility> a owl:Thing ;
rdfs:label "humility"@en .
<https://sntcristian.github.io/leopardi_kg/jealously_guarding_the_manuscripts> a owl:Thing ;
rdfs:label "jealously guarding the manuscripts"@en .
<https://sntcristian.github.io/leopardi_kg/manuscript> a owl:Thing ;
rdfs:label "manuscript"@en .
<https://sntcristian.github.io/leopardi_kg/property_collection> a owl:ObjectProperty ;
rdfs:label "collection"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P195> .
<https://sntcristian.github.io/leopardi_kg/property_genre> a owl:ObjectProperty ;
rdfs:label "genre"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P136> .
<https://sntcristian.github.io/leopardi_kg/property_has_effect> a owl:ObjectProperty ;
rdfs:label "has effect"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P1542> .
<https://sntcristian.github.io/leopardi_kg/property_occupation> a owl:ObjectProperty ;
rdfs:label "occupation"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P106> .
<https://sntcristian.github.io/leopardi_kg/property_participant_in> a owl:ObjectProperty ;
rdfs:label "participant in"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P1344> .
<https://sntcristian.github.io/leopardi_kg/property_place_of_birth> a owl:ObjectProperty ;
rdfs:label "place of birth"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P19> .
<https://sntcristian.github.io/leopardi_kg/property_publication_date> a owl:ObjectProperty ;
rdfs:label "publication date"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P577> .
<https://sntcristian.github.io/leopardi_kg/recovery_from_cold> a owl:Thing ;
rdfs:label "recovery from cold"@en .
<https://sntcristian.github.io/leopardi_kg/sonnet> a owl:Thing ;
rdfs:label "sonnet"@en .
<https://sntcristian.github.io/leopardi_kg/writing> a owl:Thing ;
rdfs:label "writing"@en .
<https://sntcristian.github.io/leopardi_kg/writing_limited_by_eye_condition> a owl:Thing ;
rdfs:label "writing limited by eye condition"@en .
<https://sntcristian.github.io/leopardi_kg/Auditor_of_the_Sacred_Rota> a owl:Thing ;
rdfs:label "Auditor of the Sacred Rota"@en .
<https://sntcristian.github.io/leopardi_kg/Commentario_Storico_de_Ecclesiis_Recanatensi_et_Lauretana> a owl:Thing ;
rdfs:label "Commentario Storico de Ecclesiis Recanatensi et Lauretana"@en .
<https://sntcristian.github.io/leopardi_kg/Lettere_sopra_la_condotta_di_Bonaparte_a_Sant_Elena> a owl:Thing ;
rdfs:label "Lettere sopra la condotta di Bonaparte a Sant'Elena"@en .
<https://sntcristian.github.io/leopardi_kg/Libretto_del_Mosco> a owl:Thing ;
rdfs:label "Libretto del Mosco"@en .
<https://sntcristian.github.io/leopardi_kg/Luisa_Strozzi> a owl:Thing ;
rdfs:label "Luisa Strozzi"@en .
<https://sntcristian.github.io/leopardi_kg/Mario_Valdrighi> a owl:Thing ;
rdfs:label "Mario Valdrighi"@en .
<https://sntcristian.github.io/leopardi_kg/betrayal_by_French_translator> a owl:Thing ;
rdfs:label "betrayal by French translator"@en .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00003> a crm:E31_Document ;
dcterms:created "25. Novembre 1816."@it ;
dcterms:extent "4 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Francesco Cancellieri"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00003/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00005> a crm:E31_Document ;
dcterms:created "5 Decembre 1817"@it ;
dcterms:extent "4 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Niccolò Capurro"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00005/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00007> a crm:E31_Document ;
dcterms:created "10 Luglio 1820"@it ;
dcterms:extent "4 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Giuseppe Zacchia"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00007/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00011> a crm:E31_Document ;
dcterms:created "27 Giugno 1823."@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Giuseppe Melchiorri"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00011/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00019> a crm:E31_Document ;
dcterms:created "28 Giugno 1828"@it ;
dcterms:extent "4 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Carlo Emanuele Muzzarelli"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00019/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00021> a crm:E31_Document ;
dcterms:created "8 Novembre 1828"@it ;
dcterms:extent "4 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Carlo Emanuele Muzzarelli"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00021/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00025> a crm:E31_Document ;
dcterms:created "24 Maggio 1831"@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Giovanni Rosini"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00025/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00027> a crm:E31_Document ;
dcterms:created "26 Luglio 1831"@it ;
dcterms:extent "4 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Mario Valdrighi"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00027/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/flussion_d_occhi> a owl:Thing ;
rdfs:label "flussion d'occhi"@en .
<https://sntcristian.github.io/leopardi_kg/location_unknown> a owl:Thing ;
rdfs:label "location unknown"@en .
<https://sntcristian.github.io/leopardi_kg/naturalist> a owl:Thing ;
rdfs:label "naturalist"@en .
<https://sntcristian.github.io/leopardi_kg/property_instance_of> a owl:ObjectProperty ;
rdfs:label "instance of"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P31> .
<https://sntcristian.github.io/leopardi_kg/property_place_of_death> a owl:ObjectProperty ;
rdfs:label "place of death"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P20> .
<https://sntcristian.github.io/leopardi_kg/property_relative> a owl:ObjectProperty ;
rdfs:label "relative"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P1038> .
<https://sntcristian.github.io/leopardi_kg/property_spouse> a owl:ObjectProperty ;
rdfs:label "spouse"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P26> .
<https://sntcristian.github.io/leopardi_kg/Francesco_Cancellieri> a owl:Thing ;
rdfs:label "Francesco Cancellieri"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/Q3612445> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00002> a crm:E31_Document ;
dcterms:created "15. Novembre 1816."@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Antonio Fortunato Stella"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00002/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00008> a crm:E31_Document ;
dcterms:created "13 Maggio 1822."@it ;
dcterms:extent "4 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Giuseppe Melchiorri"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00008/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00018> a crm:E31_Document ;
dcterms:created "23 Giugno 1827"@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Monaldo Leopardi"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00018/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00026> a crm:E31_Document ;
dcterms:created "15 Giugno 1831"@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Giovanni Rosini"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00026/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00029> a crm:E31_Document ;
dcterms:created "8 Marzo 1832"@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Giacomo Leopardi to Monaldo Leopardi"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00029/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00035> a crm:E31_Document ;
dcterms:created "1813"@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Fragment of a translation from the Greek literature"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00035/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/property_medical_condition_treated> a owl:ObjectProperty ;
rdfs:label "medical condition treated"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P2175> .
<https://sntcristian.github.io/leopardi_kg/property_part_of> a owl:ObjectProperty ;
rdfs:label "part of"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P361> .
<https://sntcristian.github.io/leopardi_kg/property_position_held> a owl:ObjectProperty ;
rdfs:label "position held"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P39> .
<https://sntcristian.github.io/leopardi_kg/Carlo_Emmanuele_Muzzarelli> a owl:Thing ;
rdfs:label "Carlo Emmanuele Muzzarelli"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/Q5041499> .
<https://sntcristian.github.io/leopardi_kg/Giovanni_Rosini> a owl:Thing ;
rdfs:label "Giovanni Rosini"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/Q4396614> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00028> a crm:E31_Document ;
dcterms:created "26 Luglio 1831"@it ;
dcterms:extent "2 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Annex to the previous letter from Giacomo Leopardi to Mario Valdrighi"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00028/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/document_MS-ADD-06210-00041> a crm:E31_Document ;
dcterms:created "8 X.bre 1852"@it ;
dcterms:extent "4 pages "@en ;
dcterms:language "Italian"@en ;
dcterms:title "Letter from Paolina Leopardi and Filippo Castiglioni to Filippo Raffaelli"@en ;
crm:P212_has_display_uri <https://cudl.lib.cam.ac.uk/view/MS-ADD-06210-00041/1> ;
crm:P52_has_current_owner <https://www.lib.cam.ac.uk/> .
<https://sntcristian.github.io/leopardi_kg/property_field_of_work> a owl:ObjectProperty ;
rdfs:label "field of work"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P101> .
<https://sntcristian.github.io/leopardi_kg/property_notable_work> a owl:ObjectProperty ;
rdfs:label "notable work"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P800> .
<https://sntcristian.github.io/leopardi_kg/Giuseppe_Melchiorri> a owl:Thing ;
rdfs:label "Giuseppe Melchiorri"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/Q88781669> .
<https://sntcristian.github.io/leopardi_kg/property_author> a owl:ObjectProperty ;
rdfs:label "author"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P50> .
<https://sntcristian.github.io/leopardi_kg/Rome> a owl:Thing ;
rdfs:label "Roma"@en,
"Rome"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/Q15119> .
<https://sntcristian.github.io/leopardi_kg/property_work_location> a owl:ObjectProperty ;
rdfs:label "work location"@en ;
rdfs:seeAlso <http://www.wikidata.org/entity/P937> .