@prefix rr: . @prefix rrf: . @prefix xsd: . @prefix ex: . <#TriplesMap1> rr:logicalTable [ rr:tableName "EMP" ]; rr:subjectMap [ rr:template "http://data.example.com/employee/{EMPNO}"; rr:class ex:Employee; ]; rr:predicateObjectMap [ rr:predicate ex:name; rr:objectMap [ rr:column "ENAME" ]; ]; rr:predicateObjectMap [ rr:predicate ex:test; rr:objectMap [ rr:datatype xsd:integer ; rrf:functionCall [ rrf:function <#foo> ; rrf:parameterBindings ( [ rr:column "EMPNO" ] ) ; ] ; ] ] . <#foo> rrf:functionName "foo" ; rrf:functionBody """ function foo(var1) { return var1 ; } """ ; . <#a> rr:objectMap <#b> . <#b> rr:column "ENAME" .