File size: 34,838 Bytes
6fa4bc9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
    "paper_id": "2020",
    "header": {
        "generated_with": "S2ORC 1.0.0",
        "date_generated": "2023-01-19T11:59:33.828714Z"
    },
    "title": "Social Sciences and Humanities Open Cloud",
    "authors": [
        {
            "first": "Daan",
            "middle": [],
            "last": "Broeder",
            "suffix": "",
            "affiliation": {},
            "email": "d.g.broeder@uu.nl"
        },
        {
            "first": "Maria",
            "middle": [],
            "last": "Eskevich",
            "suffix": "",
            "affiliation": {},
            "email": ""
        },
        {
            "first": "Monica",
            "middle": [],
            "last": "Monachini",
            "suffix": "",
            "affiliation": {},
            "email": "monica.monachini@ilc.cnr.it"
        }
    ],
    "year": "",
    "venue": null,
    "identifiers": {},
    "abstract": "This paper outlines the future of language resources and identifies their potential contribution for creating and sustaining the social sciences and humanities (SSH) component of the European Open Science Cloud (EOSC).",
    "pdf_parse": {
        "paper_id": "2020",
        "_pdf_hash": "",
        "abstract": [
            {
                "text": "This paper outlines the future of language resources and identifies their potential contribution for creating and sustaining the social sciences and humanities (SSH) component of the European Open Science Cloud (EOSC).",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Abstract",
                "sec_num": null
            }
        ],
        "body_text": [
            {
                "text": "The term Language Resource (LR) refers to a broad type of speech and language data in machine readable form, used to study language or assist language processing applications. Examples of Language Resources are: written or spoken corpora and lexica, multi-modal resources, grammars, terminology or domain specific databases and dictionaries, ontologies, multimedia databases, etc. Language Technology (LT) are broadly defined as software tools for the analysis and use of Language. The development of LR, LT, and their management have reached the level of maturity that allows their application to be expanded beyond the borders of traditional linguistic disciplines. In principle, such proliferation of resources and technologies is at the core of initiatives leading to the creation and building of the European Open Science Cloud (EOSC) 1 . EOSC is the latest development of the European approach to research infrastructure building. It has a long history starting with the series of ESFRI roadmaps 2 . In every field of research the steps towards EOSC have led to discussions on how to best accommodate the needs and requests of representative communities while complying with the technical requirements inherent to the implementation of EOSC. At previous stages the ERICs (European Research Infrastructure Consortium) 3 were established to answer the need of specific research communities for infrastructure solutions. The first two to be created were SHARE 4 and CLARIN 5 , both ERICs for the social sciences and humanities (SSH) domain. This early uptake illustrates the overall involvement of the SSH in shaping the European Research Infrastructure landscape. Nowadays the SSH domain has grown a number of research 1 https://ec.europa.eu/info/publications/european-openscience-cloud-eosc-strategic-implementation-plan en 2 https://www.esfri.eu/esfri-roadmap 3 For an overview of all ERICs established and the links to their websites, see the information pages of ERIC Forum on the ERIC Landscape.",
                "cite_spans": [
                    {
                        "start": 1323,
                        "end": 1324,
                        "text": "3",
                        "ref_id": null
                    }
                ],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Introduction",
                "sec_num": "1."
            },
            {
                "text": "4 http://www.share-project.org 5 https://www.clarin.eu infrastructures (RIs), CESSDA 6 , CLARIN, DARIAH 7 , ESS 8 , SHARE 9 , that support their domain-specific work with examples of collaboration where linguistic analysis is used to support studies into societal and cultural dynamics. Research in the broader SSH domain can benefit from language data because of the potential value of extracting information from data expressed in the form of natural language. Well organized and easy access to language resources and relevant processing tools can stimulate the broadening of research questions and the improvement of tools for the analysis of language resources. Some SSH research infrastructures have been able to articulate their community requirements and their domainspecific agenda by participating in large e-Infrastructure projects, such as EUDAT 10 , EGI 11 and EOSC-hub 12 . The latter project has integrated some key CLARIN services 13 into European Open Science Cloud (EOSC).",
                "cite_spans": [
                    {
                        "start": 946,
                        "end": 948,
                        "text": "13",
                        "ref_id": null
                    }
                ],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Introduction",
                "sec_num": "1."
            },
            {
                "text": "To foster collaboration between related research domains, the European Commission (EC) has introduced funding instruments for thematic cluster projects which are open for consortia consisting of multiple ERICs from related disciplinary fields. Cluster projects are expected to develop common solutions for similar problems and inform oneanother about specific approaches. The project Social Sciences and Humanities Open Cloud (SSHOC 14 ) is such a cluster project, which is part of the series of INFRA-EOSC projects: H2020 initiatives aimed at building the EOSC, and the to creation and support of the SSH part of the EOSC via alignment and integration of infrastructural services from the Social Sciences, Humanities and Cultural Heritage. SSHOC represents the third generation of SSH cluster projects. This paper describes the role of LR and LT in the context of the SSH Open Cloud. Section 2 addresses the main features that define the development of research infrastructures at large are discussed. Section 3 zooms in into the specific aspects of European long-term existing initiatives that build the ground for future development. Section 4 identifies the current capacities and current difficulties in sharing and optimising research data and creating and sustaining an infrastructure for the SSH domain, and Section 5 summarises the most prominent issues and potential that will define the configuration of LR and LT in the context of EOSC.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Introduction",
                "sec_num": "1."
            },
            {
                "text": "As outlined in Section 1, the EC initiated EOSC that is currently rolled out in the form of a number of European Union (EU) level and regional projects. In order to understand the dynamics of such developments, it is useful to examine diverse challenges in the current research environment that influence the decision taking process, and that are expected to be tackled through EOSC. The very dynamic landscape of research infrastructure builders and service providers is influenced by a number of trends and interests:",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Challenges of RI landscape for the SSH",
                "sec_num": "2."
            },
            {
                "text": "\u2022 Data deluge: Although currently already a well described, \"almost flogged to death\" concept, it is still a challenging and unsolved in daily research reality, and requires the uptake of (for many) new highly performant data management solutions. (Hey and Trefethen, 2003) \u2022 Scale up for efficiency: On the one hand, the goal to serve targeted research communities is achieved through creation and development of ERICs and thematic cluster collaborations that are expected to provide more generic services. On the other hand, the non-thematic service providers, e-Infrastructures as EGI and EUDAT that do not serve a particular community understandably tend to avoid diversification of their services.",
                "cite_spans": [
                    {
                        "start": 248,
                        "end": 273,
                        "text": "(Hey and Trefethen, 2003)",
                        "ref_id": "BIBREF1"
                    }
                ],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Challenges of RI landscape for the SSH",
                "sec_num": "2."
            },
            {
                "text": "\u2022 Professionalising service provisioning and software development: There is a trend to follow technology adoption and operational protocols from industry, as for instance the use of IT Service Management as FitSM 15 and the use of security standards as ISO 27001 16 , which is in agreement with the previous point. In general this can be a beneficial development improving efficiency.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Challenges of RI landscape for the SSH",
                "sec_num": "2."
            },
            {
                "text": "\u2022 Findable, Accessible, Interoperable and Reusable (Wilkinson et al., 2016) : Across different research domains there is a broad agreement to adopt FAIR principles when implementing services and data management protocols as a means to ensure proper access and re-use of research data and services.",
                "cite_spans": [
                    {
                        "start": 51,
                        "end": 75,
                        "text": "(Wilkinson et al., 2016)",
                        "ref_id": "BIBREF2"
                    }
                ],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Challenges of RI landscape for the SSH",
                "sec_num": "2."
            },
            {
                "text": "In addition to the above listed trends that can be observed across all domains, there is number of domainand community-specific aspects of research infrastructure building that have intrinsic influence on the decisions taken:",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Challenges of RI landscape for the SSH",
                "sec_num": "2."
            },
            {
                "text": "\u2022 While there is a steady increase in technical knowledge and proficiency amongst the researchers in the field of SSH, it appears that a number of intrinsic limitations in terms of technical complexity of research software and infrastructure solutions are still in place. The SSH community as a whole does not accept high IT proficiency as a default requirement for engaging into research. For instance purely qualitative researchers usually do not make use of advanced technical solutions. In comparison to \"hard sciences\", it is harder to engage with and to encourage the SSH community as a whole to change the research methodologies adopting broader usage of technological solutions, and there is an urgency to make the infrastructure developers aware of the need to communicate with end-users at the appropriate level of expertise. Note that scaling-up IT support organisations will not always favour easy support and communication with end-users.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Challenges of RI landscape for the SSH",
                "sec_num": "2."
            },
            {
                "text": "\u2022 Another aspect of current SSH infrastructures that is important to consider is the use of strong thematic centres as a backbone. This is the case for at least two RIs: CESSDA and CLARIN. These centres play an essential role within the research infrastructures, hosting data and services for their own purposes and users, but also, as in the case of for example CLARIN, contributing to the central infrastructure services. The thematic centres are largely funded by individual national governments and funding agencies and are major national contributions to the a common European infrastructure. The RIs play an important role in formulating quality and certification requirements for those centres, in accordance with EOSC policies, that they themselves helped to shape.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Challenges of RI landscape for the SSH",
                "sec_num": "2."
            },
            {
                "text": "Realising the SSH part of the EOSC, means, on the one side, to make SSH data, language processing tools, and services available, adjusted and accessible for users across SSH domain and, on the other side, to align and integrate services and infrastructures from the Social Sciences, Humanities and Cultural Heritage with one another and with the now emerging EOSC. Different perspectives on activities, contributions and results aimed at realising the SSH Open Cloud can be outlined:",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "SSHOC contribution and impact",
                "sec_num": "3."
            },
            {
                "text": "\u2022 From the perspective of EC: it is important to know that the thematic cluster projects such as SSHOC were specifically intended to make a link between the EOSC development and the research communities and that cluster project play an important role in the community consultation process and EOSC governance.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "SSHOC contribution and impact",
                "sec_num": "3."
            },
            {
                "text": "\u2022 From the perspective of a thematic cluster project such as SSHOC: challenges and successes should ideally be measured by how project results can be made useful for the common good, i.e. the outcome should be useful for more than just one of the SSHOC stakeholders.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "SSHOC contribution and impact",
                "sec_num": "3."
            },
            {
                "text": "\u2022 From the perspective of a SSHOC partner: the possibility for the individual stakeholder infrastructures to build long term partnerships and to make related initiatives known and accessible to the other SSHOC partners is important.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "SSHOC contribution and impact",
                "sec_num": "3."
            },
            {
                "text": "\u2022 From the perspective of communities that are served by RIs within the thematic cluster: there is a possibility to be represented and to have the community voice/opinion heard at the level of EOSC through SSHOC activities. For example, the larger SSH communities, such as DARIAH, E-RIHS 17 , CESSDA, can benefit from CLARIN's long-term relation with the European and US Language Resource agencies, such as ELDA 18 and LDC 19 (Cieri, 2020) , and CLARIN involvement in LREC community. Whereas the LREC community and representative agencies expose their resources and tools to large audiences of potential users.",
                "cite_spans": [
                    {
                        "start": 426,
                        "end": 439,
                        "text": "(Cieri, 2020)",
                        "ref_id": "BIBREF0"
                    }
                ],
                "ref_spans": [],
                "eq_spans": [],
                "section": "SSHOC contribution and impact",
                "sec_num": "3."
            },
            {
                "text": "As SSHOC can offer a link to and a view on how the EOSC initiative searches to transform the way research infrastructures are built and made available to researchers. This can have consequences for the way Language Resources and Technology (LRT) should be produced and made available. Thus, it can be considered as part of the CLARIN mission in SSHOC to consider and discuss such consequences for the traditional LRT centers as it should for the CLARIN centers.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "SSHOC contribution and impact",
                "sec_num": "3."
            },
            {
                "text": "While national organisations involved in CLARIN consortia and SSHOC are also participating in other European initiatives with a focus on LT, such as the industry-oriented ELG project 20 , their participation in SSHOC can also contribute to a better alignment with EOSC. Thus it helps EOSC to generate further impact outside academia. One of the benefits for the infrastructures participating in SSHOC is the sharing of infrastructure building efforts amongst partners and the potential for developing a common strategy towards the landscape dynamics and trends listed in Section 2. The possibilities for scaling up the use of infrastructure components through SSHOC is illustrated by the planned uptake of two key CLARIN infrastructure components by DARIAH, CESSDA and E-RIHS, in this case the CLARIN Language Resource Switchboard 21 and the CLARIN Virtual Collection Registry 22 . Extensive consultation between SSHOC partners takes place to guide their generalisation and find integration opportunities. Another example is that after an evaluation of the vocabulary management platforms currently used in the SSH domain and the selection of one or more common registries and a common management platform, wider visibility of agreed vocabularies are likely to be expected. Also with respect to the creation of completely new common infrastructure components, there are two planned examples: (i) the SSH Open Marketplace mentioned below and (ii) a prototype of a SSHOC Citation infrastructure for \"FAIR SSH Citations\" which is intended to make citations machine-actionable.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "SSHOC contribution and impact",
                "sec_num": "3."
            },
            {
                "text": "In order to bring the LR to the SSH Open Cloud diverse aspects of implementation are to be taken into account.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Aspects of LR4SSHOC implementation",
                "sec_num": "4."
            },
            {
                "text": "Although the need for stable well defined data management and processing services for research cannot be denied, equally or even more important is the need for flexibility and short turn-around with regard to implementation of new requirements and adaptation of for instance natural language processing (NLP) software and workflows to new insights emerging in scholarly practises or from thematic research agendas. In such cases the current solutions for service registration and evaluation offered by the EOSC solutions, the EOSC catalogue and EOSC Marketplace are probably too inflexible for the integration of domainspecific services, and clearly more suited for generic data management services that are typically very stable. However, registration of services is crucial for wider visibility, and therefore, it is important to enable registration for the often more dynamically developing class of domainspecific research software. Not only for sharing amongst researchers but also for acknowledgement and visibility by funding agencies. However, service registration would be more effective if the agency is closer to the research communities that may be also better positioned to contextualise the registered services in terms of solutions for specific research problems. SSHOC is developing the SSH Open Marketplace also to address this need of explicit registered services in a community-managed fashion. Obviously, such thematic service and solution registries will require proper funding and especially sufficient editorial support by the communities.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Findability of services and solutions",
                "sec_num": "4.1."
            },
            {
                "text": "Interoperability of data and services is the holy grail in many research infrastructure plans. Within the SSH, the interoperability with respect to data formats is probably the more easy goal to achieve, as the RIs focusing on LT and LR in the SSH context (CLARIN and DARIAH) already have adopted international standards for the use of important data formats and shape jointly the common standards, such as Text Encoding Initiative (TEI) 23 and other annotation formats. However, with respect to solving semantic interoperability, still some major controversies exist, especially with regard to the possibility to achieve uniformity in metadata descriptions and content markup. There is a large group that would work towards a universal ontology that should be applicable in all the SSH domains (and beyond) while others, would rather use pragmatic mappings between parts of different descriptive schema and vocabularies where possible and needed, referring to the huge effort involved in the maintenance of such universal ontologies. In SSHOC the pragmatic approach has been chosen, recommending schema and vocabularies on the basis of actual usage, while accepting that others need to work towards new descriptive systems and providing mappings between them. Creating and maintaining specific semantic interoperability solutions (mappings) requires domain expertise and is better done in the context of community organisation collaborations such as SSHOC. However offering a platform that allows easy management and sharing of such mapping solutions can be provided at the EOSC level since such a platform can be domain-agnostic.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Interoperability",
                "sec_num": "4.2."
            },
            {
                "text": "The future of LR and LT in the SSH part of EOSC will be partly determined by a number of policies and actions that will be shaped by the many-fold ongoing and envisaged SSHOC activities that are focused on services that can be applied to LR.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Concluding remarks and discussion points",
                "sec_num": "5."
            },
            {
                "text": "\u2022 For various reasons it is more effective to have new communities participating in and contributing to EOSC through existing cluster networks such as SSHOC instead of directly via EOSC.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Concluding remarks and discussion points",
                "sec_num": "5."
            },
            {
                "text": "\u2022 SSHOC has already successfully demonstrated the potential for sharing and scaling-up infrastructure components.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Concluding remarks and discussion points",
                "sec_num": "5."
            },
            {
                "text": "\u2022 SSHOC can play a role in aligning centres from the broader LR community with EOSC, including their industry-oriented activities.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Concluding remarks and discussion points",
                "sec_num": "5."
            },
            {
                "text": "\u2022 The desired efficiency in provision of generic services for the SSH community can often be achieved through the collaboration between research community organisations that directly share solutions rather than through the use of services of large service provider organisations.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Concluding remarks and discussion points",
                "sec_num": "5."
            },
            {
                "text": "\u2022 In large-scale collaborative projects a pragmatic approach to semantic interoperability solutions is more effective than a single ontology-oriented approaches.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Concluding remarks and discussion points",
                "sec_num": "5."
            },
            {
                "text": "\u2022 Especially in the SSH case, where a majority of researchers is less IT-savvy than in the \"hard sciences\", the communities are better positioned to describe and explain services and solutions.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Concluding remarks and discussion points",
                "sec_num": "5."
            },
            {
                "text": "\u2022 SSHOC collaboration will encourage sharing of infrastructure services and components across SSH domains and communities.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Concluding remarks and discussion points",
                "sec_num": "5."
            },
            {
                "text": "In order to achieve the prominent role of the communities both in infrastructure development and maintenance, as is argued and proposed in this position paper, it is paramount that long-term funding schemes and policies are in place to support shared resources and services, and that a proper community-oriented governance layer be set up.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Concluding remarks and discussion points",
                "sec_num": "5."
            },
            {
                "text": "https://www.cessda.eu 7 https://www.dariah.eu 8 www.europeansocialsurvey.org 9 http://www.share-project.org 10 https://eudat.eu 11 https://www.egi.eu 12 https://www.eosc-hub.eu 13 https://www.clarin.eu/eosc 14 https://sshopencloud.eu",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "",
                "sec_num": null
            },
            {
                "text": "https://www.fitsm.eu 16 https://www.iso.org/isoiec-27001-information-security.html",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "",
                "sec_num": null
            },
            {
                "text": "http://www.e-rihs.eu 18 http://www.elra.info 19 https://www.ldc.upenn.edu 20 https://www.european-language-grid.eu 21 https://switchboard.clarin.eu 22 http://vlo.clarin.eu",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "",
                "sec_num": null
            },
            {
                "text": "https://tei-c.org/release/doc/tei-p5-doc/en/html/",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "",
                "sec_num": null
            }
        ],
        "back_matter": [
            {
                "text": "The work reported here has received funding (through CLARIN ERIC) from the European Union's Horizon 2020 research and innovation programme under grant agreement No 823782 for project SSHOC. We would like to thank Franciska de Jong for providing valuable feedback and engaging the authors in exciting discussions.",
                "cite_spans": [],
                "ref_spans": [],
                "eq_spans": [],
                "section": "Acknowledgements",
                "sec_num": "6."
            }
        ],
        "bib_entries": {
            "BIBREF0": {
                "ref_id": "b0",
                "title": "Stretching disciplinary boundaries in language resource development and use: a linguistic data consortium position paper",
                "authors": [
                    {
                        "first": "C",
                        "middle": [],
                        "last": "Cieri",
                        "suffix": ""
                    }
                ],
                "year": 2020,
                "venue": "",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "Cieri, C. (2020). Stretching disciplinary boundaries in lan- guage resource development and use: a linguistic data consortium position paper.",
                "links": null
            },
            "BIBREF1": {
                "ref_id": "b1",
                "title": "The Data Deluge: An e-Science Perspective",
                "authors": [
                    {
                        "first": "A",
                        "middle": [
                            "J G"
                        ],
                        "last": "Hey",
                        "suffix": ""
                    },
                    {
                        "first": "A",
                        "middle": [
                            "E"
                        ],
                        "last": "Trefethen",
                        "suffix": ""
                    }
                ],
                "year": 2003,
                "venue": "Grid Computing -Making the Global Infrastructure a Reality",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "Hey, A. J. G. and Trefethen, A. E. (2003). The Data Del- uge: An e-Science Perspective. In F Berman, et al., edi- tors, Grid Computing -Making the Global Infrastructure a Reality, pages 809-824. Wiley and Sons. Chapter: 36.",
                "links": null
            },
            "BIBREF2": {
                "ref_id": "b2",
                "title": "The fair guiding principles for scientific data management and stewardship",
                "authors": [
                    {
                        "first": "M",
                        "middle": [
                            "D"
                        ],
                        "last": "Wilkinson",
                        "suffix": ""
                    },
                    {
                        "first": "M",
                        "middle": [],
                        "last": "Dumontier",
                        "suffix": ""
                    },
                    {
                        "first": "I",
                        "middle": [
                            "J"
                        ],
                        "last": "Aalbersberg",
                        "suffix": ""
                    },
                    {
                        "first": "G",
                        "middle": [],
                        "last": "Appleton",
                        "suffix": ""
                    },
                    {
                        "first": "M",
                        "middle": [],
                        "last": "Axton",
                        "suffix": ""
                    },
                    {
                        "first": "A",
                        "middle": [],
                        "last": "Baak",
                        "suffix": ""
                    },
                    {
                        "first": "N",
                        "middle": [],
                        "last": "Blomberg",
                        "suffix": ""
                    },
                    {
                        "first": "J.-W",
                        "middle": [],
                        "last": "Boiten",
                        "suffix": ""
                    },
                    {
                        "first": "L",
                        "middle": [
                            "B"
                        ],
                        "last": "Da Silva Santos",
                        "suffix": ""
                    },
                    {
                        "first": "P",
                        "middle": [
                            "E"
                        ],
                        "last": "Bourne",
                        "suffix": ""
                    }
                ],
                "year": 2016,
                "venue": "",
                "volume": "",
                "issue": "",
                "pages": "",
                "other_ids": {},
                "num": null,
                "urls": [],
                "raw_text": "Wilkinson, M. D., Dumontier, M., Aalbersberg, I. J., Ap- pleton, G., Axton, M., Baak, A., Blomberg, N., Boiten, J.-W., da Silva Santos, L. B., Bourne, P. E., et al. (2016). The fair guiding principles for scientific data manage- ment and stewardship. Scientific data, 3.",
                "links": null
            }
        },
        "ref_entries": {}
    }
}