I'm converting a JSON-LD input to RDF using Jena: Model m = ModelFactory.createDefaultModel; String str_reader = new StringReader(json.noSpaces) RDFDataMgr.read(m, str_reader, "", RDFFormat.JSONLD.getLang)
I want to be able to have a custom serializer for String Literals. My end goal is to convert a plain String literal to a xsd:date or xsd:dateTime Literal whenever a desired format is found. I know this is handled by jsonld-java which in turn relies on jackson. Is there anyone who can give me a hint on how to add this type of custom serialization?
