-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttps___www.eurobis.org_imis_module=dataset&dasid=1998&show=eml.json
1346 lines (1346 loc) · 60.5 KB
/
https___www.eurobis.org_imis_module=dataset&dasid=1998&show=eml.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
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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"test_id": "18c00d89713ab88be265a8c17c3b2b4e93d4e1c2",
"request": {
"object_identifier": "https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml",
"metadata_service_endpoint": "",
"metadata_service_type": "oai_pmh",
"test_debug": true,
"use_datacite": true,
"metric_version": "metrics_v0.5"
},
"resolved_url": "https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml",
"start_timestamp": "2024-07-19T09:54:03Z",
"end_timestamp": "2024-07-19T09:54:06Z",
"metric_specification": "https:\/\/doi.org\/10.5281\/zenodo.6461229",
"metric_version": "metrics_v0.5",
"software_version": "3.2.0",
"total_metrics": 16,
"summary": {
"score_earned": {
"A": 2,
"F": 2.5,
"I": 1,
"R": 3,
"A1": 2,
"F1": 1,
"F2": 0.5,
"F3": 1,
"F4": 0,
"I1": 0,
"I2": 1,
"I3": 0,
"R1": 0,
"R1.1": 1,
"R1.2": 1,
"R1.3": 1,
"FAIR": 8.5
},
"score_total": {
"A": 3,
"F": 7,
"I": 4,
"R": 10,
"A1": 3,
"F1": 2,
"F2": 2,
"F3": 1,
"F4": 2,
"I1": 2,
"I2": 1,
"I3": 1,
"R1": 4,
"R1.1": 2,
"R1.2": 2,
"R1.3": 2,
"FAIR": 24
},
"score_percent": {
"A": 66.67,
"F": 35.71,
"I": 25,
"R": 30,
"A1": 66.67,
"F1": 50,
"F2": 25,
"F3": 100,
"F4": 0,
"I1": 0,
"I2": 100,
"I3": 0,
"R1": 0,
"R1.1": 50,
"R1.2": 50,
"R1.3": 50,
"FAIR": 35.42
},
"status_total": {
"A1": 3,
"F1": 2,
"F2": 1,
"F3": 1,
"F4": 1,
"I1": 1,
"I2": 1,
"I3": 1,
"R1": 1,
"R1.1": 1,
"R1.2": 1,
"R1.3": 2,
"A": 3,
"F": 5,
"I": 3,
"R": 5,
"FAIR": 16
},
"status_passed": {
"A1": 2,
"F1": 1,
"F2": 1,
"F3": 1,
"F4": 0,
"I1": 0,
"I2": 1,
"I3": 0,
"R1": 0,
"R1.1": 1,
"R1.2": 1,
"R1.3": 1,
"A": 2,
"F": 3,
"I": 1,
"R": 3,
"FAIR": 9
},
"maturity": {
"A": 2,
"F": 1,
"I": 1,
"R": 1,
"A1": 2,
"F1": 2,
"F2": 1,
"F3": 3,
"F4": 0,
"I1": 0,
"I2": 3,
"I3": 0,
"R1": 0,
"R1.1": 1,
"R1.2": 2,
"R1.3": 2,
"FAIR": 1.25
}
},
"results": [
{
"id": 1,
"metric_identifier": "FsF-F1-01D",
"metric_name": "Data is assigned a globally unique identifier.",
"metric_tests": {
"FsF-F1-01D-1": {
"metric_test_name": "Identifier is resolvable and follows a defined unique identifier syntax (IRI, URL)",
"metric_test_requirements": [
{
"modality": "any",
"required": null,
"tested_on": "https:\/\/f-uji.net\/vocab\/metadata\/property\/object_identifier",
"comment": "identifier can be given as user input",
"target": "https:\/\/f-uji.net\/vocab\/identifier"
}
],
"metric_test_score": {
"earned": 1,
"total": 1
},
"metric_test_maturity": 3,
"metric_test_status": "pass"
},
"FsF-F1-01D-2": {
"metric_test_name": "Identifier is not resolvable but follows an UUID or HASH type syntax",
"metric_test_requirements": [
{
"modality": "any",
"required": {
"name": [
"uuid",
"hash"
]
},
"tested_on": "https:\/\/f-uji.net\/vocab\/metadata\/property\/object_identifier",
"comment": "identifier can be given as user input",
"target": "https:\/\/f-uji.net\/vocab\/identifier\/unique"
}
],
"metric_test_score": {
"earned": 0,
"total": 0.5
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
}
},
"test_status": "pass",
"score": {
"earned": 1,
"total": 1
},
"maturity": 3,
"output": {
"guid": "https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml",
"guid_scheme": "url"
},
"test_debug": [
"INFO: Using idutils schemes to identify unique or persistent identifiers for metadata",
"INFO: Starting assessment on identifier: https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml",
"SUCCESS: Unique identifier schemes found ['url']",
"INFO: Finalized unique identifier scheme - url"
]
},
{
"id": 2,
"metric_identifier": "FsF-F1-02D",
"metric_name": "Data is assigned a persistent identifier.",
"metric_tests": {
"FsF-F1-02D-1": {
"metric_test_name": "Identifier follows a defined persistent identifier syntax",
"metric_test_requirements": [
{
"modality": "any",
"required": null,
"tested_on": "https:\/\/f-uji.net\/vocab\/metadata\/property\/object_identifier",
"comment": "identifier can be given as user input",
"target": "https:\/\/f-uji.net\/vocab\/identifier\/persistent"
}
],
"metric_test_score": {
"earned": 0,
"total": 0.5
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
},
"FsF-F1-02D-2": {
"metric_test_name": "Persistent identifier is resolvable",
"metric_test_requirements": [
{
"modality": null,
"required": null,
"tested_on": "https:\/\/f-uji.net\/vocab\/metadata\/property\/object_identifier",
"comment": "identifier has to resolve to a valid URI",
"target": "https:\/\/f-uji.net\/vocab\/identifier\/persistent"
}
],
"metric_test_score": {
"earned": 0,
"total": 1
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
}
},
"test_status": "fail",
"score": {
"earned": 0,
"total": 1
},
"maturity": 0,
"output": {
"persistent_identifiers": []
},
"test_debug": [
"INFO: Retrieving page -: https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml as text\/html, *\/*",
"INFO: PID schemes-based assessment supported by the assessment service - dict_keys(['ark', 'arxiv', 'bioproject', 'biosample', 'doi', 'ensembl', 'genome', 'gnd', 'handle', 'lsid', 'pmid', 'pmcid', 'purl', 'refseq', 'sra', 'uniprot', 'urn', 'identifiers.org', 'w3id'])",
"SUCCESS: Persistence identifier scheme -: None"
]
},
{
"id": 3,
"metric_identifier": "FsF-F2-01M",
"metric_name": "Metadata includes descriptive core elements (creator, title, data identifier, publisher, publication date, summary and keywords) to support data findability.",
"metric_tests": {
"FsF-F2-01M-1": {
"metric_test_name": "Metadata has been made available via common web methods",
"metric_test_requirements": [
{
"modality": "any",
"required": null,
"tested_on": null,
"comment": null,
"target": "https:\/\/f-uji.net\/vocab\/metadata\/offering_method"
}
],
"metric_test_score": {
"earned": 0.5,
"total": 0.5
},
"metric_test_maturity": 1,
"metric_test_status": "pass"
},
"FsF-F2-01M-2": {
"metric_test_name": "Core data citation metadata is available",
"metric_test_requirements": [
{
"modality": "all",
"required": {
"name": [
"creator",
"title",
"object_identifier",
"publication_date",
"publisher",
"object_type"
]
},
"tested_on": "https:\/\/f-uji.net\/vocab\/metadata\/property",
"comment": null,
"target": "https:\/\/f-uji.net\/vocab\/metadata\/property"
}
],
"metric_test_score": {
"earned": 0,
"total": 0.5
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
},
"FsF-F2-01M-3": {
"metric_test_name": "Core descriptive metadata is available",
"metric_test_requirements": [
{
"modality": "all",
"required": {
"name": [
"creator",
"title",
"object_identifier",
"publication_date",
"publisher",
"object_type",
"summary",
"keywords"
]
},
"tested_on": "https:\/\/f-uji.net\/vocab\/metadata\/property",
"comment": null,
"target": "https:\/\/f-uji.net\/vocab\/metadata\/property"
}
],
"metric_test_score": {
"earned": 0,
"total": 1
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
}
},
"test_status": "pass",
"score": {
"earned": 0.5,
"total": 2
},
"maturity": 1,
"output": {
"core_metadata_status": "some metadata",
"core_metadata_found": {
"title": "Alaska Ocean Observing System",
"publication_date": "2022-08-09",
"keywords": [
"Digitization",
"Scientific Publication"
],
"summary": "Dataset information available at\n<a href=http:\/\/www.arcodiv.org\/Database\/Data_overview.html target=_blank>http:\/\/www.arcodiv.org\/Database\/Data_overview.html<\/a>",
"publisher": [
"https:\/\/www.vliz.be",
"Flanders Marine Institute (VLIZ)"
]
},
"core_metadata_source": [
[
"XML_NEGOTIATED",
"content_negotiation"
]
]
},
"test_debug": [
"INFO: Trying to resolve input URL -: https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml",
"INFO: Content negotiation on https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml accept=text\/html, *\/*, status=200",
"INFO: Creating Cached response content",
"INFO: Found XML document!",
"INFO: Content type is text\/xml, therefore skipping Embedded metadata (microdata, RDFa) tests",
"WARNING: Skipped EMBEDDED metadata identification, no landing page URL or HTML content could be determined",
"INFO: Starting to identify EXTERNAL metadata through content negotiation or typed (signposting) links",
"INFO: Trying to retrieve XML metadata through content negotiation from URL -: https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml",
"INFO: Retrieving page -: https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml as application\/xml, text\/xml;q=0.5",
"INFO: Content negotiation on https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml accept=application\/xml, text\/xml;q=0.5, status=200",
"INFO: Creating Cached response content",
"INFO: Found XML document!",
"INFO: Trying to extract\/parse XML metadata from URL -: https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml",
"INFO: Found some XML properties, trying to identify (domain) specific format to parse",
"INFO: Identified EML XML based on root tag",
"INFO: Found some metadata in XML -: dict_keys(['title', 'object_identifier', 'publication_date', 'keywords', 'summary', 'publisher', 'license', 'language', 'object_content_identifier'])",
"SUCCESS: Found XML metadata through content negotiation-: dict_keys(['title', 'publication_date', 'keywords', 'summary', 'publisher', 'license', 'language', 'object_content_identifier'])",
"INFO: Trying to retrieve schema.org JSON-LD metadata through content negotiation from URL -: https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml",
"INFO: Retrieving page -: https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml as application\/ld+json",
"INFO: Content negotiation on https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml accept=application\/ld+json, status=200",
"INFO: Creating Cached response content",
"INFO: Found XML document!",
"INFO: Schema.org metadata through content negotiation UNAVAILABLE",
"INFO: Trying to retrieve RDF metadata through content negotiation from URL -: https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml",
"INFO: Retrieving page -: https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml as text\/turtle, application\/turtle, application\/x-turtle;q=0.8, application\/rdf+xml, text\/n3;q=0.9, text\/rdf+n3;q=0.9,application\/ld+json",
"INFO: Content negotiation on https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml accept=text\/turtle, application\/turtle, application\/x-turtle;q=0.8, application\/rdf+xml, text\/n3;q=0.9, text\/rdf+n3;q=0.9,application\/ld+json, status=200",
"INFO: Creating Cached response content",
"INFO: Found XML document!",
"INFO: Try to parse RDF from -: https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml as xml",
"WARNING: Failed to parse RDF -: https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml sequence item 0: expected str instance, NoneType found",
"INFO: Linked Data metadata UNAVAILABLE",
"INFO: Trying to retrieve datacite metadata",
"INFO: Retrieving page -: https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml as application\/vnd.datacite.datacite+json",
"INFO: Content negotiation on https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml accept=application\/vnd.datacite.datacite+json, status=200",
"INFO: Creating Cached response content",
"INFO: Found XML document!",
"INFO: Datacite metadata UNAVAILABLE",
"INFO: Type of object described by the metadata -: None",
"INFO: Testing if any metadata has been made available via common web standards",
"INFO: Found some descriptive metadata elements -: dict_keys(['title', 'publication_date', 'keywords', 'summary', 'publisher', 'license', 'language', 'object_content_identifier'])",
"WARNING: Not all required citation metadata elements exist, missing -: ['object_type', 'object_identifier', 'creator']",
"INFO: Will exclusively consider community specific metadata properties which are specified in metrics -: {'name': ['creator', 'title', 'object_identifier', 'publication_date', 'publisher', 'object_type', 'summary', 'keywords']}",
"WARNING: Not all required core descriptive metadata elements exist, missing -: ['object_type', 'object_identifier', 'creator']"
]
},
{
"id": 4,
"metric_identifier": "FsF-F3-01M",
"metric_name": "Metadata includes the identifier of the data it describes.",
"metric_tests": {
"FsF-F3-01M-1": {
"metric_test_name": "Metadata contains data content related information (file name, size, type)",
"metric_test_requirements": [
{
"modality": "all",
"required": [
"type",
"size"
],
"tested_on": "https:\/\/f-uji.net\/vocab\/metadata\/property\/object_content_identifier",
"comment": null,
"target": "https:\/\/f-uji.net\/vocab\/data\/property"
}
],
"metric_test_score": {
"earned": 0.5,
"total": 0.5
},
"metric_test_maturity": 1,
"metric_test_status": "pass"
},
"FsF-F3-01M-2": {
"metric_test_name": "Metadata contains a PID or URL which indicates the location of the downloadable data content",
"metric_test_requirements": [
{
"modality": "any",
"required": null,
"tested_on": "https:\/\/f-uji.net\/vocab\/metadata\/property\/object_content_identifier",
"comment": null,
"target": "https:\/\/f-uji.net\/vocab\/data\/property\/url"
}
],
"metric_test_score": {
"earned": 0.5,
"total": 0.5
},
"metric_test_maturity": 3,
"metric_test_status": "pass"
}
},
"test_status": "pass",
"score": {
"earned": 1,
"total": 1
},
"maturity": 3,
"output": {
"object_identifier_included": null,
"object_content_identifier_included": [
{
"content_identifier_included": {
"url": "http:\/\/www.arcodiv.org\/Database\/Data_overview.html"
}
}
]
},
"test_debug": [
"INFO: Found data links in MetadataFormats.XML metadata -: 1",
"SUCCESS: Number of object content identifier found -: 1"
]
},
{
"id": 5,
"metric_identifier": "FsF-F4-01M",
"metric_name": "Metadata is offered in such a way that it can be retrieved programmatically.",
"metric_tests": {
"FsF-F4-01M-1": {
"metric_test_name": "Metadata is given in a way major search engines can ingest it for their catalogues (JSON-LD, Dublin Core, RDFa)",
"metric_test_requirements": [
{
"modality": "any",
"required": {
"name": [
"dublin-core",
"schemaorg",
"dcat-data-catalog-vocabulary"
]
},
"tested_on": null,
"comment": null,
"target": "http:\/\/f-uji.net\/vocab\/metadata\/standard"
},
{
"modality": "any",
"required": {
"name": [
"html_embedding",
"microdata_rdfa"
]
},
"tested_on": null,
"comment": null,
"target": "http:\/\/f-uji.net\/vocab\/metadata\/offering_method"
}
],
"metric_test_score": {
"earned": 0,
"total": 1
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
},
"FsF-F4-01M-2": {
"metric_test_name": "Metadata is registered in major research data registries (DataCite)",
"metric_test_requirements": [],
"metric_test_score": {
"earned": 0,
"total": 1
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
}
},
"test_status": "fail",
"score": {
"earned": 0,
"total": 2
},
"maturity": 0,
"output": {
"search_mechanisms": []
},
"test_debug": [
"INFO: Will exclusively consider community specific metadata standards for FsF-F4-01M-1 which are specified in metrics -: ['dublin-core', 'schemaorg', 'dcat-data-catalog-vocabulary']",
"INFO: Will exclusively consider community specific metadata offering methods for FsF-F4-01M-1 which are specified in metrics -: ['html_embedding', 'microdata_rdfa']",
"WARNING: Metadata is NOT found through -: ['html_embedding', 'microdata_rdfa']",
"WARNING: Google Search Cache DB does not exist, see F-UJI installation instructions",
"INFO: Identifier not listed in Google Dataset Search cache -:['https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml']",
"INFO: Querying Mendeley Data API for -:https:\/\/www.eurobis.org\/imis?module=dataset&dasid=1998&show=eml",
"WARNING: Metadata is NOT found through registries considered by the assessment service -: ['DATACITE', 'MENDELEY_DATA', 'GOOGLE_DATASET']"
]
},
{
"id": 10,
"metric_identifier": "FsF-I1-01M",
"metric_name": "Metadata is represented using a formal knowledge representation language.",
"metric_tests": {
"FsF-I1-01M-1": {
"metric_test_name": "Parsable, structured metadata (JSON-LD, RDFa) is embedded in the landing page XHTML\/HTML code",
"metric_test_requirements": [
{
"modality": "any",
"required": {
"name": [
"RDF",
"JSON-LD",
"RDFa"
]
},
"tested_on": null,
"comment": null,
"target": "http:\/\/f-uji.net\/vocab\/metadata\/format"
},
{
"modality": "any",
"required": {
"name": [
"html_embedding",
"microdata_rdfa"
]
},
"tested_on": null,
"comment": null,
"target": "http:\/\/f-uji.net\/vocab\/metadata\/offering_method"
}
],
"metric_test_score": {
"earned": 0,
"total": 1
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
},
"FsF-I1-01M-2": {
"metric_test_name": "Parsable, graph data (RDF, JSON-LD) is accessible through content negotiation, typed links or sparql endpoint",
"metric_test_requirements": [
{
"modality": "any",
"required": {
"name": [
"RDF",
"JSON-LD",
"RDFa"
]
},
"tested_on": null,
"comment": null,
"target": "http:\/\/f-uji.net\/vocab\/metadata\/format"
},
{
"modality": "any",
"required": {
"name": [
"content_negotiation"
]
},
"tested_on": null,
"comment": null,
"target": "http:\/\/f-uji.net\/vocab\/metadata\/offering_method"
},
{
"modality": "any",
"required": {
"name": [
"sparql"
]
},
"tested_on": null,
"comment": null,
"target": "http:\/\/f-uji.net\/vocab\/metadata\/exchange_service"
}
],
"metric_test_score": {
"earned": 0,
"total": 1
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
}
},
"test_status": "fail",
"score": {
"earned": 0,
"total": 2
},
"maturity": 0,
"output": [],
"test_debug": [
"INFO: Check of structured data (RDF serialization) embedded in the data page",
"INFO: NO structured data (RDF serialization) embedded in the data page",
"INFO: Check if RDF-based typed link included",
"INFO: NO RDF-based typed link found",
"INFO: Check if RDF metadata available through content negotiation",
"INFO: NO RDF metadata available through content negotiation",
"WARNING: NO SPARQL endpoint found through re3data based on the object URI provided"
]
},
{
"id": 11,
"metric_identifier": "FsF-I2-01M",
"metric_name": "Metadata uses semantic resources",
"metric_tests": {
"FsF-I2-01M-1": {
"metric_test_name": "Vocabulary namespace URIs can be identified in metadata",
"metric_test_requirements": [
{
"modality": null,
"required": null,
"tested_on": null,
"comment": "The sheer existence of namespaces declared in XML or RDF files is checked here. This test is not scored",
"target": null
}
],
"metric_test_score": {
"earned": 0,
"total": 0
},
"metric_test_maturity": 1,
"metric_test_status": "pass"
},
"FsF-I2-01M-2": {
"metric_test_name": "Namespaces of known semantic resources can be identified in metadata",
"metric_test_requirements": [
{
"modality": "any",
"required": null,
"tested_on": null,
"comment": null,
"target": "http:\/\/f-uji.net\/vocab\/semantic_resource"
}
],
"metric_test_score": {
"earned": 1,
"total": 1
},
"metric_test_maturity": 3,
"metric_test_status": "pass"
}
},
"test_status": "pass",
"score": {
"earned": 1,
"total": 1
},
"maturity": 3,
"output": [
{
"namespace": "https:\/\/www.w3.org\/2001\/XMLSchema-instance",
"is_namespace_active": true
}
],
"test_debug": [
"INFO: Removing default namespaces from 5 vocabulary namespaces found in structured metadata",
"INFO: Default vocabulary namespace(s) excluded -: ['http:\/\/www.w3.org\/XML\/1998\/namespace']",
"INFO: Check if known namespace(s) are used in structured metadata (RDF, XML) which exist(s) in a LOD registry -: ['https:\/\/www.w3.org\/2001\/XMLSchema-instance', 'eml:\/\/ecoinformatics.org\/eml-2.1.1', 'https:\/\/www.dublincore.org\/specifications\/dublin-core\/dcmi-terms', 'eml:\/\/ecoinformatics.org\/eml-2.0.0']",
"SUCCESS: Namespace matches found -: ['https:\/\/www.w3.org\/2001\/XMLSchema-instance']",
"WARNING: Vocabulary namespace(s) or URIs specified but no match is found in LOD reference list (examples) -: ['eml:\/\/ecoinformatics.org\/eml-2.1.1', 'https:\/\/www.dublincore.org\/specifications\/dublin-core\/dcmi-terms', 'eml:\/\/ecoinformatics.org\/eml-2.0.0']"
]
},
{
"id": 12,
"metric_identifier": "FsF-I3-01M",
"metric_name": "Metadata includes links between the data and its related entities.",
"metric_tests": {
"FsF-I3-01M-1": {
"metric_test_name": "Related resources are explicitly mentioned in metadata",
"metric_test_requirements": [
{
"modality": "any",
"required": null,
"tested_on": "http:\/\/f-uji.net\/vocab\/metadata\/property\/related_resources",
"comment": "The presence of a (typed, default = related) related resource is checked, can be a string or URI",
"target": "http:\/\/f-uji.net\/vocab\/relation_type"
}
],
"metric_test_score": {
"earned": 0,
"total": 1
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
},
"FsF-I3-01M-2": {
"metric_test_name": "Related resources are indicated by machine readable links or identifiers",
"metric_test_requirements": [
{
"modality": null,
"required": null,
"tested_on": null,
"comment": "same as above but relations have to be machine readable\/actionable",
"target": null
}
],
"metric_test_score": {
"earned": 0,
"total": 1
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
}
},
"test_status": "fail",
"score": {
"earned": 0,
"total": 1
},
"maturity": 0,
"output": [],
"test_debug": [
"INFO: No related resource(s) found in Datacite metadata",
"WARNING: Could not identify related resources in metadata"
]
},
{
"id": 13,
"metric_identifier": "FsF-R1-01MD",
"metric_name": "Metadata specifies the content of the data.",
"metric_tests": {
"FsF-R1-01MD-1": {
"metric_test_name": "Minimal information about available data content is given in metadata",
"metric_test_requirements": [],
"metric_test_score": {
"earned": 0,
"total": 1
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
},
"FsF-R1-01MD-1a": {
"metric_test_name": "Resource type (e.g. dataset) is given in metadata",
"metric_test_requirements": [],
"metric_test_score": {
"earned": 0,
"total": 0
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
},
"FsF-R1-01MD-1b": {
"metric_test_name": "Information about data content (e.g. links) is given in metadata",
"metric_test_requirements": [],
"metric_test_score": {
"earned": 0,
"total": 0
},
"metric_test_maturity": null,
"metric_test_status": "pass"
},
"FsF-R1-01MD-2": {
"metric_test_name": "Verifiable data descriptors (file info, measured variables or observation types) are specified in metadata",
"metric_test_requirements": [],
"metric_test_score": {
"earned": 0,
"total": 1
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
},
"FsF-R1-01MD-2a": {
"metric_test_name": "File size and type information are specified in metadata",
"metric_test_requirements": [],
"metric_test_score": {
"earned": 0,
"total": 0
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
},
"FsF-R1-01MD-2b": {
"metric_test_name": "Measured variables or observation types are specified in metadata",
"metric_test_requirements": [],
"metric_test_score": {
"earned": 0,
"total": 0
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
},
"FsF-R1-01MD-3": {
"metric_test_name": "Data content matches file type and size specified in metadata",
"metric_test_requirements": [],
"metric_test_score": {
"earned": 0,
"total": 1
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
},
"FsF-R1-01MD-4": {
"metric_test_name": "Data content matches measured variables or observation types specified in metadata",
"metric_test_requirements": [],
"metric_test_score": {
"earned": 0,
"total": 1
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
}
},
"test_status": "fail",
"score": {
"earned": 0,
"total": 4
},
"maturity": 0,
"output": {
"object_type": null,
"data_content_descriptor": []
},
"test_debug": [
"INFO: Successfully parsed data object file using TIKA",
"INFO: File request status code -: 200",
"INFO: Succesfully parsed data file(s) -: http:\/\/www.arcodiv.org\/Database\/Data_overview.html",
"INFO: Object landing page accessible status -: None",
"WARNING: NO resource type specified",
"WARNING: NO info about file type available in given metadata -:",
"WARNING: NO measured variables found in metadata, skip 'measured_variable' test."
]
},
{
"id": 14,
"metric_identifier": "FsF-R1.1-01M",
"metric_name": "Metadata includes license information under which data can be reused.",
"metric_tests": {
"FsF-R1.1-01M-1": {
"metric_test_name": "Licence information is given in an appropriate metadata element",
"metric_test_requirements": [],
"metric_test_score": {
"earned": 1,
"total": 1
},
"metric_test_maturity": 1,
"metric_test_status": "pass"
},
"FsF-R1.1-01M-2": {
"metric_test_name": "Recognized licence is valid (community specific or registered at SPDX)",
"metric_test_requirements": [],
"metric_test_score": {
"earned": 0,
"total": 1
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
}
},
"test_status": "pass",
"score": {
"earned": 1,
"total": 2
},
"maturity": 1,
"output": [
{
"license": "This work is licensed under a Creative Commons Attribution (CC-BY) 4.0 License.",
"osi_approved": false,
"details_url": null
}
],
"test_debug": [
"INFO: License verification name through SPDX registry -: This work is licensed under a Creative Commons Attribution (CC-BY) 4.0 License.",
"WARNING: NO SPDX license representation (spdx url, osi_approved) found",
"SUCCESS: Found licence information in metadata",
"INFO: Will consider all SPDX licenses as community specific licenses for FsF-R1.1-01M"
]
},
{
"id": 6,
"metric_identifier": "FsF-A1-01M",
"metric_name": "Metadata contains access level and access conditions of the data.",
"metric_tests": {
"FsF-A1-01M-1": {
"metric_test_name": "Information about access restrictions or rights can be identified in metadata",
"metric_test_requirements": [
{
"modality": "any",
"required": null,
"tested_on": null,
"comment": null,
"target": "http:\/\/f-uji.net\/vocab\/metadata\/property\/access_level"
}
],
"metric_test_score": {
"earned": 0,
"total": 0.5
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
},
"FsF-A1-01M-3": {
"metric_test_name": "Data access information is indicated by (not machine readable) standard terms",
"metric_test_requirements": [
{
"modality": "any",
"required": null,
"tested_on": "http:\/\/f-uji.net\/vocab\/metadata\/property\/access_level",
"comment": "label and id",
"target": "http:\/\/f-uji.net\/vocab\/access_condition"
}
],
"metric_test_score": {
"earned": 0,
"total": 1
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
},
"FsF-A1-01M-2": {
"metric_test_name": "Data access information is machine readable",
"metric_test_requirements": [
{
"modality": "any",
"required": null,
"tested_on": "http:\/\/f-uji.net\/vocab\/metadata\/property\/access_level",
"comment": "identifier (namespace)",
"target": "http:\/\/f-uji.net\/vocab\/access_condition"
}
],
"metric_test_score": {
"earned": 0,
"total": 1
},
"metric_test_maturity": 0,
"metric_test_status": "fail"
}
},
"test_status": "fail",
"score": {
"earned": 0,
"total": 1
},
"maturity": 0,
"output": {
"access_level": null,
"access_details": []
},
"test_debug": [
"WARNING: NO access information is available in metadata",
"INFO: Skipping standard terms test since NO access information is available in metadata",
"INFO: Skipping standard terms test since NO access information is available in metadata",
"INFO: Skipping machine readablility test since NO access information is available in metadata",
"WARNING: Unable to determine the access level"
]
},
{
"id": 15,
"metric_identifier": "FsF-R1.2-01M",