Closed gmaze closed 3 months ago
Indeed, it seems that the NVS server has changed the ld+json output format convention !
Past convention was reporting something like this for a "concept"
{
"@id" : "http://vocab.nerc.ac.uk/collection/R01/current/BTRAJ/",
"@type" : "skos:Concept",
"identifier" : "SDN:R01::BTRAJ",
"date" : "2020-04-04 15:05:33.0",
"dc:identifier" : "SDN:R01::BTRAJ",
"authoredOn" : "2020-04-04 15:05:33.0",
"hasCurrentVersion" : "http://vocab.nerc.ac.uk/collection/R01/current/BTRAJ/1/",
"version" : "1",
"inDataset" : "http://vocab.nerc.ac.uk/.well-known/void",
"deprecated" : "false",
"versionInfo" : "1",
"altLabel" : "BTRAJ",
"definition" : {
"@language" : "en",
"@value" : "Argo float trajectory file containing CTD pressure data and data from one or more biogeochemical (BGC) parameters (dissolved oxygen, nitrate, pH, chlorophyll-a, particle backscatter, irradiance)."
},
"notation" : "SDN:R01::BTRAJ",
"note" : {
"@language" : "en",
"@value" : "accepted"
},
"prefLabel" : {
"@language" : "en",
"@value" : "B-Argo trajectory"
}
while the new, current, server returns:
{
"@id": "http://vocab.nerc.ac.uk/collection/R01/current/BTRAJ/",
"pav:authoredOn": "2020-04-04 15:05:33.0",
"pav:hasCurrentVersion": {
"@id": "http://vocab.nerc.ac.uk/collection/R01/current/BTRAJ/1/"
},
"dce:identifier": "SDN:R01::BTRAJ",
"pav:version": "1",
"skos:notation": "SDN:R01::BTRAJ",
"skos:altLabel": "BTRAJ",
"dc:date": "2020-04-04 15:05:33.0",
"owl:versionInfo": "1",
"skos:prefLabel": {
"@language": "en",
"@value": "B-Argo trajectory"
},
"dc:identifier": "SDN:R01::BTRAJ",
"skos:note": {
"@language": "en",
"@value": "accepted"
},
"owl:deprecated": "false",
"void:inDataset": {
"@id": "http://vocab.nerc.ac.uk/.well-known/void"
},
"skos:definition": {
"@language": "en",
"@value": "Argo float trajectory file containing CTD pressure data and data from one or more biogeochemical (BGC) parameters (dissolved oxygen, nitrate, pH, chlorophyll-a, particle backscatter, irradiance)."
},
"@type": "skos:Concept"
},
All entries now have a preffix like pav:
, dce:
, skos:
, dc:
,owl:
and void:
Reported on NVS repo here: https://github.com/nvs-vocabs/ArgoVocabs/issues/91
Discussed in https://github.com/euroargodev/argopy/discussions/376