-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigLancet.json
131 lines (131 loc) · 3.92 KB
/
configLancet.json
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
{
"configuration": {
"endpoint": "http://two.eelst.cs.unibo.it:8181/data",
"query": "PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX pro: <http://purl.org/spar/pro/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX frbr: <http://purl.org/vocab/frbr/core#> PREFIX fabio: <http://purl.org/spar/fabio/> SELECT DISTINCT ?person (GROUP_CONCAT(DISTINCT ?label; separator = \";\") AS ?full_name) (GROUP_CONCAT(DISTINCT ?givenName; separator = \";\") AS ?given_name) (GROUP_CONCAT(DISTINCT ?familyName; separator = \";\") AS ?family_name) (GROUP_CONCAT(DISTINCT ?coauthor; separator = \";\") AS ?coauthors_list) (GROUP_CONCAT(DISTINCT ?realization; separator = \";\") AS ?publications) (GROUP_CONCAT(DISTINCT ?publicationYear; separator = \";\") AS ?publications_pub_years) WHERE{ ?person a foaf:Person ;OPTIONAL { ?person foaf:givenName ?givenName } .OPTIONAL {?person foaf:familyName ?familyName } .OPTIONAL {?person rdfs:label ?label } .OPTIONAL { ?person pro:holdsRoleInTime ?role } .OPTIONAL { ?role pro:relatesToDocument ?relate } .OPTIONAL {?relate frbr:realization ?realization } .OPTIONAL {?coauthor pro:relatesToDocument ?relate } .OPTIONAL {?realization a fabio:JournalArticle } .OPTIONAL {?realization fabio:hasPublicationYear ?publicationYear } .}GROUP BY ?person",
"data_structure": [
{
"key": "person",
"type": "Resource",
"delimiter": "",
"identifier": true
},
{
"key": "family_name",
"type": "Information",
"delimiter": ";",
"identifier": false
},
{
"key": "given_name",
"type": "Information",
"delimiter": ";",
"identifier": false
},
{
"key": "full_name",
"type": "Information",
"delimiter": ";",
"identifier": false
},
{
"key": "coauthors_list",
"type": "Resource",
"delimiter": ";",
"identifier": false
},
{
"key": "publications",
"type": "Resource",
"delimiter": ";",
"identifier": false
},
{
"key": "publications_pub_years",
"type": "Resource",
"delimiter": ";",
"identifier": false
}
]
},
"settings": [
{
"global_setting": {
"global_threshold": "0",
"global_checks": "0"
},
"param": [
{
"key": "person",
"type": "Resource",
"weight": "0",
"threshold": "0",
"limit": "100"
},
{
"key": "family_name",
"type": "Information",
"weight": "4",
"threshold": "100",
"limit": "100",
"options": {
"spaces": true,
"dots": true
}
},
{
"key": "given_name",
"type": "Information",
"weight": "3",
"threshold": "50",
"limit": "50",
"options": {
"mwa": true,
"spaces": true,
"dots": true
}
},
{
"key": "full_name",
"type": "Information",
"weight": "0",
"threshold": "0",
"limit": "100",
"options": {
"spaces": true,
"dots": true
}
},
{
"key": "coauthors_list",
"type": "Resource",
"weight": "0",
"threshold": "0",
"limit": "100",
"options": {
"arw": true
}
},
{
"key": "publications",
"type": "Resource",
"weight": "0",
"threshold": "0",
"limit": "100",
"options": {
"arw": false
}
},
{
"key": "publications_pub_years",
"type": "Resource",
"weight": "0",
"threshold": "0",
"limit": "100",
"options": {
"arw": false
}
}
]
}
]
}