-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttps___doi.org_10.17882_46219 .json
1855 lines (1855 loc) · 88.7 KB
/
https___doi.org_10.17882_46219 .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": "52d17a2ee1dde4067648da2ecb4c47d557fe8da3",
"request": {
"object_identifier": "https:\/\/doi.org\/10.17882\/46219 ",
"metadata_service_endpoint": "",
"metadata_service_type": "oai_pmh",
"test_debug": true,
"use_datacite": true,
"metric_version": "metrics_v0.5",
"normalized_object_identifier": "10.17882\/46219"
},
"resolved_url": "https:\/\/www.seanoe.org\/data\/00351\/46219\/",
"start_timestamp": "2024-07-19T11:02:38Z",
"end_timestamp": "2024-07-19T11:02:43Z",
"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": 3,
"F": 6,
"I": 4,
"R": 7,
"A1": 3,
"F1": 2,
"F2": 1,
"F3": 1,
"F4": 2,
"I1": 2,
"I2": 1,
"I3": 1,
"R1": 2,
"R1.1": 2,
"R1.2": 1,
"R1.3": 2,
"FAIR": 20
},
"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": 100,
"F": 85.71,
"I": 100,
"R": 70,
"A1": 100,
"F1": 100,
"F2": 50,
"F3": 100,
"F4": 100,
"I1": 100,
"I2": 100,
"I3": 100,
"R1": 50,
"R1.1": 100,
"R1.2": 50,
"R1.3": 100,
"FAIR": 83.33
},
"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": 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
},
"maturity": {
"A": 3,
"F": 3,
"I": 3,
"R": 2,
"A1": 3,
"F1": 3,
"F2": 2,
"F3": 3,
"F4": 3,
"I1": 3,
"I2": 3,
"I3": 3,
"R1": 2,
"R1.1": 3,
"R1.2": 2,
"R1.3": 2,
"FAIR": 2.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:\/\/doi.org\/10.17882\/46219",
"guid_scheme": "doi"
},
"test_debug": [
"INFO: Using idutils schemes to identify unique or persistent identifiers for metadata",
"INFO: Starting assessment on identifier: https:\/\/doi.org\/10.17882\/46219",
"SUCCESS: Unique identifier schemes found ['doi', 'url']",
"INFO: Finalized unique identifier scheme - doi"
]
},
{
"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.5,
"total": 0.5
},
"metric_test_maturity": 1,
"metric_test_status": "pass"
},
"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": 1,
"total": 1
},
"metric_test_maturity": 3,
"metric_test_status": "pass"
}
},
"test_status": "pass",
"score": {
"earned": 1,
"total": 1
},
"maturity": 3,
"output": {
"persistent_identifiers": [
{
"pid": "https:\/\/doi.org\/10.17882\/46219",
"pid_scheme": "doi",
"resolvable_status": true,
"resolved_url": "https:\/\/www.seanoe.org\/data\/00351\/46219\/"
}
]
},
"test_debug": [
"INFO: Retrieving page -: https:\/\/doi.org\/10.17882\/46219 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'])",
"INFO: Found PID which could be verified (does resolve properly) -: https:\/\/doi.org\/10.17882\/46219",
"SUCCESS: Persistence identifier scheme -: doi"
]
},
{
"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.5,
"total": 0.5
},
"metric_test_maturity": 2,
"metric_test_status": "pass"
},
"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": 1,
"total": 2
},
"maturity": 2,
"output": {
"core_metadata_status": "partial metadata",
"core_metadata_found": {
"title": "CORA, Coriolis Ocean Dataset for Reanalysis",
"object_type": [
"Dataset"
],
"publication_date": "2024-02",
"creator": [
"Szekely Tanguy",
"Pouliquen Sylvie",
"Gourrion Jerome",
"Reverdin Gilles",
"Tanguy Szekely",
"Jerome Gourrion",
"Gilles Reverdin",
"Sylvie Pouliquen",
"Gourrion, Jerome",
"Reverdin, Gilles",
"Szekely, Tanguy",
"Pouliquen, Sylvie"
],
"publisher": [
"https:\/\/www.seanoe.org\/",
"SEANOE",
{
"name": "SEANOE"
}
],
"summary": "the coriolis ocean dataset for reanalysis (hereafter \"cora\") product is a global dataset of in situ temperature and salinity measurements. the cora observations comes from many different sources collected by coriolis data centre in collaboration with the in situ thematic centre of the copernicus marine service (cmems instac). the observation integrated in the cora product have been acquired both by autonomous platforms (argo profilers, fixed moorings , gliders , drifters, sea mammals) , research or opportunity vessels (ctds, xbts, ferrybox). from the near real time cmems in situ thematic centre product validated on a daily and weekly basis for forecasting purposes, a scientifically validated product is created. it s a \"reference product\" updated on a yearly basis since 2007. this product has been controlled using an objective analysis (statistical tests) method and a visual quality control (qc). this qc procedure has been developed with the main objective to improve the quality of the dataset to the level required by the climate application and the physical ocean re-analysis activities. it provides t and s weekly gridded fields and individual profiles both on their original level with qc flags and interpolated level. the measured parameters, depending on the data source, are : temperature, salinity. the reference level of measurements is immersion (in meters) or pressure (in decibars). cora contains historical profiles extracted from the en.4 global t&s dataset, world ocean atlas, seadatanet, ices and other data aggregators .the last version of the cora product are also available freely from the copernicus web site : \tglobal ocean- cora- in-situ observations yearly delivery in delayed mode\tglobal ocean- delayed mode gridded cora- in-situ observations objective analysis in delayed mode",
"object_identifier": [
"https:\/\/doi.org\/10.17882\/46219"
]
},
"core_metadata_source": [
[
"SCHEMAORG_NEGOTIATED",
"content_negotiation"
],
[
"SCHEMAORG_EMBEDDED",
"html_embedding"
],
[
"DATACITE_JSON_NEGOTIATED",
"content_negotiation"
],
[
"DUBLINCORE_EMBEDDED",
"html_embedding"
]
]
},
"test_debug": [
"INFO: Trying to resolve input URL -: https:\/\/doi.org\/10.17882\/46219",
"INFO: Content negotiation on https:\/\/doi.org\/10.17882\/46219 accept=text\/html, *\/*, status=200",
"INFO: Creating Cached response content",
"INFO: Found HTML page!",
"INFO: Starting to analyse EMBEDDED metadata at -: https:\/\/www.seanoe.org\/data\/00351\/46219\/",
"INFO: Trying to identify EMBEDDED Microdata, OpenGraph or Schema.org -: https:\/\/www.seanoe.org\/data\/00351\/46219\/",
"INFO: Trying to retrieve schema.org JSON-LD metadata from html page",
"INFO: Try to parse RDF (JSON-LD) from -: landing page",
"INFO: Try to parse JSON-LD using JMESPath retrieved as dict from -: landing page",
"INFO: Trying to extract schema.org JSON-LD metadata from -: SCHEMAORG_EMBEDDED",
"INFO: Found schema.org JSON-LD which seems to be valid, based on the given context type -:['Dataset']",
"SUCCESS: Found schema.org JSON-LD metadata in html page -: dict_keys(['title', 'object_type', 'publication_date', 'creator', 'creator_first', 'creator_last', 'publisher', 'license', 'summary', 'object_identifier', 'access_free', 'related_resources', 'object_content_identifier'])",
"INFO: Trying to retrieve Dublin Core metadata from html page",
"INFO: Metadata property differs from metadata previously offered in a different formats -: summary: the coriolis ocean dataset for reanalysis (hereaft vs. the coriolis ocean dataset for reanalysis (hereaft",
"SUCCESS: Found DublinCore metadata -: dict_keys(['summary'])",
"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: 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: OpenGraph metadata UNAVAILABLE",
"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:\/\/www.seanoe.org\/data\/00351\/46219\/",
"INFO: Retrieving page -: https:\/\/www.seanoe.org\/data\/00351\/46219\/ as application\/xml, text\/xml;q=0.5",
"WARNING: Request failed, status code -: https:\/\/www.seanoe.org\/data\/00351\/46219\/, application\/xml, text\/xml;q=0.5 - 406",
"WARNING: No response received from -: https:\/\/www.seanoe.org\/data\/00351\/46219\/, application\/xml, text\/xml;q=0.5",
"INFO: Could not identify metadata properties in XML",
"INFO: Trying to retrieve XML metadata through content negotiation from URL -: https:\/\/doi.org\/10.17882\/46219",
"INFO: Retrieving page -: https:\/\/www.seanoe.org\/data\/00351\/46219\/ as application\/xml, text\/xml;q=0.5",
"WARNING: Request failed, status code -: https:\/\/www.seanoe.org\/data\/00351\/46219\/, application\/xml, text\/xml;q=0.5 - 406",
"WARNING: No response received from -: https:\/\/www.seanoe.org\/data\/00351\/46219\/, application\/xml, text\/xml;q=0.5",
"INFO: Could not identify metadata properties in XML",
"INFO: Trying to retrieve schema.org JSON-LD metadata through content negotiation from URL -: https:\/\/www.seanoe.org\/data\/00351\/46219\/",
"INFO: Retrieving page -: https:\/\/www.seanoe.org\/data\/00351\/46219\/ as application\/ld+json",
"WARNING: Request failed, status code -: https:\/\/www.seanoe.org\/data\/00351\/46219\/, application\/ld+json - 406",
"WARNING: No response received from -: https:\/\/www.seanoe.org\/data\/00351\/46219\/, application\/ld+json",
"INFO: Schema.org metadata through content negotiation UNAVAILABLE",
"INFO: Trying to retrieve schema.org JSON-LD metadata through content negotiation from URL -: https:\/\/doi.org\/10.17882\/46219",
"INFO: Retrieving page -: https:\/\/doi.org\/10.17882\/46219 as application\/ld+json",
"INFO: Content negotiation on https:\/\/doi.org\/10.17882\/46219 accept=application\/ld+json, status=200",
"INFO: Creating Cached response content",
"INFO: Try to parse RDF (JSON-LD) from -: https:\/\/data.crosscite.org\/10.17882%2F46219",
"INFO: Try to parse JSON-LD using JMESPath retrieved as dict from -: https:\/\/data.crosscite.org\/10.17882%2F46219",
"INFO: Trying to extract schema.org JSON-LD metadata from -: SCHEMAORG_NEGOTIATED",
"INFO: Found schema.org JSON-LD which seems to be valid, based on the given context type -:['Dataset']",
"SUCCESS: Found Schema.org metadata through content negotiation-: dict_keys(['title', 'object_type', 'publication_date', 'creator', 'creator_first', 'creator_last', 'publisher', 'license', 'summary', 'object_identifier', 'related_resources'])",
"INFO: Trying to retrieve RDF metadata through content negotiation from URL -: https:\/\/www.seanoe.org\/data\/00351\/46219\/",
"INFO: Retrieving page -: https:\/\/www.seanoe.org\/data\/00351\/46219\/ 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",
"WARNING: Request failed, status code -: https:\/\/www.seanoe.org\/data\/00351\/46219\/, 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 - 406",
"WARNING: No response received from -: https:\/\/www.seanoe.org\/data\/00351\/46219\/, 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: Retrieving page -: https:\/\/doi.org\/10.17882\/46219 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",
"WARNING: Request failed, status code -: https:\/\/doi.org\/10.17882\/46219, 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 - 422",
"WARNING: No response received from -: https:\/\/doi.org\/10.17882\/46219, 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: Linked Data metadata UNAVAILABLE",
"INFO: Trying to retrieve RDF metadata through content negotiation from URL -: https:\/\/doi.org\/10.17882\/46219",
"INFO: Retrieving page -: https:\/\/doi.org\/10.17882\/46219 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",
"WARNING: Request failed, status code -: https:\/\/doi.org\/10.17882\/46219, 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 - 422",
"WARNING: No response received from -: https:\/\/doi.org\/10.17882\/46219, 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: Linked Data metadata UNAVAILABLE",
"INFO: Trying to retrieve datacite metadata",
"INFO: Retrieving page -: https:\/\/doi.org\/10.17882\/46219 as application\/vnd.datacite.datacite+json",
"INFO: Content negotiation on https:\/\/doi.org\/10.17882\/46219 accept=application\/vnd.datacite.datacite+json, status=200",
"INFO: Creating Cached response content",
"SUCCESS: Found Datacite metadata -: dict_keys(['object_identifier', 'object_type', 'creator', 'creator_first', 'creator_last', 'publisher', 'title', 'publication_date', 'license', 'summary', 'related_resources', 'datacite_client', 'access_level'])",
"INFO: Type of object described by the metadata -: ['Dataset']",
"INFO: Testing if any metadata has been made available via common web standards",
"INFO: Found some descriptive metadata elements -: dict_keys(['title', 'object_type', 'publication_date', 'creator', 'publisher', 'license', 'summary', 'object_identifier', 'access_free', 'related_resources', 'object_content_identifier', 'datacite_client', 'access_level'])",
"SUCCESS: Found required core citation metadata elements -: ['creator', 'title', 'object_identifier', 'publication_date', 'publisher', 'object_type']",
"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 -: ['keywords']"
]
},
{
"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:\/\/www.seanoe.org\/data\/00351\/46219\/data\/108255.tar.gz",
"type": "application\/x-netcdf",
"size": 43599462572
}
},
{
"content_identifier_included": {
"url": "https:\/\/www.seanoe.org\/data\/00351\/46219\/data\/108256.tar.gz",
"type": "application\/x-netcdf",
"size": 18170962620
}
},
{
"content_identifier_included": {
"url": "https:\/\/www.seanoe.org\/data\/00351\/46219\/data\/108257.tar.gz",
"type": "application\/x-netcdf",
"size": 124422030131
}
}
]
},
"test_debug": [
"INFO: Found data links in MetadataFormats.JSONLD metadata -: 3",
"SUCCESS: Number of object content identifier found -: 3"
]
},
{
"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": 1,
"total": 1
},
"metric_test_maturity": 3,
"metric_test_status": "pass"
},
"FsF-F4-01M-2": {
"metric_test_name": "Metadata is registered in major research data registries (DataCite)",
"metric_test_requirements": [],
"metric_test_score": {
"earned": 1,
"total": 1
},
"metric_test_maturity": 2,
"metric_test_status": "pass"
}
},
"test_status": "pass",
"score": {
"earned": 2,
"total": 2
},
"maturity": 3,
"output": {
"search_mechanisms": [
{
"mechanism": "structured data",
"mechanism_info": [
"dublin-core via: html_embedding",
"schemaorg via: html_embedding"
]
},
{
"mechanism": "metadata registry",
"mechanism_info": [
"DataCite Registry"
]
}
]
},
"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']",
"SUCCESS: Metadata is offered in a way major search engines can ingest it -: ['dublin-core via: html_embedding', 'schemaorg via: html_embedding']",
"INFO: Querying DataCite API for -:10.17882\/46219",
"INFO: Found identifier in DataCite catalogue -:10.17882\/46219",
"INFO: Dataset already found in registry therefore skipping Google Dataset Search Cache query",
"INFO: Dataset already found in registry therefore skipping Mendeley Data query",
"SUCCESS: Metadata found through - metadata registry"
]
},
{
"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": "JSON-LD",
"source": "structured_data",
"is_metadata_found": true
},
{
"serialization_format": "JSON-LD",
"source": "content_negotiate",
"is_metadata_found": true
}
],
"test_debug": [
"INFO: Check of structured data (RDF serialization) embedded in the data page",
"INFO: JSON-LD (schema.org) serialization found in the data page - JSON-LD",
"SUCCESS: Found structured data (RDF serialization) 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: JSON-LD graph retrieved through content negotiation, content type - JSON-LD",
"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": "http:\/\/vocab.nerc.ac.uk\/collection\/P08\/current",
"is_namespace_active": true
}
],
"test_debug": [
"INFO: Removing default namespaces from 3 vocabulary namespaces found in structured metadata",
"INFO: Default vocabulary namespace(s) excluded -: ['http:\/\/purl.org\/dc\/elements\/1.1', 'http:\/\/schema.org']",
"INFO: Removing default namespaces from 1 vocabulary namespaces extracted from links found in metadata",
"INFO: Check if known namespace(s) are used in structured metadata (RDF, XML) which exist(s) in a LOD registry -: ['http:\/\/datacite.org\/schema']",
"INFO: Check if known namespace(s) are used in linked property URIs which exist(s) in a LOD registry -: ['http:\/\/vocab.nerc.ac.uk\/collection\/P08\/current']",
"SUCCESS: Namespace matches found -: ['http:\/\/vocab.nerc.ac.uk\/collection\/P08\/current']",
"WARNING: Vocabulary namespace(s) or URIs specified but no match is found in LOD reference list (examples) -: ['http:\/\/datacite.org\/schema']"
]
},
{
"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:\/\/www.seanoe.org\/",
"relation_type": "isPartOf"
},
{
"related_resource": "Tanguy Szekely, Jerome Gourrion, Sylvie Pouliquen, Gilles Reverdin (2024). CORA, Coriolis Ocean Dataset for Reanalysis. SEANOE. https:\/\/doi.org\/10.17882\/46219",
"relation_type": "references"
},
{
"related_resource": "https:\/\/www.seanoe.org\/",
"relation_type": "isPartOf"
},
{
"related_resource": "Tanguy Szekely, Jerome Gourrion, Sylvie Pouliquen, Gilles Reverdin (2024). CORA, Coriolis Ocean Dataset for Reanalysis. SEANOE. https:\/\/doi.org\/10.17882\/46219",
"relation_type": "references"
},
{
"related_resource": "https:\/\/www.seanoe.org\/",
"relation_type": "isPartOf"
},
{
"related_resource": "Tanguy Szekely, Jerome Gourrion, Sylvie Pouliquen, Gilles Reverdin (2024). CORA, Coriolis Ocean Dataset for Reanalysis. SEANOE. https:\/\/doi.org\/10.17882\/46219",
"relation_type": "references"
},
{
"related_resource": "https:\/\/www.seanoe.org\/",
"relation_type": "isPartOf"
},
{
"related_resource": "Tanguy Szekely, Jerome Gourrion, Sylvie Pouliquen, Gilles Reverdin (2024). CORA, Coriolis Ocean Dataset for Reanalysis. SEANOE. https:\/\/doi.org\/10.17882\/46219",
"relation_type": "references"
},
{
"related_resource": "https:\/\/doi.org\/10.17882\/42182",
"relation_type": "isBasisFor"
},
{
"related_resource": "10.17882\/42182",
"relation_type": "IsSupplementTo"
},
{
"related_resource": "10.17882\/45461",
"relation_type": "IsSupplementTo"
},
{
"related_resource": "10.17882\/89482",
"relation_type": "IsSupplementTo"
},
{
"related_resource": "10.17882\/77199",
"relation_type": "IsSupplementTo"
},
{
"related_resource": "10.17882\/50360",
"relation_type": "IsSupplementTo"
},
{
"related_resource": "10.1029\/2023ea002872",
"relation_type": "IsCitedBy"
},
{
"related_resource": "10.5194\/egusphere-2024-420",
"relation_type": "IsCitedBy"
},
{
"related_resource": "10.1016\/j.aosl.2024.100521",
"relation_type": "IsCitedBy"
},
{
"related_resource": "10.1007\/s12601-024-00150-5",
"relation_type": "IsCitedBy"
},
{
"related_resource": "10.5194\/egusphere-2023-3011",
"relation_type": "IsCitedBy"
},
{
"related_resource": "10.3390\/jmse12020221",
"relation_type": "IsCitedBy"
},
{
"related_resource": "10.5194\/sp-1-osr7-9-2023",
"relation_type": "IsCitedBy"
},
{
"related_resource": "10.5194\/gmd-16-211-2023",
"relation_type": "IsCitedBy"
},
{
"related_resource": "10.1029\/2023ea002901",
"relation_type": "IsCitedBy"
},
{
"related_resource": "10.1016\/j.dsr2.2023.105289",
"relation_type": "IsCitedBy"
},
{
"related_resource": "10.5194\/essd-15-2499-2023",
"relation_type": "IsCitedBy"
},
{
"related_resource": "10.13155\/49708",
"relation_type": "IsCitedBy"
},
{
"related_resource": "10.13155\/96673",
"relation_type": "IsCitedBy"
},
{
"related_resource": "10.13155\/99203",
"relation_type": "IsCitedBy"
},
{
"related_resource": "10.13155\/99213",
"relation_type": "IsCitedBy"
},
{
"related_resource": "10.1007\/s12517-022-10927-4",
"relation_type": "IsCitedBy"
},
{
"related_resource": "10.5194\/egusphere-2022-649",
"relation_type": "IsCitedBy"
},