123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- NOTA: Nel js sostituisci <http://datini.archiviodistato.prato.it/la-ricerca/scheda/ASPO00031149/E73_OVI> con link
- Oggetto fisico
- SELECT DISTINCT ?link ?oggetto_fisico
- WHERE {?link crm:P128_carries <http://datini.archiviodistato.prato.it/la-ricerca/scheda/ASPO00031149/E73_OVI>;
- rdfs:label ?oggetto_fisico .
- }
- Mittente, Destinatario, Data Partenza, Data Arrivo, Luogo Partenza, Luogo Arrivo
- SELECT DISTINCT ?mittente ?destinatario ?data_partenza ?data_arrivo ?luogo_partenza ?luogo_arrivo
- WHERE {?subject crm:P128_carries <http://datini.archiviodistato.prato.it/la-ricerca/scheda/ASPO00031149/E73_OVI>.
- GRAPH <http://dev.restore.ovi.cnr.it:8890/ovi/datini/ex> {?subject crm:P25i_moved_by ?mov_ev .}
- ?send rdfs:subClassOf ?mov_ev ;
- rdf:type crm:EL2_Send_Letter ;
- crm:P4_has_time-span ?time_spanA;
- crm:P27_moved_from ?placeA;
- crm:P01_has_domain ?sender .
- ?time_spanA rdfs:label ?data_partenza .
- ?placeA rdfs:label ?luogo_partenza .
- ?sender crm:P02_has_range ?mittente .
- ?receive rdfs:subClassOf ?mov_ev;
- rdf:type crm:EL3_Receive_Letter ;
- crm:P4_has_time-span ?time_spanB;
- crm:P26_moved_to ?placeB;
- crm:P01_has_domain ?receiver .
- ?time_spanB rdfs:label ?data_arrivo .
- ?placeB rdfs:label ?luogo_arrivo .
- ?receiver crm:P02_has_range ?destinatario .
- }
- Lingua e area linguistica
- SELECT DISTINCT ?lingua ?area_linguistica
- WHERE {<http://datini.archiviodistato.prato.it/la-ricerca/scheda/ASPO00031149/E73_OVI> crm:P72_has_language ?language .
- ?language crm:P3_has_note ?area ;
- rdfs:label ?lingua .
- ?area rdfs:label ?area_linguistica
- }
- Descrizione
- SELECT DISTINCT ?descrizione
- WHERE {<http://datini.archiviodistato.prato.it/la-ricerca/scheda/ASPO00031149/E73_OVI> crm:P3_has_note ?description .
- ?description rdfs:label ?descrizione
- }
- Tipo
- SELECT DISTINCT ?tipologia
- WHERE {<http://datini.archiviodistato.prato.it/la-ricerca/scheda/ASPO00031149/E73_OVI> crm:P2_has_type ?type .
- ?type rdf:type crm:E55_Type;
- rdfs:label ?tipologia .
- }
- Sigla OVI
- SELECT DISTINCT ?sigla_OVI
- WHERE {<http://datini.archiviodistato.prato.it/la-ricerca/scheda/ASPO00031149/E73_OVI> crm:P1_is_identified_by ?id .
- ?id rdf:type crm:E42_Identifier;
- crm:P2_has_type ?type ;
- rdfs:label ?sigla_OVI .
- ?type rdfs:label "Sigla OVI".
- }
- Titolo
- SELECT DISTINCT ?titolo
- WHERE {<http://datini.archiviodistato.prato.it/la-ricerca/scheda/ASPO00031149/E73_OVI> crm:P1_is_identified_by ?title .
- ?title rdf:type crm:E35_Title;
- rdfs:label ?titolo .
- }
- Testo Lemmatizzato
- SELECT DISTINCT ?testo_lemmatizzato
- WHERE {<http://datini.archiviodistato.prato.it/la-ricerca/scheda/ASPO00031149/E73_OVI> crm:P190_has_symbolic_content ?testo_lemmatizzato .
- }
- Edizione e edizione abbreviata
- SELECT DISTINCT ?edizione ?edizione_abbreviata
- WHERE {?edition crm:P70_documents <http://datini.archiviodistato.prato.it/la-ricerca/scheda/ASPO00031149/E73_OVI> ;
- crm:P1_is_identified_by ?edition_id .
- ?edition_id rdfs:label ?edizione;
- crm:P139_has_alternative_form ?ed_abbr .
- ?ed_abbr rdfs:label ?edizione_abbreviata
- }
- Raccolta
- SELECT DISTINCT ?raccolta
- WHERE {?racc crm:P148_has_component <http://datini.archiviodistato.prato.it/la-ricerca/scheda/ASPO00031149/E73_OVI> ;
- crm:P2_has_type ?racc_type ;
- rdfs:label ?raccolta .
- ?racc_type rdfs:label "Raccolta".
- }
- Toponimi
-
- SELECT DISTINCT ?link_toponimo ?toponimo
- WHERE {<http://datini.archiviodistato.prato.it/la-ricerca/scheda/ASPO00005138> crm:P67_refers_to ?link_toponimo .
- ?link_toponimo rdfs:label ?toponimo ;
- crm:P2_has_type "Toponimo" .
- }
- Antroponimi
- SELECT DISTINCT *
- WHERE {<http://datini.archiviodistato.prato.it/la-ricerca/scheda/ASPO00045673> crm:P67_refers_to ?link_antroponimo .
- ?link_antroponimo rdfs:label ?antroponimo;
- crm:P2_has_type "Antroponimo"}
|