Project

General

Profile

1
# TODO:
2
# 1. Complete retrieved information
3

    
4
DEFINE input:inference 'parthenos_rules'
5

    
6
PREFIX crm: <http://www.cidoc-crm.org/cidoc-crm/>
7
PREFIX crmdig: <http://www.ics.forth.gr/isl/CRMdig/>
8
PREFIX crmpe: <http://parthenos.d4science.org/CRMext/CRMpe.rdfs/>
9
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
10

    
11
CONSTRUCT {
12
<${subjectURL}> crm:P1_is_identified_by ?title .
13
<${subjectURL}> crm:P3_has_note ?description .
14
<${subjectURL}> a ?type
15
}
16
WHERE {
17

    
18
{
19
 <${subjectURL}> a crm:E55_Type .
20
 <${subjectURL}> a ?type .
21
}
22
OPTIONAL { <${subjectURL}> rdfs:label ?title .}
23
OPTIONAL { <${subjectURL}> crm:P3_has_note ?description .}
24
}
(3-3/8)