Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Implemented
-
3.0-incubating
-
None
Description
In ldpath it is possible to create a fieldmapping that is using an URI as field-name. The idea behind this is to create new properties based on ldpath constructs.
However, the serialization of such a fieldmapping is invalid and cannot be parsed:
INPUT (valid):
@prefix ex: <http://example.com/ldpath#>;
ex:bar = ex:title :: xsd:string;
Parsed and serialized (invalid):
@prefix ex: <http://example.com/ldpath#>
http://example.com/ldpath#bar = ex:title :: xsd:string;