We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Is there a possibility to add a path to a property mapping?
In my target RDF structure I have
ex:123 <https://dvl.be/ns/model#prop1> _:b0 . _:b0 <https://dvl.be/ns/model#prop2> "AAAB" .
which would correspond to a json structure (one-to-one) as follows
"prop1" : { "prop2" : "AAAB" },
But now I have the challenge that I would like to create a json structure:
"prop3" : "AAAB"
where thus the nesting in RDF is lifted.
It would be nice if I could map prop3 as follows in a path:
"prop3" : { "@id" : "<https://dvl.be/ns/model#prop1>/<https://dvl.be/ns/model#prop2>" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there a possibility to add a path to a property mapping?
In my target RDF structure I have
which would correspond to a json structure (one-to-one) as follows
But now I have the challenge that I would like to create a json structure:
where thus the nesting in RDF is lifted.
It would be nice if I could map prop3 as follows in a path:
The text was updated successfully, but these errors were encountered: