We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given the following configuration in the Function tab:
The following RML file is generated:
<#Divide> a rr:TriplesMap; a fnml:FunctionTermMap; rr:termType rr:IRI; fnml:functionValue [ rml:logicalSource [ rml:source "source.csv"; rml:referenceFormulation ql:CSV; ]; rr:predicateObjectMap [ rr:predicate fno:executes ; rr:objectMap rr:constant ex:function ]; rr:predicateObjectMap [ rr:predicate zin:p_dec_a ; rr:objectMap rml:reference [ "omvang" ] ]; rr:predicateObjectMap [ rr:predicate zin:p_dec_b ; rr:objectMap rr:constant [ "36" ] ]; ] .
I believe this should be:
<#Divide> a rr:TriplesMap; a fnml:FunctionTermMap; rr:termType rr:IRI; fnml:functionValue [ rml:logicalSource [ rml:source "source.csv"; rml:referenceFormulation ql:CSV; ]; rr:predicateObjectMap [ rr:predicate fno:executes ; rr:objectMap [ rr:constant ex:function ] ]; rr:predicateObjectMap [ rr:predicate zin:p_dec_a ; rr:objectMap [ rml:reference "omvang" ] ]; rr:predicateObjectMap [ rr:predicate zin:p_dec_b ; rr:objectMap [ rr:constant "36" ] ]; ] .
Notice the difference in the use of brackets in lines following rr:objectMap (three times, line numbers 13, 17 and 21)
The text was updated successfully, but these errors were encountered:
anaigmo
No branches or pull requests
Given the following configuration in the Function tab:
The following RML file is generated:
I believe this should be:
Notice the difference in the use of brackets in lines following rr:objectMap (three times, line numbers 13, 17 and 21)
The text was updated successfully, but these errors were encountered: