-
Notifications
You must be signed in to change notification settings - Fork 0
/
https___marineinfo.org_id_dataset_1998.json
1568 lines (1568 loc) · 82.1 KB
/
https___marineinfo.org_id_dataset_1998.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": "a67bd259c22b8a6f01f18fe608d68b263b49f09c",
"request": {
"object_identifier": "https:\/\/marineinfo.org\/id\/dataset\/1998",
"metadata_service_endpoint": "",
"metadata_service_type": "oai_pmh",
"test_debug": true,
"use_datacite": true,
"metric_version": "metrics_v0.5"
},
"resolved_url": "https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html",
"start_timestamp": "2024-07-19T10:04:13Z",
"end_timestamp": "2024-07-19T10:04:18Z",
"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": 4,
"R": 4,
"A1": 2,
"F1": 1,
"F2": 0.5,
"F3": 1,
"F4": 0,
"I1": 2,
"I2": 1,
"I3": 1,
"R1": 1,
"R1.1": 1,
"R1.2": 1,
"R1.3": 1,
"FAIR": 12.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": 100,
"R": 40,
"A1": 66.67,
"F1": 50,
"F2": 25,
"F3": 100,
"F4": 0,
"I1": 100,
"I2": 100,
"I3": 100,
"R1": 25,
"R1.1": 50,
"R1.2": 50,
"R1.3": 50,
"FAIR": 52.08
},
"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": 1,
"I2": 1,
"I3": 1,
"R1": 1,
"R1.1": 1,
"R1.2": 1,
"R1.3": 1,
"A": 2,
"F": 3,
"I": 3,
"R": 4,
"FAIR": 12
},
"maturity": {
"A": 2,
"F": 1,
"I": 3,
"R": 1,
"A1": 2,
"F1": 2,
"F2": 1,
"F3": 3,
"F4": 0,
"I1": 3,
"I2": 3,
"I3": 3,
"R1": 1,
"R1.1": 1,
"R1.2": 2,
"R1.3": 1,
"FAIR": 1.75
}
},
"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:\/\/marineinfo.org\/id\/dataset\/1998",
"guid_scheme": "url"
},
"test_debug": [
"INFO: Using idutils schemes to identify unique or persistent identifiers for metadata",
"INFO: Starting assessment on identifier: https:\/\/marineinfo.org\/id\/dataset\/1998",
"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:\/\/marineinfo.org\/id\/dataset\/1998 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": {
"object_type": [
"Other",
"dcat:Dataset",
"Dataset"
],
"title": "Alaska Ocean Observing System",
"object_identifier": "https:\/\/marineinfo.org\/id\/institute\/1998",
"summary": "Dataset information available at\r\n<a href=http:\/\/www.arcodiv.org\/Database\/Data_overview.html target=_blank>http:\/\/www.arcodiv.org\/Database\/Data_overview.html<\/a>",
"keywords": [
"Digitization",
"Scientific Publication"
]
},
"core_metadata_source": [
[
"SCHEMAORG_NEGOTIATED",
"content_negotiation"
],
[
"RDF_NEGOTIATED",
"content_negotiation"
],
[
"RDFA_EMBEDDED",
"microdata_rdfa"
],
[
"OPENGRAPH_EMBEDDED",
"html_embedding"
],
[
"RDF_SIGNPOSTING_LINKS",
"signposting"
]
]
},
"test_debug": [
"INFO: Trying to resolve input URL -: https:\/\/marineinfo.org\/id\/dataset\/1998",
"INFO: Content negotiation on https:\/\/marineinfo.org\/id\/dataset\/1998 accept=text\/html, *\/*, status=200",
"INFO: Creating Cached response content",
"INFO: Found HTML page!",
"INFO: Starting to analyse EMBEDDED metadata at -: https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html",
"INFO: Trying to identify EMBEDDED Microdata, OpenGraph or Schema.org -: https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html",
"INFO: Trying to retrieve schema.org JSON-LD metadata from html page",
"INFO: Try to parse RDF (JSON-LD) from -: landing page",
"INFO: schema.org JSON-LD metadata in html page UNAVAILABLE",
"INFO: Trying to retrieve Dublin Core metadata from html page",
"INFO: DublinCore metadata UNAVAILABLE",
"INFO: Trying to retrieve Microdata metadata from html page",
"INFO: Could not identify Microdata metadata",
"INFO: Trying to retrieve RDFa metadata from html page",
"INFO: Found RDF Graph which was sucessfully parsed",
"INFO: Trying to identify namespaces in RDF Graph",
"INFO: Could not find DCAT, schema.org or SKOS\/OWL metadata, continuing with generic SPARQL",
"INFO: Trying to query generic SPARQL on RDF, found triples: -:8",
"INFO: Found RDFa like triples but at least some of them seem to be XHTML or OpenGraph properties which are excluded",
"INFO: Could not find core metadata elements through generic SPARQL query on RDF but found 3 triples in the given graph",
"SUCCESS: Found RDFa metadata -: dict_keys(['object_type'])",
"INFO: Trying to retrieve Highwire and eprints metadata from html page",
"INFO: Highwire or eprints metadata UNAVAILABLE",
"INFO: Trying to retrieve OpenGraph metadata from html page",
"INFO: Found OpenGraph metadata-: dict_keys(['title', 'object_identifier', 'object_type'])",
"SUCCESS: Found OpenGraph metadata -: dict_keys(['title', 'object_identifier', 'object_type'])",
"INFO: Trying to identify Typed Links to data items in html page",
"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:\/\/marineinfo.org\/id\/dataset\/1998",
"INFO: Retrieving page -: https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html as application\/xml, text\/xml;q=0.5",
"INFO: Content negotiation on https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html accept=application\/xml, text\/xml;q=0.5, status=200",
"INFO: Creating Cached response content",
"INFO: Ignoring HTML response",
"INFO: Trying to extract\/parse XML metadata from URL -: https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html",
"INFO: Expected XML but content negotiation responded -: MetadataFormats.HTML",
"INFO: Could not identify metadata properties in XML",
"INFO: Trying to retrieve XML metadata through content negotiation from URL -: https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html",
"INFO: Retrieving page -: https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html as application\/xml, text\/xml;q=0.5",
"INFO: Content negotiation on https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html accept=application\/xml, text\/xml;q=0.5, status=200",
"INFO: Creating Cached response content",
"INFO: Ignoring HTML response",
"INFO: Trying to extract\/parse XML metadata from URL -: https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html",
"INFO: Expected XML but content negotiation responded -: MetadataFormats.HTML",
"INFO: Could not identify metadata properties in XML",
"INFO: Trying to retrieve schema.org JSON-LD metadata through content negotiation from URL -: https:\/\/marineinfo.org\/id\/dataset\/1998",
"INFO: Retrieving page -: https:\/\/marineinfo.org\/id\/dataset\/1998 as application\/ld+json",
"INFO: Content negotiation on https:\/\/marineinfo.org\/id\/dataset\/1998 accept=application\/ld+json, status=200",
"INFO: Creating Cached response content",
"INFO: Try to parse RDF (JSON-LD) from -: https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=json-ld",
"INFO: Try to parse JSON-LD using JMESPath retrieved as dict from -: https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=json-ld",
"INFO: Found more than one JSON-LD embedded in landing page try to identify Dataset or CreativeWork type",
"INFO: Trying to extract schema.org JSON-LD metadata from -: SCHEMAORG_NEGOTIATED",
"INFO: Found JSON-LD but record is not of type schema.org based on context -: None",
"INFO: Could not identify schema.org JSON-LD metadata using JMESPath, continuing with RDF graph processing",
"INFO: Try to parse JSON-LD using RDFLib retrieved as string from -: https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=json-ld",
"INFO: Found RDF Graph which was sucessfully parsed",
"INFO: Trying to identify namespaces in RDF Graph",
"INFO: RDF Graph seems to contain DCAT metadata elements",
"INFO: Trying to get some core domain agnostic (DCAT, DC, schema.org) metadata from RDF graph",
"INFO: Found some core domain agnostic (DCAT, DC, schema.org) metadata from RDF graph -: {'object_identifier': ['https:\/\/marineinfo.org\/id\/dataset\/1998'], 'title': 'Alaska Ocean Observing System', 'summary': 'Dataset information available at\\r\\n<a href=http:\/\/www.arcodiv.org\/Database\/Data_overview.html target=_blank>http:\/\/www.arcodiv.org\/Database\/Data_overview.html<\/a>', 'keywords': ['Digitization', 'Scientific Publication'], 'contributor': ['https:\/\/marineinfo.org\/id\/institute\/5836'], 'license': 'https:\/\/spdx.org\/licenses\/CC-BY-4.0.html', 'related_resources': [{'related_resource': 'https:\/\/marineinfo.org\/id\/collection\/619', 'relation_type': 'http:\/\/purl.org\/dc\/terms\/isPartOf'}], 'object_type': 'Dataset'}",
"SUCCESS: Found Schema.org metadata through content negotiation-: dict_keys(['object_identifier', 'title', 'summary', 'keywords', 'contributor', 'license', 'related_resources', 'object_type', 'object_content_identifier'])",
"INFO: Trying to retrieve schema.org JSON-LD metadata through content negotiation from URL -: https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html",
"INFO: Retrieving page -: https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html as application\/ld+json",
"INFO: Content negotiation on https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html accept=application\/ld+json, status=200",
"INFO: Creating Cached response content",
"INFO: Ignoring HTML response",
"INFO: Schema.org metadata through content negotiation UNAVAILABLE",
"INFO: Trying to retrieve RDF metadata through content negotiation from URL -: https:\/\/marineinfo.org\/id\/dataset\/1998",
"INFO: Retrieving page -: https:\/\/marineinfo.org\/id\/dataset\/1998 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:\/\/marineinfo.org\/id\/dataset\/1998 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: Try to parse RDF from -: https:\/\/marineinfo.org\/id\/dataset\/1998 as turtle",
"INFO: Found RDF Graph which was sucessfully parsed",
"INFO: Trying to identify namespaces in RDF Graph",
"INFO: RDF Graph seems to contain DCAT metadata elements",
"INFO: Trying to get some core domain agnostic (DCAT, DC, schema.org) metadata from RDF graph",
"INFO: Found some core domain agnostic (DCAT, DC, schema.org) metadata from RDF graph -: {'object_identifier': ['https:\/\/marineinfo.org\/id\/dataset\/1998'], 'title': 'Alaska Ocean Observing System', '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>', 'keywords': ['Digitization', 'Scientific Publication'], 'contributor': ['https:\/\/marineinfo.org\/id\/institute\/5836'], 'license': 'https:\/\/spdx.org\/licenses\/CC-BY-4.0.html', 'related_resources': [{'related_resource': 'https:\/\/marineinfo.org\/id\/collection\/619', 'relation_type': 'http:\/\/purl.org\/dc\/terms\/isPartOf'}], 'object_type': 'Dataset'}",
"SUCCESS: Found Linked Data metadata -: dict_keys(['object_identifier', 'title', 'summary', 'keywords', 'contributor', 'license', 'related_resources', 'object_type', 'object_content_identifier'])",
"INFO: Trying to retrieve RDF metadata through content negotiation from URL -: https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html",
"INFO: Retrieving page -: https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html 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:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html 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: Ignoring HTML response",
"INFO: Try to parse RDF from -: https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html as turtle",
"WARNING: Failed to parse RDF -: https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html exactly one of source, location, file or data must be given",
"INFO: Retrieving page -: https:\/\/marineinfo.org\/id\/dataset\/1998 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:\/\/marineinfo.org\/id\/dataset\/1998 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: Try to parse RDF from -: https:\/\/marineinfo.org\/id\/dataset\/1998 as turtle",
"INFO: Found RDF Graph which was sucessfully parsed",
"INFO: Trying to identify namespaces in RDF Graph",
"INFO: RDF Graph seems to contain DCAT metadata elements",
"INFO: Trying to get some core domain agnostic (DCAT, DC, schema.org) metadata from RDF graph",
"INFO: Found some core domain agnostic (DCAT, DC, schema.org) metadata from RDF graph -: {'object_identifier': ['https:\/\/marineinfo.org\/id\/dataset\/1998'], 'title': 'Alaska Ocean Observing System', '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>', 'keywords': ['Digitization', 'Scientific Publication'], 'contributor': ['https:\/\/marineinfo.org\/id\/institute\/5836'], 'license': 'https:\/\/spdx.org\/licenses\/CC-BY-4.0.html', 'related_resources': [{'related_resource': 'https:\/\/marineinfo.org\/id\/collection\/619', 'relation_type': 'http:\/\/purl.org\/dc\/terms\/isPartOf'}], 'object_type': 'Dataset'}",
"SUCCESS: Found Linked Data metadata -: dict_keys(['object_identifier', 'title', 'summary', 'keywords', 'contributor', 'license', 'related_resources', 'object_type', 'object_content_identifier'])",
"INFO: Trying to retrieve datacite metadata",
"INFO: Retrieving page -: https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html as application\/vnd.datacite.datacite+json",
"INFO: Content negotiation on https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html accept=application\/vnd.datacite.datacite+json, status=200",
"INFO: Creating Cached response content",
"INFO: Ignoring HTML response",
"INFO: Datacite metadata UNAVAILABLE",
"INFO: Found e.g. Typed Links in HTML Header linking to RDF Metadata -: (text\/turtle https:\/\/marineinfo.org\/id\/dataset\/1998)",
"INFO: Retrieving page -: https:\/\/marineinfo.org\/id\/dataset\/1998 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:\/\/marineinfo.org\/id\/dataset\/1998 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: Try to parse RDF from -: https:\/\/marineinfo.org\/id\/dataset\/1998 as turtle",
"INFO: Found RDF Graph which was sucessfully parsed",
"INFO: Trying to identify namespaces in RDF Graph",
"INFO: RDF Graph seems to contain DCAT metadata elements",
"INFO: Trying to get some core domain agnostic (DCAT, DC, schema.org) metadata from RDF graph",
"INFO: Found some core domain agnostic (DCAT, DC, schema.org) metadata from RDF graph -: {'object_identifier': ['https:\/\/marineinfo.org\/id\/dataset\/1998'], 'title': 'Alaska Ocean Observing System', '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>', 'keywords': ['Digitization', 'Scientific Publication'], 'contributor': ['https:\/\/marineinfo.org\/id\/institute\/5836'], 'license': 'https:\/\/spdx.org\/licenses\/CC-BY-4.0.html', 'related_resources': [{'related_resource': 'https:\/\/marineinfo.org\/id\/collection\/619', 'relation_type': 'http:\/\/purl.org\/dc\/terms\/isPartOf'}], 'object_type': 'Dataset'}",
"SUCCESS: Found Linked Data (RDF) metadata -: dict_keys(['object_identifier', 'title', 'summary', 'keywords', 'contributor', 'license', 'related_resources', 'object_type', 'object_content_identifier'])",
"INFO: Type of object described by the metadata -: ['Other', 'dcat:Dataset', 'Dataset']",
"INFO: Testing if any metadata has been made available via common web standards",
"INFO: Found some descriptive metadata elements -: dict_keys(['object_type', 'title', 'object_identifier', 'summary', 'keywords', 'contributor', 'license', 'related_resources', 'object_content_identifier'])",
"WARNING: Not all required citation metadata elements exist, missing -: ['publisher', 'publication_date', '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 -: ['publisher', 'publication_date', '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": "https:\/\/emodnet.ec.europa.eu\/geonetwork\/srv\/eng\/catalog.search#\/metadata\/6d617269-6e65-696e-666f-000000001998",
"type": "None",
"size": "None"
}
},
{
"content_identifier_included": {
"url": "https:\/\/www.eurobis.org\/toolbox\/en\/download\/occurrence\/dataset\/1998",
"type": "None",
"size": "None"
}
}
]
},
"test_debug": [
"INFO: Found data links in DCAT.org metadata -: [{'url': 'https:\/\/emodnet.ec.europa.eu\/geonetwork\/srv\/eng\/catalog.search#\/metadata\/6d617269-6e65-696e-666f-000000001998', 'type': 'None', 'size': 'None'}, {'url': 'https:\/\/www.eurobis.org\/toolbox\/en\/download\/occurrence\/dataset\/1998', 'type': 'None', 'size': 'None'}]",
"INFO: Found data links in MetadataFormats.JSONLD metadata -: 2",
"INFO: Found data links in DCAT.org metadata -: [{'url': 'https:\/\/emodnet.ec.europa.eu\/geonetwork\/srv\/eng\/catalog.search#\/metadata\/6d617269-6e65-696e-666f-000000001998', 'type': 'None', 'size': 'None'}, {'url': 'https:\/\/www.eurobis.org\/toolbox\/en\/download\/occurrence\/dataset\/1998', 'type': 'None', 'size': 'None'}]",
"INFO: Found data links in MetadataFormats.RDF metadata -: 2",
"INFO: Found data links in DCAT.org metadata -: [{'url': 'https:\/\/emodnet.ec.europa.eu\/geonetwork\/srv\/eng\/catalog.search#\/metadata\/6d617269-6e65-696e-666f-000000001998', 'type': 'None', 'size': 'None'}, {'url': 'https:\/\/www.eurobis.org\/toolbox\/en\/download\/occurrence\/dataset\/1998', 'type': 'None', 'size': 'None'}]",
"INFO: Found data links in MetadataFormats.RDF metadata -: 2",
"INFO: Found data links in DCAT.org metadata -: [{'url': 'https:\/\/emodnet.ec.europa.eu\/geonetwork\/srv\/eng\/catalog.search#\/metadata\/6d617269-6e65-696e-666f-000000001998', 'type': 'None', 'size': 'None'}, {'url': 'https:\/\/www.eurobis.org\/toolbox\/en\/download\/occurrence\/dataset\/1998', 'type': 'None', 'size': 'None'}]",
"INFO: Found data links in MetadataFormats.RDF metadata -: 2",
"SUCCESS: Number of object content identifier found -: 2"
]
},
{
"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:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html']",
"INFO: Querying Mendeley Data API for -:https:\/\/vliz.be\/en\/imis?module=dataset&dasid=1998&show=lod&by_conneg=1&format=html",
"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": 1,
"total": 1
},
"metric_test_maturity": 2,
"metric_test_status": "pass"
},
"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": 1,
"total": 1
},
"metric_test_maturity": 3,
"metric_test_status": "pass"
}
},
"test_status": "pass",
"score": {
"earned": 2,
"total": 2
},
"maturity": 3,
"output": [
{
"serialization_format": "RDFa",
"source": "structured_data",
"is_metadata_found": true
},
{
"serialization_format": "RDF",
"source": "typed_link",
"is_metadata_found": true
},
{
"serialization_format": "JSON-LD",
"source": "content_negotiate",
"is_metadata_found": true
},
{
"serialization_format": "RDF",
"source": "content_negotiate",
"is_metadata_found": true
}
],
"test_debug": [
"INFO: Check of structured data (RDF serialization) embedded in the data page",
"INFO: RDFa serialization found in the data page - RDFa",
"SUCCESS: Found structured data (RDF serialization) in the data page",
"INFO: Check if RDF-based typed link included",
"INFO: RDF graph retrieved via typed link, content type - RDF",
"INFO: Check if RDF metadata available through content negotiation",
"INFO: JSON-LD graph retrieved through content negotiation, content type - JSON-LD",
"INFO: RDF graph retrieved through content negotiation, content type - RDF",
"SUCCESS: Found RDF content through content negotiation or typed links"
]
},
{
"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:\/\/ogp.me\/ns",
"is_namespace_active": true
},
{
"namespace": "http:\/\/www.w3.org\/ns\/dcat",
"is_namespace_active": true
},
{
"namespace": "https:\/\/spdx.org\/licenses",
"is_namespace_active": true
},
{
"namespace": "http:\/\/purl.org\/dc\/dcmitype",
"is_namespace_active": true
}
],
"test_debug": [
"INFO: Removing default namespaces from 24 vocabulary namespaces found in structured metadata",
"INFO: Default vocabulary namespace(s) excluded -: ['http:\/\/www.w3.org\/2007\/05\/powder-s', 'http:\/\/purl.org\/dc\/terms', 'http:\/\/ogp.me\/ns', 'http:\/\/purl.org\/dc\/terms', 'https:\/\/schema.org', 'http:\/\/www.w3.org\/1999\/02\/22-rdf-syntax-ns', 'https:\/\/schema.org', 'http:\/\/purl.org\/dc\/elements\/1.1']",
"INFO: Check if known namespace(s) are used in structured metadata (RDF, XML) which exist(s) in a LOD registry -: ['https:\/\/www.eurobis.org\/toolbox\/en\/download\/occurrence\/dataset', 'https:\/\/ogp.me\/ns', 'https:', 'https:\/\/marineinfo.org\/id\/dataset\/id\/dataset', 'http:\/\/www.marineregions.org\/mrgid', 'http:\/\/www.w3.org\/ns\/dcat', 'https:\/\/spdx.org\/licenses', 'http:\/\/www.w3.org\/ns\/dcat', 'https:\/\/marineinfo.org\/id\/dataset', 'https:\/\/dev.twitter.com\/cards', 'https:\/\/cdn-icons-png.flaticon.com\/256\/9698', 'https:\/\/emodnet.ec.europa.eu\/geonetwork\/srv\/eng\/catalog.search', 'http:\/\/purl.org\/dc\/dcmitype', 'https:\/\/marineinfo.org\/id\/collection', 'https:\/\/marineinfo.org\/id\/dataset\/www.arcodiv.org\/Database', 'https:\/\/marineinfo.org\/id\/institute']",
"SUCCESS: Namespace matches found -: ['https:\/\/ogp.me\/ns', 'http:\/\/www.w3.org\/ns\/dcat', 'https:\/\/spdx.org\/licenses', 'http:\/\/purl.org\/dc\/dcmitype']",
"WARNING: Vocabulary namespace(s) or URIs specified but no match is found in LOD reference list (examples) -: ['https:\/\/www.eurobis.org\/toolbox\/en\/download\/occurrence\/dataset', 'https:', 'https:\/\/marineinfo.org\/id\/dataset\/id\/dataset', 'http:\/\/www.marineregions.org\/mrgid', 'https:\/\/marineinfo.org\/id\/dataset', 'https:\/\/dev.twitter.com\/cards', 'https:\/\/cdn-icons-png.flaticon.com\/256\/9698', 'https:\/\/emodnet.ec.europa.eu\/geonetwork\/srv\/eng\/catalog.search', 'https:\/\/marineinfo.org\/id\/collection', 'https:\/\/marineinfo.org\/id\/dataset\/www.arcodiv.org\/Database']"
]
},
{
"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": 1,
"total": 1
},
"metric_test_maturity": 2,
"metric_test_status": "pass"
},
"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": 1,
"total": 1
},
"metric_test_maturity": 3,
"metric_test_status": "pass"
}
},
"test_status": "pass",
"score": {
"earned": 1,
"total": 1
},
"maturity": 3,
"output": [
{
"related_resource": "https:\/\/marineinfo.org\/id\/collection\/619",
"relation_type": "http:\/\/purl.org\/dc\/terms\/isPartOf"
},
{
"related_resource": "https:\/\/marineinfo.org\/id\/collection\/619",
"relation_type": "http:\/\/purl.org\/dc\/terms\/isPartOf"
},
{
"related_resource": "https:\/\/marineinfo.org\/id\/collection\/619",
"relation_type": "http:\/\/purl.org\/dc\/terms\/isPartOf"
},
{
"related_resource": "https:\/\/marineinfo.org\/id\/collection\/619",
"relation_type": "http:\/\/purl.org\/dc\/terms\/isPartOf"
}
],
"test_debug": [
"SUCCESS: Number of related resources found in metadata -: 4"
]
},
{
"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": 1,
"total": 1
},
"metric_test_maturity": 1,
"metric_test_status": "pass"
},
"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": null,
"metric_test_status": "pass"
},
"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"