Project

General

Profile

1
# TODO:
2
# 1. Complete retrieved information
3
# 2. Title can be a literal
4

    
5
DEFINE input:inference 'parthenos_rules'
6

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

    
12
CONSTRUCT {
13
<${subjectURL}> crm:P1_is_identified_by ?title .
14
<${subjectURL}> crm:P3_has_note ?description .
15
<${subjectURL}> a ?type
16
}
17
WHERE {
18
 <${subjectURL}> a crmpe:PE28_Curation_Plan .
19
 <${subjectURL}> crm:P1_is_identified_by ?titleRes .
20
 ?titleRes rdfs:label ?title .
21
 <${subjectURL}> crm:P3_has_note ?description .
22
 <${subjectURL}> a ?type .
23
}
(6-6/8)