RDFNode node = qs.get("type");
if (node.isURIResource()) {
String ns = URIUtils.getNamespace(node.toString());
String prefix = NamespacesManager.getInstance().getPrefix(ns);
if (prefix == null) {
throw new MappingNotFoundException("namespace " + ns);
}
CURIE curie = new CURIE(prefix, URIUtils.getReference(node.toString()));
metaResource.addRdfType(curie);
}
}