Skip to content

Commit

Permalink
12d-XML - fix invalid XML file and mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
pmaria authored and DylanVanAssche committed Mar 5, 2024
1 parent da8bff9 commit 8ed60fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test-cases/RMLTC0012d-XML/mapping.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
rml:iterator "/Persons/Person";
rml:referenceFormulation rml:XPath;
rml:source [ a rml:RelativePathSource;
rml:path "persons.json"
rml:path "persons.xml"
]
];
rml:predicateObjectMap [
Expand Down
6 changes: 3 additions & 3 deletions test-cases/RMLTC0012d-XML/persons.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
<Persons>
<Person>
<fname>Bob</fname>
<lname>Smith></lname>
<lname>Smith</lname>
<amount>30</amount>
</Person>
<Person>
<fname>Sue</fname>
<lname>Jones></lname>
<lname>Jones</lname>
<amount>20</amount>
</Person>
<Person>
<fname>Bob</fname>
<lname>Smith></lname>
<lname>Smith</lname>
<amount>30</amount>
</Person>
</Persons>

0 comments on commit 8ed60fa

Please sign in to comment.