├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── Readme.md ├── docs ├── docker │ ├── Dockerfile │ ├── data.xml │ ├── mapping.ttl │ └── readme.txt └── node │ ├── index.js │ ├── input.json │ └── mapping.ttl ├── package.json ├── rocket-rml.jpg ├── src ├── function │ ├── function.js │ ├── grel.ttl │ └── predefined.js ├── helper │ ├── objectHelper.js │ ├── prefixHelper.js │ ├── replace.js │ └── vocabulary.js ├── index.d.ts ├── index.js ├── input-parser │ ├── CSVParser.js │ ├── FontoxpathParser.js │ ├── JSONParser.js │ ├── XMLParser.js │ ├── XmlParserCpp.js │ ├── helper.js │ ├── logicalSourceParser.js │ └── parser.js └── mapfile │ └── mapfileParser.js └── tests ├── RMLio-testCases ├── RMLTC0000-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0000-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0000-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0001a-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0001a-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0001a-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0001b-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0001b-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0001b-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0002a-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0002a-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0002a-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0002b-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0002b-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0002b-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0002c-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0002c-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0002c-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0002e-CSV │ ├── mapping.ttl │ └── student.csv ├── RMLTC0002e-JSON │ ├── mapping.ttl │ └── student.json ├── RMLTC0002e-XML │ ├── mapping.ttl │ └── student.xml ├── RMLTC0002g-JSON │ ├── mapping.ttl │ ├── output.nq │ └── student.json ├── RMLTC0003c-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0003c-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0003c-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0004a-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student_sport.csv ├── RMLTC0004a-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student_sport.json ├── RMLTC0004a-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student_sport.xml ├── RMLTC0004b-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0004b-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0004b-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0005a-CSV │ ├── ious.csv │ ├── mapping.ttl │ ├── out.nq │ └── output.nq ├── RMLTC0005a-JSON │ ├── ious.json │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ └── output.nq ├── RMLTC0005a-XML │ ├── ious.xml │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ └── output.nq ├── RMLTC0006a-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0006a-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0006a-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0007a-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0007a-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0007a-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0007b-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0007b-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0007b-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0007c-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0007c-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0007c-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0007d-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0007d-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0007d-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0007e-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0007e-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0007e-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0007f-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0007f-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0007f-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0007g-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0007g-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0007g-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0007h-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0007h-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0007h-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0008a-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0008a-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0008b-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0008b-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0008b-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0008c-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0008c-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0008c-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0009a-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ ├── sport.csv │ └── student.csv ├── RMLTC0009a-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ ├── sport.xml │ └── student.xml ├── RMLTC0009b-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ ├── sport.csv │ └── student.csv ├── RMLTC0009b-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ ├── sport.json │ └── student.json ├── RMLTC0009b-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ ├── sport.xml │ └── student.xml ├── RMLTC0010a-CSV │ ├── country_info.csv │ ├── mapping.ttl │ ├── out.nq │ └── output.nq ├── RMLTC0010a-JSON │ ├── country_info.json │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ └── output.nq ├── RMLTC0010b-CSV │ ├── country_info.csv │ ├── mapping.ttl │ ├── out.nq │ └── output.nq ├── RMLTC0010b-JSON │ ├── country_info.json │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ └── output.nq ├── RMLTC0010b-XML │ ├── country_info.xml │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ └── output.nq ├── RMLTC0010c-CSV │ ├── country_info.csv │ ├── mapping.ttl │ ├── out.nq │ └── output.nq ├── RMLTC0010c-JSON │ ├── country_info.json │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ └── output.nq ├── RMLTC0010c-XML │ ├── country_info.xml │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ └── output.nq ├── RMLTC0011b-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ ├── sport.csv │ ├── student.csv │ └── student_sport.csv ├── RMLTC0011b-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ ├── sport.json │ ├── student.json │ └── student_sport.json ├── RMLTC0011b-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ ├── sport.xml │ ├── student.xml │ └── student_sport.xml ├── RMLTC0012a-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── persons.csv ├── RMLTC0012a-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── persons.json ├── RMLTC0012a-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── persons.xml ├── RMLTC0012b-CSV │ ├── lives.csv │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── persons.csv ├── RMLTC0012b-JSON │ ├── lives.json │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── persons.json ├── RMLTC0012b-XML │ ├── lives.xml │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── persons.xml ├── RMLTC0012c-CSV │ ├── mapping.ttl │ ├── out.nq │ └── persons.csv ├── RMLTC0012c-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ └── persons.json ├── RMLTC0012c-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ └── persons.xml ├── RMLTC0012d-CSV │ ├── mapping.ttl │ └── persons.csv ├── RMLTC0012d-JSON │ ├── mapping.ttl │ └── persons.json ├── RMLTC0012d-XML │ ├── mapping.ttl │ └── persons.xml ├── RMLTC0013a-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── persons.json ├── RMLTC0015a-CSV │ ├── country_en.csv │ ├── country_es.csv │ ├── mapping.ttl │ ├── out.nq │ └── output.nq ├── RMLTC0015a-JSON │ ├── country_en.json │ ├── country_es.json │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ └── output.nq ├── RMLTC0015a-XML │ ├── country_en.xml │ ├── country_es.xml │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ └── output.nq ├── RMLTC0015b-CSV │ ├── country_en.csv │ ├── country_es.csv │ └── mapping.ttl ├── RMLTC0015b-JSON │ ├── country_en.json │ ├── country_es.json │ └── mapping.ttl ├── RMLTC0015b-XML │ ├── country_en.xml │ ├── country_es.xml │ ├── mapping.ttl │ ├── out.json │ └── out.nq ├── RMLTC0019a-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── persons.csv ├── RMLTC0019a-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── persons.json ├── RMLTC0019a-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── persons.xml ├── RMLTC0019b-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── persons.csv ├── RMLTC0019b-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── persons.json ├── RMLTC0019b-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── persons.xml ├── RMLTC0020a-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0020a-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0020a-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml ├── RMLTC0020b-CSV │ ├── mapping.ttl │ ├── out.nq │ ├── output.nq │ └── student.csv ├── RMLTC0020b-JSON │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.json ├── RMLTC0020b-XML │ ├── mapping.ttl │ ├── out.json │ ├── out.nq │ ├── output.nq │ └── student.xml └── rmlio-tests.js ├── arrayValueMapping ├── input.json ├── mapping.ttl └── out.json ├── asyncFunctionMapping ├── input.json ├── mapping.ttl └── out.json ├── constantIri ├── input.json ├── mapping.ttl └── out.json ├── constantSubjectMapping ├── input.json ├── mapping.ttl └── out.json ├── csvMappingTest ├── input.csv ├── mapping.ttl └── out.nq ├── csvSemiColumn ├── input.csv ├── mapping.ttl └── out.nq ├── datatype ├── input.json ├── mapping.ttl ├── out.json └── out.nq ├── doubleJoinCondition ├── data.csv ├── data2.csv ├── mapping.ttl └── out.json ├── doubleNestedMapping ├── input.json ├── mapping.ttl └── out.json ├── doubleNestedMappingXML ├── input.xml ├── mapping.ttl └── out.json ├── emptyStrings ├── input.json ├── mapping.ttl └── out.json ├── escapedXml ├── input.xml ├── mapping.ttl └── out.json ├── ignoreValues ├── input.json ├── mapping.ttl └── out.json ├── iriReference ├── input.json ├── mapping.ttl └── out.json ├── joinSource ├── input.json ├── mapping_diff.ttl ├── mapping_same.ttl ├── out_diff.json └── out_same.json ├── language ├── input.json ├── mapping.ttl └── out.json ├── mapfile.ttl ├── mapfilexml.ttl ├── nestedMapping ├── input.json ├── mapping.ttl └── out.json ├── nestedMappingArray ├── input.json ├── mapping.ttl └── out.json ├── nestedMappingArrayXML ├── input.xml ├── mapping.ttl └── out.json ├── nestedMappingXML ├── input.xml ├── mapping.ttl └── out.json ├── nestedPredefinedFunctionMapping ├── input.json ├── mapping.ttl └── out.json ├── nonArrayPredicateObjectMap ├── input.json ├── mapping.ttl └── out.json ├── optionParameterFunctionMapping ├── input.json ├── mapping.ttl └── out.json ├── pathCsvJoin ├── input.csv ├── mapping.ttl └── out.json ├── pathJsonJoin ├── input.json ├── mapping.ttl └── out.json ├── pathXmlJoin ├── input.xml ├── mapping.ttl └── out.json ├── performanceTest.js ├── predefinedFunctionMapping ├── input.json ├── mapping.ttl └── out.json ├── straightDoubleMapping ├── input.json ├── mapping.ttl └── out.json ├── straightDoubleMappingXML ├── input.xml ├── mapping.ttl └── out.json ├── straightMapping ├── input.json ├── mapping.ttl └── out.json ├── straightMappingArray ├── input.json ├── mapping.ttl └── out.json ├── straightMappingArrayXML ├── input.xml ├── mapping.ttl └── out.json ├── straightMappingXML ├── input.xml ├── mapping.ttl └── out.json ├── subjFuncMap ├── input.json ├── mapping.ttl └── out.json ├── subjFuncMap2 ├── input.csv ├── mapping.ttl └── out.json ├── subjectMappingXML ├── input.xml ├── mapping.ttl └── out.json ├── templateMappingXml ├── input.xml ├── mapping.ttl └── out.json ├── test.js ├── tripleNestedMapping ├── input.json ├── mapping.ttl └── out.json └── tripleNestedMappingXML ├── input.xml ├── mapping.ttl └── out.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/Readme.md -------------------------------------------------------------------------------- /docs/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/docs/docker/Dockerfile -------------------------------------------------------------------------------- /docs/docker/data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/docs/docker/data.xml -------------------------------------------------------------------------------- /docs/docker/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/docs/docker/mapping.ttl -------------------------------------------------------------------------------- /docs/docker/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/docs/docker/readme.txt -------------------------------------------------------------------------------- /docs/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/docs/node/index.js -------------------------------------------------------------------------------- /docs/node/input.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"Hello World", 3 | "description": "It worked!" 4 | } -------------------------------------------------------------------------------- /docs/node/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/docs/node/mapping.ttl -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/package.json -------------------------------------------------------------------------------- /rocket-rml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/rocket-rml.jpg -------------------------------------------------------------------------------- /src/function/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/function/function.js -------------------------------------------------------------------------------- /src/function/grel.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/function/grel.ttl -------------------------------------------------------------------------------- /src/function/predefined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/function/predefined.js -------------------------------------------------------------------------------- /src/helper/objectHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/helper/objectHelper.js -------------------------------------------------------------------------------- /src/helper/prefixHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/helper/prefixHelper.js -------------------------------------------------------------------------------- /src/helper/replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/helper/replace.js -------------------------------------------------------------------------------- /src/helper/vocabulary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/helper/vocabulary.js -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/index.js -------------------------------------------------------------------------------- /src/input-parser/CSVParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/input-parser/CSVParser.js -------------------------------------------------------------------------------- /src/input-parser/FontoxpathParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/input-parser/FontoxpathParser.js -------------------------------------------------------------------------------- /src/input-parser/JSONParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/input-parser/JSONParser.js -------------------------------------------------------------------------------- /src/input-parser/XMLParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/input-parser/XMLParser.js -------------------------------------------------------------------------------- /src/input-parser/XmlParserCpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/input-parser/XmlParserCpp.js -------------------------------------------------------------------------------- /src/input-parser/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/input-parser/helper.js -------------------------------------------------------------------------------- /src/input-parser/logicalSourceParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/input-parser/logicalSourceParser.js -------------------------------------------------------------------------------- /src/input-parser/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/input-parser/parser.js -------------------------------------------------------------------------------- /src/mapfile/mapfileParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/src/mapfile/mapfileParser.js -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0000-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0000-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0000-CSV/out.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0000-CSV/output.nq: -------------------------------------------------------------------------------- 1 | # empty database 2 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0000-CSV/student.csv: -------------------------------------------------------------------------------- 1 | Name 2 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0000-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0000-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0000-JSON/out.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0000-JSON/out.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0000-JSON/output.nq: -------------------------------------------------------------------------------- 1 | # empty database 2 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0000-JSON/student.json: -------------------------------------------------------------------------------- 1 | { 2 | "students": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0000-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0000-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0000-XML/out.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0000-XML/out.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0000-XML/output.nq: -------------------------------------------------------------------------------- 1 | # empty database 2 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0000-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0000-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001a-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001a-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001a-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001a-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001a-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001a-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001a-CSV/student.csv: -------------------------------------------------------------------------------- 1 | Name 2 | Venus 3 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001a-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001a-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001a-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001a-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001a-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001a-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001a-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001a-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001a-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001a-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001a-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001a-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001a-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001a-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001a-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001a-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001a-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001a-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001a-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001a-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001b-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001b-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001b-CSV/out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "Venus" . 2 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001b-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001b-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001b-CSV/student.csv: -------------------------------------------------------------------------------- 1 | Name 2 | Venus 3 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001b-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001b-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001b-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001b-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001b-JSON/out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "Venus" . 2 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001b-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001b-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001b-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001b-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001b-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001b-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001b-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001b-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001b-XML/out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "Venus" . 2 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001b-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001b-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0001b-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0001b-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002a-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002a-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002a-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002a-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002a-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002a-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002a-CSV/student.csv: -------------------------------------------------------------------------------- 1 | ID,Name 2 | 10,Venus 3 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002a-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002a-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002a-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002a-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002a-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002a-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002a-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002a-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002a-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002a-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002a-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002a-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002a-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002a-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002a-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002a-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002a-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002a-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002a-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002a-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002b-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002b-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002b-CSV/out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "Venus" . 2 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002b-CSV/output.nq: -------------------------------------------------------------------------------- 1 | _:students10 "Venus" . 2 | 3 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002b-CSV/student.csv: -------------------------------------------------------------------------------- 1 | ID,Name 2 | 10,Venus 3 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002b-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002b-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002b-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002b-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002b-JSON/out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "Venus" . 2 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002b-JSON/output.nq: -------------------------------------------------------------------------------- 1 | _:students10 "Venus" . 2 | 3 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002b-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002b-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002b-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002b-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002b-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002b-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002b-XML/out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "Venus" . 2 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002b-XML/output.nq: -------------------------------------------------------------------------------- 1 | _:students10 "Venus" . 2 | 3 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002b-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002b-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002c-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002c-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002c-CSV/out.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002c-CSV/output.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002c-CSV/student.csv: -------------------------------------------------------------------------------- 1 | ID,Name 2 | 10,Venus 3 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002c-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002c-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002c-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002c-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002c-JSON/out.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002c-JSON/output.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002c-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002c-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002c-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002c-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002c-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002c-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002c-XML/out.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002c-XML/output.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002c-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002c-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002e-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002e-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002e-CSV/student.csv: -------------------------------------------------------------------------------- 1 | ID,Name 2 | 10,Venus 3 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002e-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002e-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002e-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002e-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002e-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002e-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002e-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002e-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002g-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002g-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002g-JSON/output.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0002g-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0002g-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0003c-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0003c-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0003c-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0003c-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0003c-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0003c-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0003c-CSV/student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0003c-CSV/student.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0003c-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0003c-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0003c-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0003c-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0003c-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0003c-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0003c-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0003c-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0003c-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0003c-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0003c-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0003c-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0003c-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0003c-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0003c-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0003c-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0003c-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0003c-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0003c-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0003c-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004a-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004a-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004a-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004a-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004a-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004a-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004a-CSV/student_sport.csv: -------------------------------------------------------------------------------- 1 | Student,Sport 2 | Venus,Tennis 3 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004a-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004a-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004a-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004a-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004a-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004a-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004a-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004a-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004a-JSON/student_sport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004a-JSON/student_sport.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004a-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004a-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004a-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004a-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004a-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004a-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004a-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004a-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004a-XML/student_sport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004a-XML/student_sport.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004b-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004b-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004b-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004b-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004b-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004b-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004b-CSV/student.csv: -------------------------------------------------------------------------------- 1 | Name 2 | Venus 3 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004b-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004b-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004b-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004b-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004b-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004b-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004b-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004b-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004b-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004b-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004b-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004b-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004b-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004b-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004b-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004b-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004b-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004b-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0004b-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0004b-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0005a-CSV/ious.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0005a-CSV/ious.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0005a-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0005a-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0005a-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0005a-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0005a-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0005a-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0005a-JSON/ious.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0005a-JSON/ious.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0005a-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0005a-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0005a-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0005a-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0005a-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0005a-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0005a-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0005a-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0005a-XML/ious.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0005a-XML/ious.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0005a-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0005a-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0005a-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0005a-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0005a-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0005a-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0005a-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0005a-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0006a-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0006a-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0006a-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0006a-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0006a-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0006a-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0006a-CSV/student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0006a-CSV/student.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0006a-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0006a-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0006a-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0006a-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0006a-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0006a-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0006a-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0006a-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0006a-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0006a-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0006a-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0006a-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0006a-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0006a-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0006a-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0006a-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0006a-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0006a-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0006a-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0006a-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007a-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007a-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007a-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007a-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007a-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007a-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007a-CSV/student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007a-CSV/student.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007a-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007a-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007a-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007a-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007a-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007a-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007a-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007a-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007a-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007a-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007a-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007a-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007a-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007a-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007a-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007a-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007a-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007a-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007a-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007a-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007b-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007b-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007b-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007b-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007b-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007b-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007b-CSV/student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007b-CSV/student.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007b-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007b-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007b-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007b-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007b-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007b-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007b-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007b-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007b-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007b-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007b-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007b-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007b-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007b-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007b-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007b-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007b-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007b-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007b-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007b-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007c-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007c-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007c-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007c-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007c-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007c-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007c-CSV/student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007c-CSV/student.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007c-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007c-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007c-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007c-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007c-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007c-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007c-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007c-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007c-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007c-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007c-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007c-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007c-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007c-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007c-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007c-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007c-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007c-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007c-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007c-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007d-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007d-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007d-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007d-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007d-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007d-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007d-CSV/student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007d-CSV/student.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007d-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007d-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007d-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007d-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007d-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007d-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007d-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007d-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007d-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007d-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007d-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007d-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007d-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007d-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007d-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007d-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007d-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007d-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007d-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007d-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007e-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007e-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007e-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007e-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007e-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007e-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007e-CSV/student.csv: -------------------------------------------------------------------------------- 1 | ID,Name 2 | 10,Venus 3 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007e-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007e-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007e-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007e-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007e-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007e-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007e-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007e-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007e-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007e-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007e-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007e-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007e-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007e-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007e-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007e-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007e-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007e-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007e-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007e-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007f-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007f-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007f-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007f-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007f-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007f-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007f-CSV/student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007f-CSV/student.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007f-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007f-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007f-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007f-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007f-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007f-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007f-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007f-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007f-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007f-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007f-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007f-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007f-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007f-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007f-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007f-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007f-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007f-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007f-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007f-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007g-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007g-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007g-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007g-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007g-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007g-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007g-CSV/student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007g-CSV/student.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007g-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007g-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007g-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007g-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007g-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007g-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007g-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007g-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007g-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007g-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007g-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007g-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007g-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007g-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007g-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007g-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007g-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007g-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007g-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007g-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007h-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007h-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007h-CSV/out.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007h-CSV/output.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007h-CSV/student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007h-CSV/student.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007h-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007h-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007h-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007h-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007h-JSON/out.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007h-JSON/output.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007h-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007h-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007h-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007h-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007h-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007h-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007h-XML/out.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007h-XML/output.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0007h-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0007h-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008a-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008a-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008a-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008a-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008a-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008a-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008a-CSV/student.csv: -------------------------------------------------------------------------------- 1 | ID,Name,Sport 2 | 10,Venus Williams,Tennis 3 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008a-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008a-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008a-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008a-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008a-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008a-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008a-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008a-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008a-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008a-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008b-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008b-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008b-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008b-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008b-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008b-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008b-CSV/student.csv: -------------------------------------------------------------------------------- 1 | ID,Name,Sport 2 | 10,Venus Williams,Tennis 3 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008b-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008b-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008b-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008b-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008b-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008b-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008b-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008b-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008b-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008b-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008b-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008b-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008b-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008b-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008b-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008b-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008b-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008b-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008b-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008b-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008c-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008c-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008c-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008c-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008c-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008c-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008c-CSV/student.csv: -------------------------------------------------------------------------------- 1 | ID,Name,Sport 2 | 10,Venus Williams,Tennis 3 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008c-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008c-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008c-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008c-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008c-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008c-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008c-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008c-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008c-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008c-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008c-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008c-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008c-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008c-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008c-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008c-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008c-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008c-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0008c-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0008c-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009a-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009a-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009a-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009a-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009a-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009a-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009a-CSV/sport.csv: -------------------------------------------------------------------------------- 1 | ID,Name 2 | 100,Tennis 3 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009a-CSV/student.csv: -------------------------------------------------------------------------------- 1 | ID,Sport,Name 2 | 10,100,Venus Williams 3 | 20,,Demi Moore 4 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009a-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009a-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009a-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009a-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009a-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009a-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009a-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009a-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009a-XML/sport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009a-XML/sport.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009a-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009a-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009b-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009b-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009b-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009b-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009b-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009b-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009b-CSV/sport.csv: -------------------------------------------------------------------------------- 1 | ID,Name 2 | 100,Tennis 3 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009b-CSV/student.csv: -------------------------------------------------------------------------------- 1 | ID,Sport,Name 2 | 10,100,Venus Williams 3 | 20,,Demi Moore 4 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009b-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009b-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009b-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009b-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009b-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009b-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009b-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009b-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009b-JSON/sport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009b-JSON/sport.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009b-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009b-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009b-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009b-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009b-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009b-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009b-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009b-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009b-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009b-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009b-XML/sport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009b-XML/sport.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0009b-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0009b-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010a-CSV/country_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010a-CSV/country_info.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010a-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010a-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010a-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010a-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010a-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010a-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010a-JSON/country_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010a-JSON/country_info.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010a-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010a-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010a-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010a-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010a-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010a-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010a-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010a-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010b-CSV/country_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010b-CSV/country_info.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010b-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010b-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010b-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010b-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010b-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010b-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010b-JSON/country_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010b-JSON/country_info.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010b-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010b-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010b-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010b-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010b-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010b-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010b-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010b-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010b-XML/country_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010b-XML/country_info.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010b-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010b-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010b-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010b-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010b-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010b-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010b-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010b-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010c-CSV/country_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010c-CSV/country_info.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010c-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010c-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010c-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010c-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010c-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010c-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010c-JSON/country_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010c-JSON/country_info.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010c-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010c-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010c-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010c-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010c-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010c-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010c-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010c-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010c-XML/country_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010c-XML/country_info.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010c-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010c-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010c-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010c-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010c-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010c-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0010c-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0010c-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-CSV/sport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-CSV/sport.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-CSV/student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-CSV/student.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-CSV/student_sport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-CSV/student_sport.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-JSON/sport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-JSON/sport.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-JSON/student_sport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-JSON/student_sport.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-XML/sport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-XML/sport.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0011b-XML/student_sport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0011b-XML/student_sport.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012a-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012a-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012a-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012a-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012a-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012a-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012a-CSV/persons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012a-CSV/persons.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012a-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012a-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012a-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012a-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012a-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012a-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012a-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012a-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012a-JSON/persons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012a-JSON/persons.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012a-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012a-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012a-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012a-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012a-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012a-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012a-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012a-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012a-XML/persons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012a-XML/persons.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012b-CSV/lives.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012b-CSV/lives.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012b-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012b-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012b-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012b-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012b-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012b-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012b-CSV/persons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012b-CSV/persons.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012b-JSON/lives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012b-JSON/lives.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012b-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012b-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012b-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012b-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012b-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012b-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012b-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012b-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012b-JSON/persons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012b-JSON/persons.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012b-XML/lives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012b-XML/lives.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012b-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012b-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012b-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012b-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012b-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012b-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012b-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012b-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012b-XML/persons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012b-XML/persons.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012c-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012c-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012c-CSV/out.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012c-CSV/persons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012c-CSV/persons.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012c-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012c-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012c-JSON/out.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012c-JSON/out.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012c-JSON/persons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012c-JSON/persons.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012c-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012c-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012c-XML/out.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012c-XML/out.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012c-XML/persons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012c-XML/persons.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012d-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012d-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012d-CSV/persons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012d-CSV/persons.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012d-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012d-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012d-JSON/persons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012d-JSON/persons.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012d-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012d-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0012d-XML/persons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0012d-XML/persons.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0013a-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0013a-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0013a-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0013a-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0013a-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0013a-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0013a-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0013a-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0013a-JSON/persons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0013a-JSON/persons.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015a-CSV/country_en.csv: -------------------------------------------------------------------------------- 1 | Code,Name 2 | BO,"Bolivia, Plurinational State of" 3 | IE,Ireland 4 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015a-CSV/country_es.csv: -------------------------------------------------------------------------------- 1 | Code,Name 2 | BO,"Estado Plurinacional de Bolivia" 3 | IE,Irlanda 4 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015a-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015a-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015a-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015a-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015a-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015a-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015a-JSON/country_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015a-JSON/country_en.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015a-JSON/country_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015a-JSON/country_es.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015a-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015a-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015a-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015a-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015a-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015a-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015a-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015a-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015a-XML/country_en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015a-XML/country_en.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015a-XML/country_es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015a-XML/country_es.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015a-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015a-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015a-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015a-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015a-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015a-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015a-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015a-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015b-CSV/country_en.csv: -------------------------------------------------------------------------------- 1 | Code,Name 2 | BO,"Bolivia, Plurinational State of" 3 | IE,Ireland 4 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015b-CSV/country_es.csv: -------------------------------------------------------------------------------- 1 | Code,Name 2 | BO,"Estado Plurinacional de Bolivia" 3 | IE,Irlanda 4 | -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015b-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015b-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015b-JSON/country_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015b-JSON/country_en.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015b-JSON/country_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015b-JSON/country_es.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015b-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015b-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015b-XML/country_en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015b-XML/country_en.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015b-XML/country_es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015b-XML/country_es.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015b-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015b-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015b-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015b-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0015b-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0015b-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019a-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019a-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019a-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019a-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019a-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019a-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019a-CSV/persons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019a-CSV/persons.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019a-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019a-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019a-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019a-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019a-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019a-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019a-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019a-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019a-JSON/persons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019a-JSON/persons.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019a-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019a-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019a-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019a-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019a-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019a-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019a-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019a-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019a-XML/persons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019a-XML/persons.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019b-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019b-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019b-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019b-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019b-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019b-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019b-CSV/persons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019b-CSV/persons.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019b-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019b-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019b-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019b-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019b-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019b-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019b-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019b-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019b-JSON/persons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019b-JSON/persons.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019b-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019b-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019b-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019b-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019b-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019b-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019b-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019b-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0019b-XML/persons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0019b-XML/persons.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020a-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020a-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020a-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020a-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020a-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020a-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020a-CSV/student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020a-CSV/student.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020a-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020a-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020a-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020a-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020a-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020a-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020a-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020a-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020a-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020a-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020a-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020a-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020a-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020a-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020a-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020a-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020a-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020a-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020a-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020a-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020b-CSV/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020b-CSV/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020b-CSV/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020b-CSV/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020b-CSV/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020b-CSV/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020b-CSV/student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020b-CSV/student.csv -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020b-JSON/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020b-JSON/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020b-JSON/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020b-JSON/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020b-JSON/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020b-JSON/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020b-JSON/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020b-JSON/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020b-JSON/student.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020b-JSON/student.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020b-XML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020b-XML/mapping.ttl -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020b-XML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020b-XML/out.json -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020b-XML/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020b-XML/out.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020b-XML/output.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020b-XML/output.nq -------------------------------------------------------------------------------- /tests/RMLio-testCases/RMLTC0020b-XML/student.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/RMLTC0020b-XML/student.xml -------------------------------------------------------------------------------- /tests/RMLio-testCases/rmlio-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/RMLio-testCases/rmlio-tests.js -------------------------------------------------------------------------------- /tests/arrayValueMapping/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/arrayValueMapping/input.json -------------------------------------------------------------------------------- /tests/arrayValueMapping/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/arrayValueMapping/mapping.ttl -------------------------------------------------------------------------------- /tests/arrayValueMapping/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/arrayValueMapping/out.json -------------------------------------------------------------------------------- /tests/asyncFunctionMapping/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/asyncFunctionMapping/input.json -------------------------------------------------------------------------------- /tests/asyncFunctionMapping/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/asyncFunctionMapping/mapping.ttl -------------------------------------------------------------------------------- /tests/asyncFunctionMapping/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/asyncFunctionMapping/out.json -------------------------------------------------------------------------------- /tests/constantIri/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/constantIri/input.json -------------------------------------------------------------------------------- /tests/constantIri/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/constantIri/mapping.ttl -------------------------------------------------------------------------------- /tests/constantIri/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/constantIri/out.json -------------------------------------------------------------------------------- /tests/constantSubjectMapping/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/constantSubjectMapping/input.json -------------------------------------------------------------------------------- /tests/constantSubjectMapping/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/constantSubjectMapping/mapping.ttl -------------------------------------------------------------------------------- /tests/constantSubjectMapping/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/constantSubjectMapping/out.json -------------------------------------------------------------------------------- /tests/csvMappingTest/input.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/csvMappingTest/input.csv -------------------------------------------------------------------------------- /tests/csvMappingTest/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/csvMappingTest/mapping.ttl -------------------------------------------------------------------------------- /tests/csvMappingTest/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/csvMappingTest/out.nq -------------------------------------------------------------------------------- /tests/csvSemiColumn/input.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/csvSemiColumn/input.csv -------------------------------------------------------------------------------- /tests/csvSemiColumn/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/csvSemiColumn/mapping.ttl -------------------------------------------------------------------------------- /tests/csvSemiColumn/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/csvSemiColumn/out.nq -------------------------------------------------------------------------------- /tests/datatype/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/datatype/input.json -------------------------------------------------------------------------------- /tests/datatype/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/datatype/mapping.ttl -------------------------------------------------------------------------------- /tests/datatype/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/datatype/out.json -------------------------------------------------------------------------------- /tests/datatype/out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/datatype/out.nq -------------------------------------------------------------------------------- /tests/doubleJoinCondition/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/doubleJoinCondition/data.csv -------------------------------------------------------------------------------- /tests/doubleJoinCondition/data2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/doubleJoinCondition/data2.csv -------------------------------------------------------------------------------- /tests/doubleJoinCondition/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/doubleJoinCondition/mapping.ttl -------------------------------------------------------------------------------- /tests/doubleJoinCondition/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/doubleJoinCondition/out.json -------------------------------------------------------------------------------- /tests/doubleNestedMapping/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/doubleNestedMapping/input.json -------------------------------------------------------------------------------- /tests/doubleNestedMapping/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/doubleNestedMapping/mapping.ttl -------------------------------------------------------------------------------- /tests/doubleNestedMapping/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/doubleNestedMapping/out.json -------------------------------------------------------------------------------- /tests/doubleNestedMappingXML/input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/doubleNestedMappingXML/input.xml -------------------------------------------------------------------------------- /tests/doubleNestedMappingXML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/doubleNestedMappingXML/mapping.ttl -------------------------------------------------------------------------------- /tests/doubleNestedMappingXML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/doubleNestedMappingXML/out.json -------------------------------------------------------------------------------- /tests/emptyStrings/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/emptyStrings/input.json -------------------------------------------------------------------------------- /tests/emptyStrings/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/emptyStrings/mapping.ttl -------------------------------------------------------------------------------- /tests/emptyStrings/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/emptyStrings/out.json -------------------------------------------------------------------------------- /tests/escapedXml/input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/escapedXml/input.xml -------------------------------------------------------------------------------- /tests/escapedXml/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/escapedXml/mapping.ttl -------------------------------------------------------------------------------- /tests/escapedXml/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/escapedXml/out.json -------------------------------------------------------------------------------- /tests/ignoreValues/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/ignoreValues/input.json -------------------------------------------------------------------------------- /tests/ignoreValues/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/ignoreValues/mapping.ttl -------------------------------------------------------------------------------- /tests/ignoreValues/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/ignoreValues/out.json -------------------------------------------------------------------------------- /tests/iriReference/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/iriReference/input.json -------------------------------------------------------------------------------- /tests/iriReference/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/iriReference/mapping.ttl -------------------------------------------------------------------------------- /tests/iriReference/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/iriReference/out.json -------------------------------------------------------------------------------- /tests/joinSource/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/joinSource/input.json -------------------------------------------------------------------------------- /tests/joinSource/mapping_diff.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/joinSource/mapping_diff.ttl -------------------------------------------------------------------------------- /tests/joinSource/mapping_same.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/joinSource/mapping_same.ttl -------------------------------------------------------------------------------- /tests/joinSource/out_diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/joinSource/out_diff.json -------------------------------------------------------------------------------- /tests/joinSource/out_same.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/joinSource/out_same.json -------------------------------------------------------------------------------- /tests/language/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/language/input.json -------------------------------------------------------------------------------- /tests/language/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/language/mapping.ttl -------------------------------------------------------------------------------- /tests/language/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/language/out.json -------------------------------------------------------------------------------- /tests/mapfile.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/mapfile.ttl -------------------------------------------------------------------------------- /tests/mapfilexml.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/mapfilexml.ttl -------------------------------------------------------------------------------- /tests/nestedMapping/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nestedMapping/input.json -------------------------------------------------------------------------------- /tests/nestedMapping/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nestedMapping/mapping.ttl -------------------------------------------------------------------------------- /tests/nestedMapping/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nestedMapping/out.json -------------------------------------------------------------------------------- /tests/nestedMappingArray/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nestedMappingArray/input.json -------------------------------------------------------------------------------- /tests/nestedMappingArray/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nestedMappingArray/mapping.ttl -------------------------------------------------------------------------------- /tests/nestedMappingArray/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nestedMappingArray/out.json -------------------------------------------------------------------------------- /tests/nestedMappingArrayXML/input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nestedMappingArrayXML/input.xml -------------------------------------------------------------------------------- /tests/nestedMappingArrayXML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nestedMappingArrayXML/mapping.ttl -------------------------------------------------------------------------------- /tests/nestedMappingArrayXML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nestedMappingArrayXML/out.json -------------------------------------------------------------------------------- /tests/nestedMappingXML/input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nestedMappingXML/input.xml -------------------------------------------------------------------------------- /tests/nestedMappingXML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nestedMappingXML/mapping.ttl -------------------------------------------------------------------------------- /tests/nestedMappingXML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nestedMappingXML/out.json -------------------------------------------------------------------------------- /tests/nestedPredefinedFunctionMapping/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nestedPredefinedFunctionMapping/input.json -------------------------------------------------------------------------------- /tests/nestedPredefinedFunctionMapping/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nestedPredefinedFunctionMapping/mapping.ttl -------------------------------------------------------------------------------- /tests/nestedPredefinedFunctionMapping/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nestedPredefinedFunctionMapping/out.json -------------------------------------------------------------------------------- /tests/nonArrayPredicateObjectMap/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nonArrayPredicateObjectMap/input.json -------------------------------------------------------------------------------- /tests/nonArrayPredicateObjectMap/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nonArrayPredicateObjectMap/mapping.ttl -------------------------------------------------------------------------------- /tests/nonArrayPredicateObjectMap/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/nonArrayPredicateObjectMap/out.json -------------------------------------------------------------------------------- /tests/optionParameterFunctionMapping/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/optionParameterFunctionMapping/input.json -------------------------------------------------------------------------------- /tests/optionParameterFunctionMapping/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/optionParameterFunctionMapping/mapping.ttl -------------------------------------------------------------------------------- /tests/optionParameterFunctionMapping/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/optionParameterFunctionMapping/out.json -------------------------------------------------------------------------------- /tests/pathCsvJoin/input.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/pathCsvJoin/input.csv -------------------------------------------------------------------------------- /tests/pathCsvJoin/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/pathCsvJoin/mapping.ttl -------------------------------------------------------------------------------- /tests/pathCsvJoin/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/pathCsvJoin/out.json -------------------------------------------------------------------------------- /tests/pathJsonJoin/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/pathJsonJoin/input.json -------------------------------------------------------------------------------- /tests/pathJsonJoin/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/pathJsonJoin/mapping.ttl -------------------------------------------------------------------------------- /tests/pathJsonJoin/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/pathJsonJoin/out.json -------------------------------------------------------------------------------- /tests/pathXmlJoin/input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/pathXmlJoin/input.xml -------------------------------------------------------------------------------- /tests/pathXmlJoin/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/pathXmlJoin/mapping.ttl -------------------------------------------------------------------------------- /tests/pathXmlJoin/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/pathXmlJoin/out.json -------------------------------------------------------------------------------- /tests/performanceTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/performanceTest.js -------------------------------------------------------------------------------- /tests/predefinedFunctionMapping/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/predefinedFunctionMapping/input.json -------------------------------------------------------------------------------- /tests/predefinedFunctionMapping/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/predefinedFunctionMapping/mapping.ttl -------------------------------------------------------------------------------- /tests/predefinedFunctionMapping/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/predefinedFunctionMapping/out.json -------------------------------------------------------------------------------- /tests/straightDoubleMapping/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightDoubleMapping/input.json -------------------------------------------------------------------------------- /tests/straightDoubleMapping/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightDoubleMapping/mapping.ttl -------------------------------------------------------------------------------- /tests/straightDoubleMapping/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightDoubleMapping/out.json -------------------------------------------------------------------------------- /tests/straightDoubleMappingXML/input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightDoubleMappingXML/input.xml -------------------------------------------------------------------------------- /tests/straightDoubleMappingXML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightDoubleMappingXML/mapping.ttl -------------------------------------------------------------------------------- /tests/straightDoubleMappingXML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightDoubleMappingXML/out.json -------------------------------------------------------------------------------- /tests/straightMapping/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightMapping/input.json -------------------------------------------------------------------------------- /tests/straightMapping/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightMapping/mapping.ttl -------------------------------------------------------------------------------- /tests/straightMapping/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightMapping/out.json -------------------------------------------------------------------------------- /tests/straightMappingArray/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightMappingArray/input.json -------------------------------------------------------------------------------- /tests/straightMappingArray/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightMappingArray/mapping.ttl -------------------------------------------------------------------------------- /tests/straightMappingArray/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightMappingArray/out.json -------------------------------------------------------------------------------- /tests/straightMappingArrayXML/input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightMappingArrayXML/input.xml -------------------------------------------------------------------------------- /tests/straightMappingArrayXML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightMappingArrayXML/mapping.ttl -------------------------------------------------------------------------------- /tests/straightMappingArrayXML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightMappingArrayXML/out.json -------------------------------------------------------------------------------- /tests/straightMappingXML/input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightMappingXML/input.xml -------------------------------------------------------------------------------- /tests/straightMappingXML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightMappingXML/mapping.ttl -------------------------------------------------------------------------------- /tests/straightMappingXML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/straightMappingXML/out.json -------------------------------------------------------------------------------- /tests/subjFuncMap/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/subjFuncMap/input.json -------------------------------------------------------------------------------- /tests/subjFuncMap/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/subjFuncMap/mapping.ttl -------------------------------------------------------------------------------- /tests/subjFuncMap/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/subjFuncMap/out.json -------------------------------------------------------------------------------- /tests/subjFuncMap2/input.csv: -------------------------------------------------------------------------------- 1 | Id,Value 2 | 123,Foo 3 | 456,Bar 4 | -------------------------------------------------------------------------------- /tests/subjFuncMap2/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/subjFuncMap2/mapping.ttl -------------------------------------------------------------------------------- /tests/subjFuncMap2/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/subjFuncMap2/out.json -------------------------------------------------------------------------------- /tests/subjectMappingXML/input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/subjectMappingXML/input.xml -------------------------------------------------------------------------------- /tests/subjectMappingXML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/subjectMappingXML/mapping.ttl -------------------------------------------------------------------------------- /tests/subjectMappingXML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/subjectMappingXML/out.json -------------------------------------------------------------------------------- /tests/templateMappingXml/input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/templateMappingXml/input.xml -------------------------------------------------------------------------------- /tests/templateMappingXml/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/templateMappingXml/mapping.ttl -------------------------------------------------------------------------------- /tests/templateMappingXml/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/templateMappingXml/out.json -------------------------------------------------------------------------------- /tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/test.js -------------------------------------------------------------------------------- /tests/tripleNestedMapping/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/tripleNestedMapping/input.json -------------------------------------------------------------------------------- /tests/tripleNestedMapping/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/tripleNestedMapping/mapping.ttl -------------------------------------------------------------------------------- /tests/tripleNestedMapping/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/tripleNestedMapping/out.json -------------------------------------------------------------------------------- /tests/tripleNestedMappingXML/input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/tripleNestedMappingXML/input.xml -------------------------------------------------------------------------------- /tests/tripleNestedMappingXML/mapping.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/tripleNestedMappingXML/mapping.ttl -------------------------------------------------------------------------------- /tests/tripleNestedMappingXML/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semantifyit/RocketRML/HEAD/tests/tripleNestedMappingXML/out.json --------------------------------------------------------------------------------