Output literal datatypes for anyURI types.

This commit is contained in:
Jim Balhoff 2023-02-27 13:40:01 -05:00
parent b0daf66672
commit 13fbf16daa
1 changed files with 2 additions and 0 deletions

View File

@ -505,6 +505,8 @@ public class TurtleParser extends ParserBase {
xst = "^^xsd:decimal";
else if (type.equals("base64Binary"))
xst = "^^xsd:base64Binary";
else if (type.equals("canonical") || type.equals("oid") || type.equals("uri") || type.equals("url") || type.equals("uuid"))
xst = "^^xsd:anyURI";
else if (type.equals("instant"))
xst = "^^xsd:dateTime";
else if (type.equals("time"))