Copyright © 2024-2025 the Contributors to the RML-Core: Test Cases Specification, published by the Knowledge Graph Construction Community Group under the W3C Community Contributor License Agreement (CLA). A human-readable summary is available.
This document defines the RML-Core test cases to the determine the RML-Core specification conformance of tools.
This specification was published by the Knowledge Graph Construction Community Group. It is not a W3C Standard nor is it on the W3C Standards Track. Please note that under the W3C Community Contributor License Agreement (CLA) there is a limited opt-out and other conditions apply. Learn more about W3C Community and Business Groups.
GitHub Issues are preferred for discussion of this specification.
This document defines the RML-Core test cases, consisting of a collection of test case documents (input and expected output). The purpose of the test cases is to determine the conformance of tools that execute RML rules to the RML-Core specification.
The test cases are semantically described for re-usability and shareability following the W3C Test case description.
Each test:Testcase
as the following properties:
dcterms:identifier
: unique ID of the test case.rmltest:hasError
: if an error of the RML Processor is expected or not.rmltest:input
: One or more input data of the test case.rmltest:output
: One or more output data of the test case.rmltest:inputFormat
: the input data format.rmltest:outputFormat
: the output data format.rmltest:mappingDocument
: the RML mapping rules in Turtle.This section describes the RML-Core test cases. These descriptions are also available as RDF.
The files are available on GitHub in the folder test-cases
.
Each test case is contained in a single folder, containing three types of files:
mapping.ttl
, in the Turtle format.Title: "one table, one column, zero rows"
Description: "Tests if an empty table produces an empty RDF graph"
Error expected? No
Input
{
"students": []
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:template "http://example.com/{$.Name}"
] .
Output
# empty database
Title: "One column mapping, subject URI generation by using rml:template"
Description: "Tests: (1) one column mapping; (2) subject URI generation by using rml:template; (3) one column to one property"
Error expected? No
Input
{
"students": [{
"Name":"Venus"
}]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate foaf:name
];
rml:subjectMap <http://example.com/base/#NameSubjectMap> .
<http://example.com/base/#NameSubjectMap> rml:template "http://example.com/{$.Name}" .
Output
<http://example.com/Venus> <http://xmlns.com/foaf/0.1/name> "Venus" .
Title: "One column mapping, generation of a BlankNode subject by using rml:termType"
Description: "Tests: (1) one column mapping; (2) generation of a BlankNode subject by using rml:termType; (3) one column to one property"
Error expected? No
Input
{
"students": [{
"Name":"Venus"
}]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:template "{$.Name}";
rml:termType rml:BlankNode
] .
Output
_:Venus <http://xmlns.com/foaf/0.1/name> "Venus" .
Title: "Two columns mapping, generation of a subject URI by the concatenation of two column values"
Description: "Tests: (1) two column mapping, no primary key; (2) subject URI generated by the concatenation of two column values; (3) one column to one property"
Error expected? No
Input
{
"students": [{
"ID": 10,
"Name":"Venus"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.ID"
];
rml:predicate ex:id
], [
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:class foaf:Person;
rml:template "http://example.com/{$.ID}/{$.Name}"
] .
Output
<http://example.com/10/Venus> <http://xmlns.com/foaf/0.1/name> "Venus" .
<http://example.com/10/Venus> <http://example.com/id> "10" .
<http://example.com/10/Venus> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
Title: "Two columns mapping, generation of a BlankNode subject by using rml:template and rml:termType"
Description: "Tests: (1) two column mapping, no primary key; (2) generation of a BlankNode subject by using rml:template; (3) one column to one property"
Error expected? No
Input
{
"students": [{
"ID": 10,
"Name":"Venus"
}]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:template "students{$.ID}";
rml:termType rml:BlankNode
] .
Output
_:students10 <http://xmlns.com/foaf/0.1/name> "Venus" .
Title: "Two columns mapping, an undefined rml:path"
Description: "Tests the presence of an undefined rml:path"
Error expected? Yes
Input
{
"students": [{
"ID": 10,
"Name":"Venus"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student2.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.IDs"
];
rml:predicate ex:id
];
rml:subjectMap [
rml:template "http://example.com/{$.ID}/{$.Name}"
] .
Title: "Two columns mapping, invalid JSONPath"
Description: "Test the presence of an invalid JSONPath"
Error expected? Yes
Input
{
"students": [{
"ID": 10,
"Name":"Venus"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student2.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.IDs"
];
rml:predicate ex:id
];
rml:subjectMap [
rml:template "http://example.com/{$.ID}/{$.Name}"
] .
Title: "Three columns mapping, by using a rml:template to produce literal"
Description: "Tests: (1) three column mapping; and (2) the use of rml:template to produce literal"
Error expected? No
Input
{
"students": [{
"ID": 10,
"FirstName":"Venus",
"LastName":"Williams"
}]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:template "{$.FirstName} {$.LastName}";
rml:termType rml:Literal
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:template "http://example.com/Student{$.ID}"
] .
Output
<http://example.com/Student10> <http://xmlns.com/foaf/0.1/name> "Venus Williams" .
Title: "Two column mapping, from one row table to two different triples"
Description: "Tests: (1) two column mapping, (2) subject URI generated by a column value; (3) from one row table to two different triples (4) typing by using rml:class"
Error expected? No
Input
{
"students": [{
"Student": "Venus",
"Sport":"Tennis"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student_sport.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.Student"
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:class ex:Student;
rml:template "http://example.com/{$.Student}"
] .
<http://example.com/base/TriplesMap2> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student_sport.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.Sport"
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:class ex:Sport;
rml:template "http://example.com/{$.Sport}"
] .
Output
<http://example.com/Venus> <http://xmlns.com/foaf/0.1/name> "Venus" .
<http://example.com/Venus> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.com/Student> .
<http://example.com/Tennis> <http://xmlns.com/foaf/0.1/name> "Tennis" .
<http://example.com/Tennis> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.com/Sport> .
Title: "One column mapping, presence of rml:termType rml:Literal on rml:subjectMap"
Description: "Tests: (1) one column mapping (2) the presence of rml:termType rml:Literal on rml:subjectMap, which is invalid"
Error expected? Yes
Input
{
"students": [{
"Name":"Venus"
}]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:template "http://example.com/{$.Name}";
rml:termType rml:Literal
] .
Title: "Typing of resources"
Description: "Tests the typing of resources"
Error expected? No
Input
{
"persons": [
{
"fname": "Bob",
"lname": "Smith",
"amount": "30.0E0"
},
{
"fname": "Sue",
"lname": "Jones",
"amount": "20.0E0"
},
{
"fname": "Bob",
"lname": "Smith",
"amount": "30.0E0"
}
]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.persons[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "ious.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.amount"
];
rml:predicate ex:owes
];
rml:subjectMap [
rml:class foaf:Person;
rml:template "http://example.com/{$.fname};{$.lname}"
] .
Output
<http://example.com/Bob;Smith> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://example.com/Bob;Smith> <http://example.com/owes> "30.0E0" .
<http://example.com/Sue;Jones> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://example.com/Sue;Jones> <http://example.com/owes> "20.0E0" .
Title: "Use of rml:constant in rml:subjectMap, rml:predicateMap, rml:objectMap and rml:graphMap"
Description: "Tests the use of rml:constant in rml:subjectMap, rml:predicateMap, rml:objectMap and rml:graphMap"
Error expected? No
Input
{
"students": [{
"ID": 10,
"FirstName":"Venus",
"LastName":"Williams"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:constant "Bad Student"
];
rml:predicateMap [
rml:constant ex:description
]
];
rml:subjectMap [
rml:constant ex:BadStudent;
rml:graphMap [
rml:constant <http://example.com/graph/student>
]
] .
Output
<http://example.com/BadStudent> <http://example.com/description> "Bad Student" <http://example.com/graph/student> .
Title: "Typing resources by relying on rdf:type predicate"
Description: "Tests the typing resources by relying on rdf:type predicate"
Error expected? No
Input
{
"students": [{
"ID": 10,
"FirstName":"Venus",
"LastName":"Williams"
}]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:object foaf:Person;
rml:predicate rdf:type
];
rml:subjectMap [
rml:template "http://example.com/Student/{$.ID}/{$.FirstName}"
] .
Output
<http://example.com/Student/10/Venus> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
Title: "Assigning triples to Named Graphs"
Description: "Tests the generation of triples to a named graph"
Error expected? No
Input
{
"students": [{
"ID": 10,
"FirstName":"Venus",
"LastName":"Williams"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:object foaf:Person;
rml:predicate rdf:type
], [
rml:objectMap [
rml:reference "$.FirstName"
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:graph ex:PersonGraph;
rml:template "http://example.com/Student/{$.ID}/{$.FirstName}"
] .
Output
<http://example.com/Student/10/Venus> <http://xmlns.com/foaf/0.1/name> "Venus" <http://example.com/PersonGraph> .
<http://example.com/Student/10/Venus> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://example.com/PersonGraph> .
Title: "One row mapping, using rml:class"
Description: "Tests subjectmap with more than one class IRIs, rml:class"
Error expected? No
Input
{
"students": [{
"ID": 10,
"FirstName":"Venus",
"LastName":"Williams"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.ID"
];
rml:predicate ex:id
], [
rml:objectMap [
rml:reference "$.FirstName"
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:class ex:Student, foaf:Person;
rml:template "http://example.com/Student/{$.ID}/{$.FirstName}"
] .
Output
<http://example.com/Student/10/Venus> <http://xmlns.com/foaf/0.1/name> "Venus" .
<http://example.com/Student/10/Venus> <http://example.com/id> "10" .
<http://example.com/Student/10/Venus> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://example.com/Student/10/Venus> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.com/Student> .
Title: "One column mapping, specifying an rml:predicateObjectMap with rdf:type"
Description: "Tests subjectmap with an alternative of having rml:class, i.e., by specifying an rml:predicateObjectMap with predicate rdf:type"
Error expected? No
Input
{
"students": [{
"ID": 10,
"FirstName":"Venus",
"LastName":"Williams"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:object foaf:Person;
rml:predicate rdf:type
], [
rml:object ex:Student;
rml:predicate rdf:type
], [
rml:objectMap [
rml:reference "$.ID"
];
rml:predicate ex:id
], [
rml:objectMap [
rml:reference "$.FirstName"
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:template "http://example.com/Student/{$.ID}/{$.FirstName}"
] .
Output
<http://example.com/Student/10/Venus> <http://xmlns.com/foaf/0.1/name> "Venus" .
<http://example.com/Student/10/Venus> <http://example.com/id> "10" .
<http://example.com/Student/10/Venus> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://example.com/Student/10/Venus> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.com/Student> .
Title: "One column mapping, using rml:graphMap and rml:class"
Description: "Tests subjectmap with rml:graphMap and rml:class"
Error expected? No
Input
{
"students": [{
"ID": 10,
"Name":"Venus"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.ID"
];
rml:predicate ex:id
], [
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:class foaf:Person;
rml:graph ex:PersonGraph;
rml:template "http://example.com/Student/{$.ID}/{$.Name}"
] .
Output
<http://example.com/Student/10/Venus> <http://example.com/id> "10" <http://example.com/PersonGraph> .
<http://example.com/Student/10/Venus> <http://xmlns.com/foaf/0.1/name> "Venus" <http://example.com/PersonGraph> .
<http://example.com/Student/10/Venus> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://example.com/PersonGraph> .
Title: "One column mapping, using rml:graphMap and specifying an rml:predicateObjectMap with rdf:type"
Description: "Tests subjectmap with rml:graphMap and specifying an rml:predicateObjectMap with predicate rdf:type"
Error expected? No
Input
{
"students": [{
"ID": 10,
"FirstName":"Venus",
"LastName":"Williams"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:object foaf:Person;
rml:predicate rdf:type
], [
rml:objectMap [
rml:reference "$.ID"
];
rml:predicate ex:id
], [
rml:objectMap [
rml:reference "$.FirstName"
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:graph ex:PersonGraph;
rml:template "http://example.com/Student/{$.ID}/{$.FirstName}"
] .
Output
<http://example.com/Student/10/Venus> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://example.com/PersonGraph> .
<http://example.com/Student/10/Venus> <http://xmlns.com/foaf/0.1/name> "Venus" <http://example.com/PersonGraph> .
<http://example.com/Student/10/Venus> <http://example.com/id> "10" <http://example.com/PersonGraph> .
Title: "Assigning triples to the default graph"
Description: "Tests the generation of triples to the default graph"
Error expected? No
Input
{
"students": [{
"ID": 10,
"FirstName":"Venus",
"LastName":"Williams"
}]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.FirstName"
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:graph rml:defaultGraph;
rml:template "http://example.com/Student/{$.ID}/{$.FirstName}"
] .
Output
<http://example.com/Student/10/Venus> <http://xmlns.com/foaf/0.1/name> "Venus" .
Title: "Assigning triples to a non-IRI named graph"
Description: "Tests the generation of triples to a non-IRI named graph, which is an error"
Error expected? Yes
Input
{
"students": [{
"ID": 10,
"FirstName":"Venus",
"LastName":"Williams"
}]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.FirstName"
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:graphMap [
rml:reference "$.ID";
rml:termType rml:Literal
];
rml:template "http://example.com/Student/{$.ID}/{$.FirstName}"
] .
Title: "Generation of triples to a target graph by using rml:graphMap and rml:template"
Description: "Test that results of the mapping can be directed to a target graph by using rml:graphMap and rml:template"
Error expected? No
Input
{
"students": [{
"ID": 10,
"Name":"Venus Williams",
"Sport": "Tennis"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:object foaf:Person;
rml:predicate rdf:type
], [
rml:objectMap [
rml:reference "$.ID"
];
rml:predicate ex:id
], [
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate foaf:name
], [
rml:objectMap [
rml:reference "$.Sport"
];
rml:predicate ex:Sport
];
rml:subjectMap [
rml:graphMap [
rml:template "http://example.com/graph/Student/{$.ID}/{$.Name}"
];
rml:template "http://example.com/Student/{$.ID}/{$.Name}"
] .
Output
<http://example.com/Student/10/Venus%20Williams> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> <http://example.com/graph/Student/10/Venus%20Williams> .
<http://example.com/Student/10/Venus%20Williams> <http://xmlns.com/foaf/0.1/name> "Venus Williams" <http://example.com/graph/Student/10/Venus%20Williams> .
<http://example.com/Student/10/Venus%20Williams> <http://example.com/id> "10" <http://example.com/graph/Student/10/Venus%20Williams> .
<http://example.com/Student/10/Venus%20Williams> <http://example.com/Sport> "Tennis" <http://example.com/graph/Student/10/Venus%20Williams> .
Title: "Generation of triples referencing object map"
Description: "Tests the mapping specification referencing object map without join"
Error expected? No
Input
{
"students": [{
"ID": 10,
"Name":"Venus Williams",
"Sport": "Tennis"
}]
}
Mapping
@prefix activity: <http://example.com/activity/> .
@prefix ex: <http://example.com/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap <http://example.com/base/RefObjectMap1>;
rml:predicate ex:Sport
], [
rml:object foaf:Person;
rml:predicate rdf:type
], [
rml:objectMap [
rml:reference "$.ID"
];
rml:predicate ex:id
], [
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:template "http://example.com/Student/{$.ID}/{$.Name}"
] .
<http://example.com/base/RefObjectMap1> a rml:RefObjectMap;
rml:parentTriplesMap <http://example.com/base/TriplesMap2> .
<http://example.com/base/TriplesMap2> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:object activity:Sport;
rml:predicate rdf:type
];
rml:subjectMap [
rml:template "http://example.com/{$.Sport}"
] .
Output
<http://example.com/Student/10/Venus%20Williams> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://example.com/Student/10/Venus%20Williams> <http://xmlns.com/foaf/0.1/name> "Venus Williams" .
<http://example.com/Student/10/Venus%20Williams> <http://example.com/id> "10" .
<http://example.com/Student/10/Venus%20Williams> <http://example.com/Sport> <http://example.com/Tennis> .
<http://example.com/Tennis> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.com/activity/Sport> .
Title: "Generation of triples by using multiple predicateMaps within a rml:predicateObjectMap"
Description: "Tests the generation of triples by using multiple predicateMaps within a rml:predicateObjectMap"
Error expected? No
Input
{
"students": [{
"ID": 10,
"Name":"Venus Williams",
"Sport": "Tennis"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate ex:name, foaf:name
];
rml:subjectMap [
rml:template "http://example.com/Student/{$.ID}/{$.Name}"
] .
Output
<http://example.com/Student/10/Venus%20Williams> <http://xmlns.com/foaf/0.1/name> "Venus Williams" .
<http://example.com/Student/10/Venus%20Williams> <http://example.com/name> "Venus Williams" .
Title: "Generation of triples from foreign key relations"
Description: "Test foreign key relationships among logical tables"
Error expected? No
Input
{
"students" : [
{
"ID": 10,
"Sport": 100,
"Name": "Venus Williams"
},
{
"ID": 20,
"Name": "Demi Moore"
}
]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate foaf:name
], [
rml:objectMap [ a rml:RefObjectMap;
rml:joinCondition [
rml:child "$.Sport";
rml:parent "$.ID"
];
rml:parentTriplesMap <http://example.com/base/TriplesMap2>
];
rml:predicate <http://example.com/ontology/practises>
];
rml:subjectMap [
rml:template "http://example.com/resource/student_{$.ID}"
] .
<http://example.com/base/TriplesMap2> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.sports[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "sport.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate rdfs:label
];
rml:subjectMap [
rml:template "http://example.com/resource/sport_{$.ID}"
] .
Output
<http://example.com/resource/student_10> <http://xmlns.com/foaf/0.1/name> "Venus Williams" .
<http://example.com/resource/student_20> <http://xmlns.com/foaf/0.1/name> "Demi Moore" .
<http://example.com/resource/sport_100> <http://www.w3.org/2000/01/rdf-schema#label> "Tennis" .
<http://example.com/resource/student_10> <http://example.com/ontology/practises> <http://example.com/resource/sport_100> .
Title: "Generation of triples to multiple graphs"
Description: "Test that results from distinct parts of the mapping can be directed to different target graphs."
Error expected? No
Input
{
"students" : [
{
"ID": 10,
"Sport": 100,
"Name": "Venus Williams"
},
{
"ID": 20,
"Name": "Demi Moore"
}
]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:graph <http://example.com/graph/students>;
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate foaf:name
], [
rml:graph <http://example.com/graph/practise>;
rml:objectMap [ a rml:RefObjectMap;
rml:joinCondition [
rml:child "$.Sport";
rml:parent "$.ID"
];
rml:parentTriplesMap <http://example.com/base/TriplesMap2>
];
rml:predicate <http://example.com/ontology/practises>
];
rml:subjectMap [
rml:class <http://example.com/ontology/Student>;
rml:graph <http://example.com/graph/students>;
rml:template "http://example.com/resource/student_{$.ID}"
] .
<http://example.com/base/TriplesMap2> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.sports[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "sport.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate rdfs:label
];
rml:subjectMap [
rml:class <http://example.com/ontology/Sport>;
rml:graph <http://example.com/graph/sports>;
rml:template "http://example.com/resource/sport_{$.ID}"
] .
Output
<http://example.com/resource/student_10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.com/ontology/Student> <http://example.com/graph/students> .
<http://example.com/resource/student_10> <http://xmlns.com/foaf/0.1/name> "Venus Williams" <http://example.com/graph/students> .
<http://example.com/resource/student_20> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.com/ontology/Student> <http://example.com/graph/students> .
<http://example.com/resource/student_20> <http://xmlns.com/foaf/0.1/name> "Demi Moore" <http://example.com/graph/students> .
<http://example.com/resource/sport_100> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.com/ontology/Sport> <http://example.com/graph/sports> .
<http://example.com/resource/sport_100> <http://www.w3.org/2000/01/rdf-schema#label> "Tennis" <http://example.com/graph/sports> .
<http://example.com/resource/student_10> <http://example.com/ontology/practises> <http://example.com/resource/sport_100> <http://example.com/graph/practise> .
<http://example.com/resource/student_10> <http://example.com/ontology/practises> <http://example.com/resource/sport_100> <http://example.com/graph/students> .
Title: "Template with table column with blank space"
Description: "Tests a template with blank space in column value"
Error expected? No
Input
{
"countries": [{
"Country Code": 1,
"Name":"Bolivia, Plurinational State of",
"ISO 3166": "BO"
}, {
"Country Code": 2,
"Name":"Ireland",
"ISO 3166": "IE"
}, {
"Country Code": 3,
"Name":"Saint Martin (French part)",
"ISO 3166": "MF"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.countries[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "country_info.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate ex:name
];
rml:subjectMap [
rml:template "http://example.com/{$.['Country Code']}"
] .
Output
<http://example.com/1> <http://example.com/name> "Bolivia, Plurinational State of" .
<http://example.com/2> <http://example.com/name> "Ireland" .
<http://example.com/3> <http://example.com/name> "Saint Martin (French part)" .
Title: "Template with table columns with special chars"
Description: "Tests a template with special chars in column value"
Error expected? No
Input
{
"countries": [{
"Country Code": 1,
"Name":"Bolivia, Plurinational State of",
"ISO 3166": "BO"
}, {
"Country Code": 2,
"Name":"Ireland",
"ISO 3166": "IE"
}, {
"Country Code": 3,
"Name":"Saint Martin (French part)",
"ISO 3166": "MF"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.countries[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "country_info.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate ex:name
];
rml:subjectMap [
rml:template "http://example.com/{$.['Country Code']}/{$.Name}"
] .
Output
<http://example.com/1/Bolivia%2C%20Plurinational%20State%20of> <http://example.com/name> "Bolivia, Plurinational State of" .
<http://example.com/2/Ireland> <http://example.com/name> "Ireland" .
<http://example.com/3/Saint%20Martin%20%28French%20part%29> <http://example.com/name> "Saint Martin (French part)" .
Title: "Template with table columns with special chars and backslashes"
Description: "Tests a template with special chars in reference value and backslash escapes in string templates"
Error expected? No
Input
{
"countries": [{
"Country Code": 1,
"Name":"Bolivia, Plurinational State of",
"ISO 3166": "BO"
}, {
"Country Code": 2,
"Name":"Ireland",
"ISO 3166": "IE"
}, {
"Country Code": 3,
"Name":"Saint Martin (French part)",
"ISO 3166": "MF"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.countries[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "country_info.json"
]
];
rml:predicateObjectMap [
rml:predicate ex:code;
rml:objectMap [
rml:template "\\{\\{\\{ {$.['ISO 3166']} \\}\\}\\}";
rml:termType rml:Literal
]
];
rml:subjectMap [
rml:template "http://example.com/{$.['Country Code']}/{$.Name}"
] .
Output
<http://example.com/1/Bolivia%2C%20Plurinational%20State%20of> <http://example.com/code> "{{{ BO }}}" .
<http://example.com/2/Ireland> <http://example.com/code> "{{{ IE }}}" .
<http://example.com/3/Saint%20Martin%20%28French%20part%29> <http://example.com/code> "{{{ MF }}}" .
Title: "M to M relation, by using an additional Triples Map"
Description: "Tests, M to M relations, by using an additional Triples Map"
Error expected? No
Input
{
"students": [
{"ID":10, "FirstName":"Venus", "LastName":"Williams"},
{"ID":11, "FirstName":"Fernando", "LastName":"Alonso"},
{"ID":12, "FirstName":"David", "LastName":"Villa"}
]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/LinkMap_1_2> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.links[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student_sport.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:template "http://example.com/sport/{$.ID_Sport}"
];
rml:predicate ex:plays
];
rml:subjectMap [
rml:template "http://example.com/student/{$.ID_Student}"
] .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.FirstName"
];
rml:predicate ex:firstName
], [
rml:objectMap [
rml:reference "$.LastName"
];
rml:predicate ex:lastName
];
rml:subjectMap [
rml:template "http://example.com/student/{$.ID}"
] .
<http://example.com/base/TriplesMap2> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.sports[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "sport.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.Description"
];
rml:predicate ex:description
], [
rml:objectMap [
rml:reference "$.ID"
];
rml:predicate ex:id
];
rml:subjectMap [
rml:template "http://example.com/sport/{$.ID}"
] .
Output
<http://example.com/student/10> <http://example.com/lastName> "Williams" .
<http://example.com/student/10> <http://example.com/firstName> "Venus" .
<http://example.com/student/12> <http://example.com/lastName> "Villa" .
<http://example.com/student/12> <http://example.com/firstName> "David" .
<http://example.com/student/11> <http://example.com/lastName> "Alonso" .
<http://example.com/student/11> <http://example.com/firstName> "Fernando" .
<http://example.com/sport/110> <http://example.com/description> "Tennis" .
<http://example.com/sport/110> <http://example.com/id> "110" .
<http://example.com/sport/111> <http://example.com/description> "Football" .
<http://example.com/sport/111> <http://example.com/id> "111" .
<http://example.com/sport/112> <http://example.com/description> "Formula1" .
<http://example.com/sport/112> <http://example.com/id> "112" .
<http://example.com/student/10> <http://example.com/plays> <http://example.com/sport/110> .
<http://example.com/student/12> <http://example.com/plays> <http://example.com/sport/111> .
<http://example.com/student/11> <http://example.com/plays> <http://example.com/sport/112> .
<http://example.com/student/11> <http://example.com/plays> <http://example.com/sport/111> .
Title: "Blank node referencing multiple columns"
Description: "Tests that blank nodes can be generated by referencing multiple columns"
Error expected? No
Input
{
"persons": [
{"fname":"Bob","lname":"Smith","amount":30},
{"fname":"Sue","lname":"Jones","amount":20},
{"fname":"Bob","lname":"Smith","amount":30}
]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.persons[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "persons.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:template "{$.fname} {$.lname}";
rml:termType rml:Literal
];
rml:predicate foaf:name
], [
rml:objectMap [
rml:reference "$.amount"
];
rml:predicate ex:amount
];
rml:subjectMap [
rml:template "{$.fname}{$.lname}{$.amount}";
rml:termType rml:BlankNode
] .
Output
_:BobSmith30 <http://example.com/amount> "30" .
_:BobSmith30 <http://xmlns.com/foaf/0.1/name> "Bob Smith" .
_:SueJones20 <http://example.com/amount> "20" .
_:SueJones20 <http://xmlns.com/foaf/0.1/name> "Sue Jones" .
Title: "Duplicate tuples generate same blank node"
Description: "Tests that blank nodes with same identifier and in the same graph but generated by different logical rows are considered equivalent."
Error expected? No
Mapping
@prefix ex: <http://example.com/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.persons[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "persons.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:template "{$.fname} {$.lname}";
rml:termType rml:Literal
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:template "{$.fname}{$.lname}";
rml:termType rml:BlankNode
] .
<http://example.com/base/TriplesMap2> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.lives[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "lives.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.city"
];
rml:predicate ex:city
];
rml:subjectMap [
rml:template "{$.fname}{$.lname}";
rml:termType rml:BlankNode
] .
Output
_:BobSmith <http://example.com/city> "London" .
_:BobSmith <http://xmlns.com/foaf/0.1/name> "Bob Smith" .
_:SueJones <http://example.com/city> "Madrid" .
_:SueJones <http://xmlns.com/foaf/0.1/name> "Sue Jones" .
Title: "TriplesMap without subjectMap"
Description: "Tests a RML with missing information, TriplesMap without subjectMap."
Error expected? Yes
Input
{
"persons": [
{"fname":"Bob","lname":"Smith","amount":30},
{"fname":"Sue","lname":"Jones","amount":20},
{"fname":"Bob","lname":"Smith","amount":30}
]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.persons[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "persons.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:template "{$.fname} {$.lname}";
rml:termType rml:Literal
];
rml:predicate foaf:name
], [
rml:objectMap [
rml:reference "$.amount"
];
rml:predicate ex:amount
] .
Title: "TriplesMap with two subjectMap"
Description: "Tests a RML with wrong information, TriplesMap with two subjectMap."
Error expected? Yes
Input
{
"persons": [
{"fname":"Bob","lname":"Smith","amount":30},
{"fname":"Sue","lname":"Jones","amount":20},
{"fname":"Bob","lname":"Smith","amount":30}
]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.persons[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "persons.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:template "{$.fname} {$.lname}";
rml:termType rml:Literal
];
rml:predicate foaf:name
], [
rml:objectMap [
rml:reference "$.amount"
];
rml:predicate ex:amount
];
rml:subjectMap [
rml:template "{$.fname}_{$.lname}_{$.amount}";
rml:termType rml:BlankNode
], [
rml:template "{$.amount}_{$.fname}_{$.lname}";
rml:termType rml:BlankNode
] .
Title: "Null value in JSON file"
Description: "Tests if null values in JSON files are handled correctly."
Error expected? No
Input
{
"persons": [
{"ID":"1","Name":"Alice","DateOfBirth":null},
{"ID":"2","Name":"Bob","DateOfBirth":"September, 2010"}
]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.persons[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "persons.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.DateOfBirth"
];
rml:predicate ex:BirthDay
];
rml:subjectMap [
rml:template "http://example.com/Person/{$.ID}/{$.Name}/{$.DateOfBirth}"
] .
Output
<http://example.com/Person/2/Bob/September%2C%202010> <http://example.com/BirthDay> "September, 2010" .
Title: "Generation of language tags from a table with language information"
Description: "Generation of language tags from a table with language information"
Error expected? No
Input
{
"countries": [
{"Code": "BO", "Name": "Bolivia, Plurinational State of"},
{"Code": "IE", "Name": "Ireland"}
]
}
Mapping
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.countries[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "country_en.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:language "en";
rml:reference "$.Name"
];
rml:predicate rdfs:label
];
rml:subjectMap [
rml:template "http://example.com/{$.Code}"
] .
<http://example.com/base/TriplesMap2> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.countries[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "country_es.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:language "es";
rml:reference "$.Name"
];
rml:predicate rdfs:label
];
rml:subjectMap [
rml:template "http://example.com/{$.Code}"
] .
Output
<http://example.com/BO> <http://www.w3.org/2000/01/rdf-schema#label> "Bolivia, Plurinational State of"@en .
<http://example.com/BO> <http://www.w3.org/2000/01/rdf-schema#label> "Estado Plurinacional de Bolivia"@es .
<http://example.com/IE> <http://www.w3.org/2000/01/rdf-schema#label> "Ireland"@en .
<http://example.com/IE> <http://www.w3.org/2000/01/rdf-schema#label> "Irlanda"@es .
Title: "Generation of language tags from a table with language information, and a term map with invalid rml:language value"
Description: "Tests a term map with an invalid rml:language value, which is an error"
Error expected? Yes
Input
{
"countries": [
{"Code": "BO", "Name": "Bolivia, Plurinational State of"},
{"Code": "IE", "Name": "Ireland"}
]
}
Mapping
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.countries[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "country_en.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:language "a-english";
rml:reference "$.Name"
];
rml:predicate rdfs:label
];
rml:subjectMap [
rml:template "http://example.com/{$.Code}"
] .
<http://example.com/base/TriplesMap2> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.countries[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "country_en.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:language "a-spanish";
rml:reference "$.Name"
];
rml:predicate rdfs:label
];
rml:subjectMap [
rml:template "http://example.com/{$.Code}"
] .
Title: "Generation of triples by using IRI value in columns"
Description: "Test the generation of triples by using IRI value in attributes"
Error expected? No
Input
{
"persons": [
{
"ID": 10,
"FirstName": "http://example.com/ns#Jhon",
"LastName": "Smith"
},
{
"ID": 20,
"FirstName": "Carlos",
"LastName": "Mendoza"
}
]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.persons[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "persons.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.FirstName"
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:reference "$.FirstName"
] .
Output
<http://example.com/ns#Jhon> <http://xmlns.com/foaf/0.1/name> "http://example.com/ns#Jhon" .
<http://example.com/base/Carlos> <http://xmlns.com/foaf/0.1/name> "Carlos" .
Title: "Generation of triples by using IRI value in columns, with data error"
Description: "Test the generation of triples by using IRI value in attributes, conforming RML mapping with data error (and limited results)"
Error expected? No
Input
{
"persons": [
{
"ID": 10,
"FirstName": "http://example.com/ns#Jhon",
"LastName": "Smith"
},
{
"ID": 20,
"FirstName": "Carlos",
"LastName": "Mendoza"
},
{
"ID": 30,
"FirstName": "Juan Daniel",
"LastName": "Crespo"
}
]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.persons[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "persons.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.FirstName"
];
rml:predicate foaf:name
];
rml:subjectMap [
rml:reference "$.FirstName"
] .
Output
Title: "Generation of triples by using IRI value in columns"
Description: "Test the generation of triples by using IRI value in attributes"
Error expected? No
Input
{
"students": [
{"Name": "http://example.com/company/Alice"},
{"Name": "Bob"},
{"Name": "Bob/Charles"},
{"Name": "path/../Danny"},
{"Name": "Emily Smith"}
]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:object foaf:Person;
rml:predicate rdf:type
];
rml:subjectMap [
rml:template "{$.Name}";
rml:termType rml:IRI
] .
Output
<http://example.com/base/http%3A%2F%2Fexample.com%2Fcompany%2FAlice> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://example.com/base/Bob> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://example.com/base/Bob%2FCharles> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://example.com/base/path%2F..%2FDanny> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://example.com/base/Emily%20Smith> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
Title: "Generation of triples referencing object map"
Description: "Tests the mapping specification referencing object map with same logical source and join condition"
Error expected? No
Input
{
"students": [{
"ID": 10,
"Name":"Venus Williams",
"Sport": "Tennis"
}, {
"ID": 20,
"Name":"Serena Williams",
"Sport": "Tennis"
}, {
"ID": 30,
"Name":"Loena Hendrickx",
"Sport": "Figure skating"
}]
}
Mapping
@prefix activity: <http://example.com/activity/> .
@prefix ex: <http://example.com/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/RefObjectMap1> a rml:RefObjectMap;
rml:joinCondition [
rml:child "$.Sport";
rml:parent "$.Sport"
];
rml:parentTriplesMap <http://example.com/base/TriplesMap1> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap <http://example.com/base/RefObjectMap1>;
rml:predicate ex:sameSportAs
];
rml:subjectMap [
rml:template "http://example.com/Student/{$.ID}/{$.Name}"
] .
Output
<http://example.com/Student/10/Venus%20Williams> <http://example.com/sameSportAs> <http://example.com/Student/10/Venus%20Williams> .
<http://example.com/Student/10/Venus%20Williams> <http://example.com/sameSportAs> <http://example.com/Student/20/Serena%20Williams> .
<http://example.com/Student/20/Serena%20Williams> <http://example.com/sameSportAs> <http://example.com/Student/20/Serena%20Williams> .
<http://example.com/Student/20/Serena%20Williams> <http://example.com/sameSportAs> <http://example.com/Student/10/Venus%20Williams> .
<http://example.com/Student/30/Loena%20Hendrickx> <http://example.com/sameSportAs> <http://example.com/Student/30/Loena%20Hendrickx> .
Title: "Generating of triples with constant datatype"
Description: "Test triples with a fixed constant datatype"
Error expected? No
Input
{
"students": [{
"ID": 10,
"Name":"Venus"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:datatype xsd:string;
rml:reference "$.Name"
];
rml:predicate foaf:name
], [
rml:objectMap [
rml:datatype xsd:int;
rml:reference "$.Age"
];
rml:predicate ex:age
];
rml:subjectMap [
rml:template "http://example.com/{$.Name}"
] .
Output
<http://example.com/Venus> <http://xmlns.com/foaf/0.1/name> "Venus"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://example.com/Venus> <http://example.com/age> "21"^^<http://www.w3.org/2001/XMLSchema#int> .
Title: "Generating of triples with datatypeMap"
Description: "Test triples with a XSD datatype generated from the data"
Error expected? No
Input
{
"students": [{
"ID": 10,
"Name":"Venus"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:referenceFormulation rml:JSONPath;
rml:iterator "$.[*]";
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "data.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:datatypeMap [
rml:template "http://www.w3.org/2001/XMLSchema#{$.BAR}"
];
rml:reference "$.FOO"
];
rml:predicate ex:x
];
rml:subjectMap [
rml:template "http://example.com/{$.FOO}"
] .
Output
<http://example.com/1> <http://example.com/x> "1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://example.com/2> <http://example.com/x> "2"^^<http://www.w3.org/2001/XMLSchema#int> .
Title: "Generating of triples with datatypeMap with custom datatype"
Description: "Test triples with a custom datype from the data"
Error expected? No
Input
{
"students": [{
"ID": 10,
"Name":"Venus"
}]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:referenceFormulation rml:JSONPath;
rml:iterator "$.[*]";
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "data.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:datatypeMap [
rml:template "datatype#{$.BAR}"
];
rml:reference "$.FOO"
];
rml:predicate ex:x
];
rml:subjectMap [
rml:template "http://example.com/{$.FOO}"
] .
Output
<http://example.com/1> <http://example.com/x> "1"^^<http://www.w3.org/2001/XMLSchema#string> .
<http://example.com/2> <http://example.com/x> "2"^^<http://www.w3.org/2001/XMLSchema#int> .
Title: "Invalid IRI template 1"
Description: "Test handling of invalid IRI template"
Error expected? Yes
Input
{
"students": [{
"ID": 10,
"Name":"Venus"
}]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:referenceFormulation rml:JSONPath;
rml:iterator "$.students[*]";
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:subjectMap [
rml:template "http://example.com/{NON_EXISTING_COLUMN}";
rml:class foaf:Person;
] .
Title: "Invalid IRI template 2"
Description: "Test handling of invalid IRI template"
Error expected? Yes
Input
{
"students": [{
"ID": 10,
"{Name}":"Venus"
}]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:referenceFormulation rml:JSONPath;
rml:iterator "$.students[*]";
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:subjectMap [
rml:template "http://example.com/{{Name}}";
rml:class foaf:Person;
] .
Title: "Invalid IRI template 3"
Description: "Test handling of invalid IRI template"
Error expected? Yes
Input
{
"students": [{
"ID": 10,
"N\ame":"Venus"
}]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:referenceFormulation rml:JSONPath;
rml:iterator "$.students[*]";
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:subjectMap [
rml:template "http://example.com/{N\ame}";
rml:class foaf:Person;
] .
Title: "Invalid IRI template 4"
Description: "Test handling of invalid IRI template"
Error expected? Yes
Input
{
"students": [{
"ID": 10,
"Name":"Venus"
}]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:referenceFormulation rml:JSONPath;
rml:iterator "$.students[*]";
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:subjectMap [
rml:template "http://example.com/{Name\}";
rml:class foaf:Person;
] .
Title: "Invalid IRI template 5"
Description: "Test handling of invalid IRI template"
Error expected? No
Input
{
"students": [{
"ID": 10,
"{Name}":"Venus"
}]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:referenceFormulation rml:JSONPath;
rml:iterator "$.students[*]";
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:subjectMap [
rml:template "http://example.com/{\\{Name\\}}";
rml:class foaf:Person;
] .
Output
<http://example.com/Venus> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
Title: "Invalid IRI template 6"
Description: "Test handling of invalid IRI template"
Error expected? No
Input
{
"students": [{
"ID": 10,
"N\ame":"Venus"
}]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:referenceFormulation rml:JSONPath;
rml:iterator "$.students[*]";
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:subjectMap [
rml:template "http://example.com/{N\\\ame}";
rml:class foaf:Person;
] .
Output
<http://example.com/Venus> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
Title: "Generation of triples with constant blank node "
Description: "Tests the generation of triples with a constant blank node"
Error expected? No
Input
{
"students": [{
"Name":"Venus"
},
{
"Name":"Julio"
}]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
@prefix ex: <http://example.com/>.
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate ex:student
];
rml:subject _:School .
Output
_:School <http://example.com/student> "Julio" .
_:School <http://example.com/student> "Venus" .
Title: "Usage of constant term maps in combination with explicitly defined term types"
Description: "Tests the usage of constant term maps in combination with explicitly defined term types"
Error expected? Yes
Input
{
"students": [{
"Name":"Venus"
},
{
"Name":"Julio"
}]
}
Mapping
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
@prefix ex: <http://example.com/>.
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.students[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "student.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.Name"
];
rml:predicate ex:student
];
rml:subjectMap [
rml:constant "School";
rml:termType rml:BlankNode
] .
Title: "Generation of triples from arrays"
Description: "Tests the generation of triples from array input data structures"
Error expected? No
Input
{
"persons": [
{"fname":"Bob","lname":"Smith","amounts":[30, 40, 50]}
]
}
Mapping
@prefix ex: <http://example.com/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rml: <http://w3id.org/rml/> .
<http://example.com/base/TriplesMap1> a rml:TriplesMap;
rml:logicalSource [ a rml:LogicalSource;
rml:iterator "$.persons[*]";
rml:referenceFormulation rml:JSONPath;
rml:source [ a rml:RelativePathSource;
rml:root rml:MappingDirectory;
rml:path "persons.json"
]
];
rml:predicateObjectMap [
rml:objectMap [
rml:reference "$.amounts"
];
rml:predicate ex:amount
];
rml:subjectMap [
rml:template "http://example.com/Student/{$.fname}/{$.lname}"
] .
Output
<http://example.com/Student/Bob/Smith> <http://example.com/amount> "30" .
<http://example.com/Student/Bob/Smith> <http://example.com/amount> "40" .
<http://example.com/Student/Bob/Smith> <http://example.com/amount> "50" .