Error id: _:b7, _:b11
You have dcat:theme: "emissies". The report shows two different failures for that same value:
- _:b7 - it must be an instance of skos:Concept
- _:b11 - it must have node kind BlankNodeOrIRI
"emissies" is a literal string. The shape expects a resource node, not a string, and specifically a resource that is a skos:Concept. In this example you only added one dcat:theme, but if you develop a connector to call the AgroPortal Annotator API for your dcat:keywords, you could get more dcat:themes, as in my example below.
Fix:
"dcat:theme": {
"@id": "http://aims.fao.org/aos/agrovoc/c_537c8433",
"@type": "skos:Concept",
"skos:prefLabel": {
"@language": "en",
"@value": "emissions from agriculture"
}
},
"dcat:theme": {
"@id": "http://aims.fao.org/aos/agrovoc/c_34841",
"@type": "skos:Concept",
"skos:prefLabel": {
"@language": "en",
"@value": "greenhouse gases"
}
},
"dcat:theme": {
"@id": "http://aims.fao.org/aos/agrovoc/c_1665",
"@type": "skos:Concept",
"skos:prefLabel": {
"@language": "en",
"@value": "climate"
}
}
Error id: _:b7, _:b11
You have
dcat:theme: "emissies". The report shows two different failures for that same value:"emissies" is a literal string. The shape expects a resource node, not a string, and specifically a resource that is a skos:Concept. In this example you only added one dcat:theme, but if you develop a connector to call the AgroPortal Annotator API for your dcat:keywords, you could get more dcat:themes, as in my example below.
Fix: