├── .github ├── ISSUE_TEMPLATE │ ├── bug-report---.md │ ├── config.yml │ └── feature-request---.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ └── ci.yml ├── .gitignore ├── .golangci.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTORS.md ├── LICENSE ├── Makefile ├── README.md ├── conformance_report.jsonld ├── examples ├── compact.go ├── expand.go ├── flatten.go ├── frame.go ├── from_rdf.go ├── normalize.go └── to_rdf.go ├── go.mod ├── go.sum └── ld ├── api.go ├── api_compact.go ├── api_expand.go ├── api_frame.go ├── api_frame_test.go ├── api_from_rdf.go ├── api_generate_node_map.go ├── api_normalize.go ├── api_to_rdf.go ├── context.go ├── context_test.go ├── document_loader.go ├── document_loader_test.go ├── errors.go ├── errors_test.go ├── example_test.go ├── id_issuer.go ├── internal └── jsoncanonicalizer │ ├── README.md │ ├── es6numfmt.go │ └── jsoncanonicalizer.go ├── json_canonicalizer_test.go ├── node.go ├── options.go ├── options_test.go ├── processor.go ├── processor_test.go ├── rdf_compare_test.go ├── rdf_constants.go ├── rdf_dataset.go ├── rdf_dataset_test.go ├── serialize_nquads.go ├── serialize_turtle.go ├── skip_test.go ├── testdata ├── LICENSE.md ├── README.md ├── Rakefile ├── compact-manifest.html ├── compact-manifest.jsonld ├── compact │ ├── 0001-context.jsonld │ ├── 0001-in.jsonld │ ├── 0001-out.jsonld │ ├── 0002-context.jsonld │ ├── 0002-in.jsonld │ ├── 0002-out.jsonld │ ├── 0003-context.jsonld │ ├── 0003-in.jsonld │ ├── 0003-out.jsonld │ ├── 0004-context.jsonld │ ├── 0004-in.jsonld │ ├── 0004-out.jsonld │ ├── 0005-context.jsonld │ ├── 0005-in.jsonld │ ├── 0005-out.jsonld │ ├── 0006-context.jsonld │ ├── 0006-in.jsonld │ ├── 0006-out.jsonld │ ├── 0007-context.jsonld │ ├── 0007-in.jsonld │ ├── 0007-out.jsonld │ ├── 0008-context.jsonld │ ├── 0008-in.jsonld │ ├── 0008-out.jsonld │ ├── 0009-context.jsonld │ ├── 0009-in.jsonld │ ├── 0009-out.jsonld │ ├── 0010-context.jsonld │ ├── 0010-in.jsonld │ ├── 0010-out.jsonld │ ├── 0011-context.jsonld │ ├── 0011-in.jsonld │ ├── 0011-out.jsonld │ ├── 0012-context.jsonld │ ├── 0012-in.jsonld │ ├── 0012-out.jsonld │ ├── 0013-context.jsonld │ ├── 0013-in.jsonld │ ├── 0013-out.jsonld │ ├── 0014-context.jsonld │ ├── 0014-in.jsonld │ ├── 0014-out.jsonld │ ├── 0015-context.jsonld │ ├── 0015-in.jsonld │ ├── 0015-out.jsonld │ ├── 0016-context.jsonld │ ├── 0016-in.jsonld │ ├── 0016-out.jsonld │ ├── 0017-context.jsonld │ ├── 0017-in.jsonld │ ├── 0017-out.jsonld │ ├── 0018-context.jsonld │ ├── 0018-in.jsonld │ ├── 0018-out.jsonld │ ├── 0019-context.jsonld │ ├── 0019-in.jsonld │ ├── 0019-out.jsonld │ ├── 0020-context.jsonld │ ├── 0020-in.jsonld │ ├── 0020-out.jsonld │ ├── 0021-context.jsonld │ ├── 0021-in.jsonld │ ├── 0021-out.jsonld │ ├── 0022-context.jsonld │ ├── 0022-in.jsonld │ ├── 0022-out.jsonld │ ├── 0023-context.jsonld │ ├── 0023-in.jsonld │ ├── 0023-out.jsonld │ ├── 0024-context.jsonld │ ├── 0024-in.jsonld │ ├── 0024-out.jsonld │ ├── 0025-context.jsonld │ ├── 0025-in.jsonld │ ├── 0025-out.jsonld │ ├── 0026-context.jsonld │ ├── 0026-in.jsonld │ ├── 0026-out.jsonld │ ├── 0027-context.jsonld │ ├── 0027-in.jsonld │ ├── 0027-out.jsonld │ ├── 0028-context.jsonld │ ├── 0028-in.jsonld │ ├── 0028-out.jsonld │ ├── 0029-context.jsonld │ ├── 0029-in.jsonld │ ├── 0029-out.jsonld │ ├── 0030-context.jsonld │ ├── 0030-in.jsonld │ ├── 0030-out.jsonld │ ├── 0031-context.jsonld │ ├── 0031-in.jsonld │ ├── 0031-out.jsonld │ ├── 0032-context.jsonld │ ├── 0032-in.jsonld │ ├── 0032-out.jsonld │ ├── 0033-context.jsonld │ ├── 0033-in.jsonld │ ├── 0033-out.jsonld │ ├── 0034-context.jsonld │ ├── 0034-in.jsonld │ ├── 0034-out.jsonld │ ├── 0035-context.jsonld │ ├── 0035-in.jsonld │ ├── 0035-out.jsonld │ ├── 0036-context.jsonld │ ├── 0036-in.jsonld │ ├── 0036-out.jsonld │ ├── 0037-context.jsonld │ ├── 0037-in.jsonld │ ├── 0037-out.jsonld │ ├── 0038-context.jsonld │ ├── 0038-in.jsonld │ ├── 0038-out.jsonld │ ├── 0038a-out.jsonld │ ├── 0039-context.jsonld │ ├── 0039-in.jsonld │ ├── 0039-out.jsonld │ ├── 0040-context.jsonld │ ├── 0040-in.jsonld │ ├── 0040-out.jsonld │ ├── 0041-context.jsonld │ ├── 0041-in.jsonld │ ├── 0041-out.jsonld │ ├── 0042-context.jsonld │ ├── 0042-in.jsonld │ ├── 0042-out.jsonld │ ├── 0043-context.jsonld │ ├── 0043-in.jsonld │ ├── 0043-out.jsonld │ ├── 0044-context.jsonld │ ├── 0044-in.jsonld │ ├── 0044-out.jsonld │ ├── 0045-context.jsonld │ ├── 0045-in.jsonld │ ├── 0045-out.jsonld │ ├── 0046-context.jsonld │ ├── 0046-in.jsonld │ ├── 0046-out.jsonld │ ├── 0047-context.jsonld │ ├── 0047-in.jsonld │ ├── 0047-out.jsonld │ ├── 0048-context.jsonld │ ├── 0048-in.jsonld │ ├── 0048-out.jsonld │ ├── 0049-context.jsonld │ ├── 0049-in.jsonld │ ├── 0049-out.jsonld │ ├── 0050-context.jsonld │ ├── 0050-in.jsonld │ ├── 0050-out.jsonld │ ├── 0051-context.jsonld │ ├── 0051-in.jsonld │ ├── 0051-out.jsonld │ ├── 0052-context.jsonld │ ├── 0052-in.jsonld │ ├── 0052-out.jsonld │ ├── 0053-context.jsonld │ ├── 0053-in.jsonld │ ├── 0053-out.jsonld │ ├── 0054-context.jsonld │ ├── 0054-in.jsonld │ ├── 0054-out.jsonld │ ├── 0055-context.jsonld │ ├── 0055-in.jsonld │ ├── 0055-out.jsonld │ ├── 0056-context.jsonld │ ├── 0056-in.jsonld │ ├── 0056-out.jsonld │ ├── 0057-context.jsonld │ ├── 0057-in.jsonld │ ├── 0057-out.jsonld │ ├── 0058-context.jsonld │ ├── 0058-in.jsonld │ ├── 0058-out.jsonld │ ├── 0059-context.jsonld │ ├── 0059-in.jsonld │ ├── 0059-out.jsonld │ ├── 0060-context.jsonld │ ├── 0060-in.jsonld │ ├── 0060-out.jsonld │ ├── 0061-context.jsonld │ ├── 0061-in.jsonld │ ├── 0061-out.jsonld │ ├── 0062-context.jsonld │ ├── 0062-in.jsonld │ ├── 0062-out.jsonld │ ├── 0063-context.jsonld │ ├── 0063-in.jsonld │ ├── 0063-out.jsonld │ ├── 0064-context.jsonld │ ├── 0064-in.jsonld │ ├── 0064-out.jsonld │ ├── 0065-context.jsonld │ ├── 0065-in.jsonld │ ├── 0065-out.jsonld │ ├── 0066-context.jsonld │ ├── 0066-in.jsonld │ ├── 0066-out.jsonld │ ├── 0067-context.jsonld │ ├── 0067-in.jsonld │ ├── 0067-out.jsonld │ ├── 0068-context.jsonld │ ├── 0068-in.jsonld │ ├── 0068-out.jsonld │ ├── 0069-context.jsonld │ ├── 0069-in.jsonld │ ├── 0069-out.jsonld │ ├── 0070-context.jsonld │ ├── 0070-in.jsonld │ ├── 0070-out.jsonld │ ├── 0071-context.jsonld │ ├── 0071-in.jsonld │ ├── 0071-out.jsonld │ ├── 0072-context.jsonld │ ├── 0072-in.jsonld │ ├── 0072-out.jsonld │ ├── 0073-context.jsonld │ ├── 0073-in.jsonld │ ├── 0073-out.jsonld │ ├── 0074-context.jsonld │ ├── 0074-in.jsonld │ ├── 0074-out.jsonld │ ├── 0075-context.jsonld │ ├── 0075-in.jsonld │ ├── 0075-out.jsonld │ ├── 0076-context.jsonld │ ├── 0076-in.jsonld │ ├── 0076-out.jsonld │ ├── 0077-context.jsonld │ ├── 0077-in.jsonld │ ├── 0077-out.jsonld │ ├── 0078-context.jsonld │ ├── 0078-in.jsonld │ ├── 0078-out.jsonld │ ├── 0079-context.jsonld │ ├── 0079-in.jsonld │ ├── 0079-out.jsonld │ ├── 0080-context.jsonld │ ├── 0080-in.jsonld │ ├── 0080-out.jsonld │ ├── 0081-context.jsonld │ ├── 0081-in.jsonld │ ├── 0081-out.jsonld │ ├── 0082-context.jsonld │ ├── 0082-in.jsonld │ ├── 0082-out.jsonld │ ├── 0083-context.jsonld │ ├── 0083-in.jsonld │ ├── 0083-out.jsonld │ ├── 0084-context.jsonld │ ├── 0084-in.jsonld │ ├── 0084-out.jsonld │ ├── 0085-context.jsonld │ ├── 0085-in.jsonld │ ├── 0085-out.jsonld │ ├── 0086-context.jsonld │ ├── 0086-in.jsonld │ ├── 0086-out.jsonld │ ├── 0087-context.jsonld │ ├── 0087-in.jsonld │ ├── 0087-out.jsonld │ ├── 0088-context.jsonld │ ├── 0088-in.jsonld │ ├── 0088-out.jsonld │ ├── 0089-context.jsonld │ ├── 0089-in.jsonld │ ├── 0089-out.jsonld │ ├── 0090-context.jsonld │ ├── 0090-in.jsonld │ ├── 0090-out.jsonld │ ├── 0091-context.jsonld │ ├── 0091-in.jsonld │ ├── 0091-out.jsonld │ ├── 0092-context.jsonld │ ├── 0092-in.jsonld │ ├── 0092-out.jsonld │ ├── 0093-context.jsonld │ ├── 0093-in.jsonld │ ├── 0093-out.jsonld │ ├── 0094-context.jsonld │ ├── 0094-in.jsonld │ ├── 0094-out.jsonld │ ├── 0095-context.jsonld │ ├── 0095-in.jsonld │ ├── 0095-out.jsonld │ ├── 0096-context.jsonld │ ├── 0096-in.jsonld │ ├── 0096-out.jsonld │ ├── 0097-context.jsonld │ ├── 0097-in.jsonld │ ├── 0097-out.jsonld │ ├── 0098-context.jsonld │ ├── 0098-in.jsonld │ ├── 0098-out.jsonld │ ├── 0099-context.jsonld │ ├── 0099-in.jsonld │ ├── 0099-out.jsonld │ ├── 0100-context.jsonld │ ├── 0100-in.jsonld │ ├── 0100-out.jsonld │ ├── 0101-context.jsonld │ ├── 0101-in.jsonld │ ├── 0101-out.jsonld │ ├── 0102-context.jsonld │ ├── 0102-in.jsonld │ ├── 0102-out.jsonld │ ├── 0103-context.jsonld │ ├── 0103-in.jsonld │ ├── 0103-out.jsonld │ ├── 0104-context.jsonld │ ├── 0104-in.jsonld │ ├── 0104-out.jsonld │ ├── 0105-context.jsonld │ ├── 0105-in.jsonld │ ├── 0105-out.jsonld │ ├── 0106-context.jsonld │ ├── 0106-in.jsonld │ ├── 0106-out.jsonld │ ├── 0107-context.jsonld │ ├── 0107-in.jsonld │ ├── 0107-out.jsonld │ ├── 0108-context.jsonld │ ├── 0108-in.jsonld │ ├── 0108-out.jsonld │ ├── 0109-context.jsonld │ ├── 0109-in.jsonld │ ├── 0109-out.jsonld │ ├── 0110-context.jsonld │ ├── 0110-in.jsonld │ ├── 0110-out.jsonld │ ├── c001-context.jsonld │ ├── c001-in.jsonld │ ├── c001-out.jsonld │ ├── c002-context.jsonld │ ├── c002-in.jsonld │ ├── c002-out.jsonld │ ├── c003-context.jsonld │ ├── c003-in.jsonld │ ├── c003-out.jsonld │ ├── c004-context.jsonld │ ├── c004-in.jsonld │ ├── c004-out.jsonld │ ├── c005-context.jsonld │ ├── c005-in.jsonld │ ├── c005-out.jsonld │ ├── c006-context.jsonld │ ├── c006-in.jsonld │ ├── c006-out.jsonld │ ├── c007-context.jsonld │ ├── c007-in.jsonld │ ├── c007-out.jsonld │ ├── c008-context.jsonld │ ├── c008-in.jsonld │ ├── c008-out.jsonld │ ├── c009-context.jsonld │ ├── c009-in.jsonld │ ├── c009-out.jsonld │ ├── c010-context.jsonld │ ├── c010-in.jsonld │ ├── c010-out.jsonld │ ├── c011-context.jsonld │ ├── c011-in.jsonld │ ├── c011-out.jsonld │ ├── c012-context.jsonld │ ├── c012-in.jsonld │ ├── c012-out.jsonld │ ├── c013-context.jsonld │ ├── c013-in.jsonld │ ├── c013-out.jsonld │ ├── c014-context.jsonld │ ├── c014-in.jsonld │ ├── c014-out.jsonld │ ├── c015-context.jsonld │ ├── c015-in.jsonld │ ├── c015-out.jsonld │ ├── c016-context.jsonld │ ├── c016-in.jsonld │ ├── c016-out.jsonld │ ├── c017-context.jsonld │ ├── c017-in.jsonld │ ├── c017-out.jsonld │ ├── c018-context.jsonld │ ├── c018-in.jsonld │ ├── c018-out.jsonld │ ├── c019-context.jsonld │ ├── c019-in.jsonld │ ├── c019-out.jsonld │ ├── c020-context.jsonld │ ├── c020-in.jsonld │ ├── c020-out.jsonld │ ├── c021-context.jsonld │ ├── c021-in.jsonld │ ├── c021-out.jsonld │ ├── c022-context.jsonld │ ├── c022-in.jsonld │ ├── c022-out.jsonld │ ├── c023-context.jsonld │ ├── c023-in.jsonld │ ├── c023-out.jsonld │ ├── c024-context.jsonld │ ├── c024-in.jsonld │ ├── c024-out.jsonld │ ├── c025-context.jsonld │ ├── c025-in.jsonld │ ├── c025-out.jsonld │ ├── c026-context.jsonld │ ├── c026-in.jsonld │ ├── c026-out.jsonld │ ├── c027-context.jsonld │ ├── c027-in.jsonld │ ├── c027-out.jsonld │ ├── di01-context.jsonld │ ├── di01-in.jsonld │ ├── di01-out.jsonld │ ├── di02-context.jsonld │ ├── di02-in.jsonld │ ├── di02-out.jsonld │ ├── di03-context.jsonld │ ├── di03-in.jsonld │ ├── di03-out.jsonld │ ├── di04-context.jsonld │ ├── di04-in.jsonld │ ├── di04-out.jsonld │ ├── di05-context.jsonld │ ├── di05-in.jsonld │ ├── di05-out.jsonld │ ├── di06-context.jsonld │ ├── di06-in.jsonld │ ├── di06-out.jsonld │ ├── di07-context.jsonld │ ├── di07-in.jsonld │ ├── di07-out.jsonld │ ├── e001-context.jsonld │ ├── e001-in.jsonld │ ├── e002-context.jsonld │ ├── e002-in.jsonld │ ├── en01-context.jsonld │ ├── en01-in.jsonld │ ├── ep05-context.jsonld │ ├── ep05-in.jsonld │ ├── ep06-context.jsonld │ ├── ep06-in.jsonld │ ├── ep07-context.jsonld │ ├── ep07-in.jsonld │ ├── ep08-context.jsonld │ ├── ep08-in.jsonld │ ├── ep09-context.jsonld │ ├── ep09-in.jsonld │ ├── ep10-context.jsonld │ ├── ep10-in.jsonld │ ├── ep11-context.jsonld │ ├── ep11-in.jsonld │ ├── ep12-context.jsonld │ ├── ep12-in.jsonld │ ├── ep13-context.jsonld │ ├── ep13-in.jsonld │ ├── ep14-context.jsonld │ ├── ep14-in.jsonld │ ├── ep15-context.jsonld │ ├── ep15-in.jsonld │ ├── in01-context.jsonld │ ├── in01-in.jsonld │ ├── in01-out.jsonld │ ├── in02-context.jsonld │ ├── in02-in.jsonld │ ├── in02-out.jsonld │ ├── in03-context.jsonld │ ├── in03-in.jsonld │ ├── in03-out.jsonld │ ├── in04-context.jsonld │ ├── in04-in.jsonld │ ├── in04-out.jsonld │ ├── in05-context.jsonld │ ├── in05-in.jsonld │ ├── in05-out.jsonld │ ├── js01-context.jsonld │ ├── js01-in.jsonld │ ├── js01-out.jsonld │ ├── js02-context.jsonld │ ├── js02-in.jsonld │ ├── js02-out.jsonld │ ├── js03-context.jsonld │ ├── js03-in.jsonld │ ├── js03-out.jsonld │ ├── js04-context.jsonld │ ├── js04-in.jsonld │ ├── js04-out.jsonld │ ├── js05-context.jsonld │ ├── js05-in.jsonld │ ├── js05-out.jsonld │ ├── js06-context.jsonld │ ├── js06-in.jsonld │ ├── js06-out.jsonld │ ├── js07-context.jsonld │ ├── js07-in.jsonld │ ├── js07-out.jsonld │ ├── js08-context.jsonld │ ├── js08-in.jsonld │ ├── js08-out.jsonld │ ├── js09-context.jsonld │ ├── js09-in.jsonld │ ├── js09-out.jsonld │ ├── js10-context.jsonld │ ├── js10-in.jsonld │ ├── js10-out.jsonld │ ├── js11-context.jsonld │ ├── js11-in.jsonld │ ├── js11-out.jsonld │ ├── la01-context.jsonld │ ├── la01-in.jsonld │ ├── la01-out.jsonld │ ├── li01-context.jsonld │ ├── li01-in.jsonld │ ├── li01-out.jsonld │ ├── li02-context.jsonld │ ├── li02-in.jsonld │ ├── li02-out.jsonld │ ├── li03-context.jsonld │ ├── li03-in.jsonld │ ├── li03-out.jsonld │ ├── li04-context.jsonld │ ├── li04-in.jsonld │ ├── li04-out.jsonld │ ├── li05-context.jsonld │ ├── li05-in.jsonld │ ├── li05-out.jsonld │ ├── m001-context.jsonld │ ├── m001-in.jsonld │ ├── m001-out.jsonld │ ├── m002-context.jsonld │ ├── m002-in.jsonld │ ├── m002-out.jsonld │ ├── m003-context.jsonld │ ├── m003-in.jsonld │ ├── m003-out.jsonld │ ├── m004-context.jsonld │ ├── m004-in.jsonld │ ├── m004-out.jsonld │ ├── m005-context.jsonld │ ├── m005-in.jsonld │ ├── m005-out.jsonld │ ├── m006-context.jsonld │ ├── m006-in.jsonld │ ├── m006-out.jsonld │ ├── m007-context.jsonld │ ├── m007-in.jsonld │ ├── m007-out.jsonld │ ├── m008-context.jsonld │ ├── m008-in.jsonld │ ├── m008-out.jsonld │ ├── m009-context.jsonld │ ├── m009-in.jsonld │ ├── m009-out.jsonld │ ├── m010-context.jsonld │ ├── m010-in.jsonld │ ├── m010-out.jsonld │ ├── m011-context.jsonld │ ├── m011-in.jsonld │ ├── m011-out.jsonld │ ├── m012-context.jsonld │ ├── m012-in.jsonld │ ├── m012-out.jsonld │ ├── m013-context.jsonld │ ├── m013-in.jsonld │ ├── m013-out.jsonld │ ├── m014-context.jsonld │ ├── m014-in.jsonld │ ├── m014-out.jsonld │ ├── m015-context.jsonld │ ├── m015-in.jsonld │ ├── m015-out.jsonld │ ├── m016-context.jsonld │ ├── m016-in.jsonld │ ├── m016-out.jsonld │ ├── m017-context.jsonld │ ├── m017-in.jsonld │ ├── m017-out.jsonld │ ├── m018-context.jsonld │ ├── m018-in.jsonld │ ├── m018-out.jsonld │ ├── m019-context.jsonld │ ├── m019-in.jsonld │ ├── m019-out.jsonld │ ├── m020-context.jsonld │ ├── m020-in.jsonld │ ├── m020-out.jsonld │ ├── m021-context.jsonld │ ├── m021-in.jsonld │ ├── m021-out.jsonld │ ├── m022-context.jsonld │ ├── m022-in.jsonld │ ├── m022-out.jsonld │ ├── n001-context.jsonld │ ├── n001-in.jsonld │ ├── n001-out.jsonld │ ├── n002-context.jsonld │ ├── n002-in.jsonld │ ├── n002-out.jsonld │ ├── n003-context.jsonld │ ├── n003-in.jsonld │ ├── n003-out.jsonld │ ├── n004-context.jsonld │ ├── n004-in.jsonld │ ├── n004-out.jsonld │ ├── n005-context.jsonld │ ├── n005-in.jsonld │ ├── n005-out.jsonld │ ├── n006-context.jsonld │ ├── n006-in.jsonld │ ├── n006-out.jsonld │ ├── n007-context.jsonld │ ├── n007-in.jsonld │ ├── n007-out.jsonld │ ├── n008-context.jsonld │ ├── n008-in.jsonld │ ├── n008-out.jsonld │ ├── n009-context.jsonld │ ├── n009-in.jsonld │ ├── n009-out.jsonld │ ├── n010-context.jsonld │ ├── n010-in.jsonld │ ├── n010-out.jsonld │ ├── n011-context.jsonld │ ├── n011-in.jsonld │ ├── n011-out.jsonld │ ├── p001-context.jsonld │ ├── p001-in.jsonld │ ├── p001-out.jsonld │ ├── p002-context.jsonld │ ├── p002-in.jsonld │ ├── p002-out.jsonld │ ├── p003-context.jsonld │ ├── p003-in.jsonld │ ├── p003-out.jsonld │ ├── p004-context.jsonld │ ├── p004-in.jsonld │ ├── p004-out.jsonld │ ├── p005-context.jsonld │ ├── p005-in.jsonld │ ├── p005-out.jsonld │ ├── p006-context.jsonld │ ├── p006-in.jsonld │ ├── p006-out.jsonld │ ├── p007-context.jsonld │ ├── p007-in.jsonld │ ├── p007-out.jsonld │ ├── p008-context.jsonld │ ├── p008-in.jsonld │ ├── p008-out.jsonld │ ├── pi01-context.jsonld │ ├── pi01-in.jsonld │ ├── pi01-out.jsonld │ ├── pi02-context.jsonld │ ├── pi02-in.jsonld │ ├── pi02-out.jsonld │ ├── pi03-context.jsonld │ ├── pi03-in.jsonld │ ├── pi03-out.jsonld │ ├── pi04-context.jsonld │ ├── pi04-in.jsonld │ ├── pi04-out.jsonld │ ├── pi05-context.jsonld │ ├── pi05-in.jsonld │ ├── pi05-out.jsonld │ ├── pi06-context.jsonld │ ├── pi06-in.jsonld │ ├── pi06-out.jsonld │ ├── pr01-context.jsonld │ ├── pr01-in.jsonld │ ├── pr02-context.jsonld │ ├── pr02-in.jsonld │ ├── pr03-context.jsonld │ ├── pr03-in.jsonld │ ├── pr04-context.jsonld │ ├── pr04-in.jsonld │ ├── pr04-out.jsonld │ ├── pr05-context.jsonld │ ├── pr05-in.jsonld │ ├── pr05-out.jsonld │ ├── r001-context.jsonld │ ├── r001-in.jsonld │ ├── r001-out.jsonld │ ├── r002-context.jsonld │ ├── r002-in.jsonld │ ├── r002-out.jsonld │ ├── s001-context.jsonld │ ├── s001-in.jsonld │ ├── s001-out.jsonld │ ├── s002-context.jsonld │ ├── s002-in.jsonld │ ├── s002-out.jsonld │ ├── tn01-context.jsonld │ ├── tn01-in.jsonld │ ├── tn01-out.jsonld │ ├── tn02-context.jsonld │ ├── tn02-in.jsonld │ ├── tn02-out.jsonld │ ├── tn03-context.jsonld │ ├── tn03-in.jsonld │ └── tn03-out.jsonld ├── composer.json ├── context.jsonld ├── expand-manifest.html ├── expand-manifest.jsonld ├── expand │ ├── 0001-in.jsonld │ ├── 0001-out.jsonld │ ├── 0002-in.jsonld │ ├── 0002-out.jsonld │ ├── 0003-in.jsonld │ ├── 0003-out.jsonld │ ├── 0004-in.jsonld │ ├── 0004-out.jsonld │ ├── 0005-in.jsonld │ ├── 0005-out.jsonld │ ├── 0006-in.jsonld │ ├── 0006-out.jsonld │ ├── 0007-in.jsonld │ ├── 0007-out.jsonld │ ├── 0008-in.jsonld │ ├── 0008-out.jsonld │ ├── 0009-in.jsonld │ ├── 0009-out.jsonld │ ├── 0010-in.jsonld │ ├── 0010-out.jsonld │ ├── 0011-in.jsonld │ ├── 0011-out.jsonld │ ├── 0012-in.jsonld │ ├── 0012-out.jsonld │ ├── 0013-in.jsonld │ ├── 0013-out.jsonld │ ├── 0014-in.jsonld │ ├── 0014-out.jsonld │ ├── 0015-in.jsonld │ ├── 0015-out.jsonld │ ├── 0016-in.jsonld │ ├── 0016-out.jsonld │ ├── 0017-in.jsonld │ ├── 0017-out.jsonld │ ├── 0018-in.jsonld │ ├── 0018-out.jsonld │ ├── 0019-in.jsonld │ ├── 0019-out.jsonld │ ├── 0020-in.jsonld │ ├── 0020-out.jsonld │ ├── 0021-in.jsonld │ ├── 0021-out.jsonld │ ├── 0022-in.jsonld │ ├── 0022-out.jsonld │ ├── 0023-in.jsonld │ ├── 0023-out.jsonld │ ├── 0024-in.jsonld │ ├── 0024-out.jsonld │ ├── 0025-in.jsonld │ ├── 0025-out.jsonld │ ├── 0026-in.jsonld │ ├── 0026-out.jsonld │ ├── 0027-in.jsonld │ ├── 0027-out.jsonld │ ├── 0028-in.jsonld │ ├── 0028-out.jsonld │ ├── 0029-in.jsonld │ ├── 0029-out.jsonld │ ├── 0030-in.jsonld │ ├── 0030-out.jsonld │ ├── 0031-in.jsonld │ ├── 0031-out.jsonld │ ├── 0032-in.jsonld │ ├── 0032-out.jsonld │ ├── 0033-in.jsonld │ ├── 0033-out.jsonld │ ├── 0034-in.jsonld │ ├── 0034-out.jsonld │ ├── 0035-in.jsonld │ ├── 0035-out.jsonld │ ├── 0036-in.jsonld │ ├── 0036-out.jsonld │ ├── 0037-in.jsonld │ ├── 0037-out.jsonld │ ├── 0038-in.jsonld │ ├── 0038-out.jsonld │ ├── 0039-in.jsonld │ ├── 0039-out.jsonld │ ├── 0040-in.jsonld │ ├── 0040-out.jsonld │ ├── 0041-in.jsonld │ ├── 0041-out.jsonld │ ├── 0042-in.jsonld │ ├── 0042-out.jsonld │ ├── 0043-in.jsonld │ ├── 0043-out.jsonld │ ├── 0044-in.jsonld │ ├── 0044-out.jsonld │ ├── 0045-in.jsonld │ ├── 0045-out.jsonld │ ├── 0046-in.jsonld │ ├── 0046-out.jsonld │ ├── 0047-in.jsonld │ ├── 0047-out.jsonld │ ├── 0048-in.jsonld │ ├── 0048-out.jsonld │ ├── 0049-in.jsonld │ ├── 0049-out.jsonld │ ├── 0050-in.jsonld │ ├── 0050-out.jsonld │ ├── 0051-in.jsonld │ ├── 0051-out.jsonld │ ├── 0052-in.jsonld │ ├── 0052-out.jsonld │ ├── 0053-in.jsonld │ ├── 0053-out.jsonld │ ├── 0054-in.jsonld │ ├── 0054-out.jsonld │ ├── 0055-in.jsonld │ ├── 0055-out.jsonld │ ├── 0056-in.jsonld │ ├── 0056-out.jsonld │ ├── 0057-in.jsonld │ ├── 0057-out.jsonld │ ├── 0058-in.jsonld │ ├── 0058-out.jsonld │ ├── 0059-in.jsonld │ ├── 0059-out.jsonld │ ├── 0060-in.jsonld │ ├── 0060-out.jsonld │ ├── 0061-in.jsonld │ ├── 0061-out.jsonld │ ├── 0062-in.jsonld │ ├── 0062-out.jsonld │ ├── 0063-in.jsonld │ ├── 0063-out.jsonld │ ├── 0064-in.jsonld │ ├── 0064-out.jsonld │ ├── 0065-in.jsonld │ ├── 0065-out.jsonld │ ├── 0066-in.jsonld │ ├── 0066-out.jsonld │ ├── 0067-in.jsonld │ ├── 0067-out.jsonld │ ├── 0068-in.jsonld │ ├── 0068-out.jsonld │ ├── 0069-in.jsonld │ ├── 0069-out.jsonld │ ├── 0070-in.jsonld │ ├── 0070-out.jsonld │ ├── 0071-in.jsonld │ ├── 0071-out.jsonld │ ├── 0072-in.jsonld │ ├── 0072-out.jsonld │ ├── 0073-in.jsonld │ ├── 0073-out.jsonld │ ├── 0074-in.jsonld │ ├── 0074-out.jsonld │ ├── 0075-in.jsonld │ ├── 0075-out.jsonld │ ├── 0076-in.jsonld │ ├── 0076-out.jsonld │ ├── 0077-context.jsonld │ ├── 0077-in.jsonld │ ├── 0077-out.jsonld │ ├── 0078-in.jsonld │ ├── 0078-out.jsonld │ ├── 0079-in.jsonld │ ├── 0079-out.jsonld │ ├── 0080-in.jsonld │ ├── 0080-out.jsonld │ ├── 0081-in.jsonld │ ├── 0081-out.jsonld │ ├── 0082-in.jsonld │ ├── 0082-out.jsonld │ ├── 0083-in.jsonld │ ├── 0083-out.jsonld │ ├── 0084-in.jsonld │ ├── 0084-out.jsonld │ ├── 0085-in.jsonld │ ├── 0085-out.jsonld │ ├── 0086-in.jsonld │ ├── 0086-out.jsonld │ ├── 0087-in.jsonld │ ├── 0087-out.jsonld │ ├── 0088-in.jsonld │ ├── 0088-out.jsonld │ ├── 0089-in.jsonld │ ├── 0089-out.jsonld │ ├── 0090-in.jsonld │ ├── 0090-out.jsonld │ ├── 0091-in.jsonld │ ├── 0091-out.jsonld │ ├── 0092-in.jsonld │ ├── 0092-out.jsonld │ ├── 0093-in.jsonld │ ├── 0093-out.jsonld │ ├── 0094-in.jsonld │ ├── 0094-out.jsonld │ ├── 0095-in.jsonld │ ├── 0095-out.jsonld │ ├── 0096-in.jsonld │ ├── 0096-out.jsonld │ ├── 0097-in.jsonld │ ├── 0097-out.jsonld │ ├── 0098-in.jsonld │ ├── 0098-out.jsonld │ ├── 0099-in.jsonld │ ├── 0099-out.jsonld │ ├── 0100-in.jsonld │ ├── 0100-out.jsonld │ ├── 0101-in.jsonld │ ├── 0101-out.jsonld │ ├── 0102-in.jsonld │ ├── 0102-out.jsonld │ ├── 0103-in.jsonld │ ├── 0103-out.jsonld │ ├── 0104-in.jsonld │ ├── 0104-out.jsonld │ ├── 0105-in.jsonld │ ├── 0105-out.jsonld │ ├── 0106-in.jsonld │ ├── 0106-out.jsonld │ ├── 0107-in.jsonld │ ├── 0107-out.jsonld │ ├── 0108-in.jsonld │ ├── 0108-out.jsonld │ ├── 0109-in.jsonld │ ├── 0109-out.jsonld │ ├── 0110-in.jsonld │ ├── 0110-out.jsonld │ ├── 0111-in.jsonld │ ├── 0111-out.jsonld │ ├── 0112-in.jsonld │ ├── 0112-out.jsonld │ ├── 0113-in.jsonld │ ├── 0113-out.jsonld │ ├── 0114-in.jsonld │ ├── 0114-out.jsonld │ ├── 0115-in.jsonld │ ├── 0116-in.jsonld │ ├── 0117-in.jsonld │ ├── 0117-out.jsonld │ ├── 0118-in.jsonld │ ├── 0118-out.jsonld │ ├── 0119-in.jsonld │ ├── 0119-out.jsonld │ ├── 0120-in.jsonld │ ├── 0120-out.jsonld │ ├── 0121-in.jsonld │ ├── 0121-out.jsonld │ ├── 0122-in.jsonld │ ├── 0122-out.jsonld │ ├── 0123-in.jsonld │ ├── 0124-in.jsonld │ ├── 0124-out.jsonld │ ├── 0125-in.jsonld │ ├── 0125-out.jsonld │ ├── 0126-context.jsonld │ ├── 0126-in.jsonld │ ├── 0126-out.jsonld │ ├── 0127-context-1.jsonld │ ├── 0127-context-2.jsonld │ ├── 0127-in.jsonld │ ├── 0127-out.jsonld │ ├── 0128-context-1.jsonld │ ├── 0128-context-2.jsonld │ ├── 0128-context-3.jsonld │ ├── 0128-in.jsonld │ ├── 0128-out.jsonld │ ├── 0129-in.jsonld │ ├── 0129-out.jsonld │ ├── 0130-in.jsonld │ ├── 0130-out.jsonld │ ├── c001-in.jsonld │ ├── c001-out.jsonld │ ├── c002-in.jsonld │ ├── c002-out.jsonld │ ├── c003-in.jsonld │ ├── c003-out.jsonld │ ├── c004-in.jsonld │ ├── c004-out.jsonld │ ├── c005-in.jsonld │ ├── c005-out.jsonld │ ├── c006-in.jsonld │ ├── c006-out.jsonld │ ├── c007-in.jsonld │ ├── c007-out.jsonld │ ├── c008-in.jsonld │ ├── c008-out.jsonld │ ├── c009-in.jsonld │ ├── c009-out.jsonld │ ├── c010-in.jsonld │ ├── c010-out.jsonld │ ├── c011-in.jsonld │ ├── c011-out.jsonld │ ├── c012-in.jsonld │ ├── c012-out.jsonld │ ├── c013-in.jsonld │ ├── c013-out.jsonld │ ├── c014-in.jsonld │ ├── c014-out.jsonld │ ├── c015-in.jsonld │ ├── c015-out.jsonld │ ├── c016-in.jsonld │ ├── c016-out.jsonld │ ├── c017-in.jsonld │ ├── c017-out.jsonld │ ├── c018-in.jsonld │ ├── c018-out.jsonld │ ├── c019-in.jsonld │ ├── c019-out.jsonld │ ├── c020-in.jsonld │ ├── c020-out.jsonld │ ├── c021-in.jsonld │ ├── c021-out.jsonld │ ├── c022-in.jsonld │ ├── c022-out.jsonld │ ├── c023-in.jsonld │ ├── c023-out.jsonld │ ├── c024-in.jsonld │ ├── c024-out.jsonld │ ├── c025-in.jsonld │ ├── c025-out.jsonld │ ├── c026-in.jsonld │ ├── c026-out.jsonld │ ├── c027-in.jsonld │ ├── c027-out.jsonld │ ├── c028-in.jsonld │ ├── c028-out.jsonld │ ├── c029-in.jsonld │ ├── c030-in.jsonld │ ├── c031-context.jsonld │ ├── c031-in.jsonld │ ├── c031-out.jsonld │ ├── c031 │ │ └── c031-context.jsonld │ ├── c032-in.jsonld │ ├── c033-in.jsonld │ ├── c034-context.jsonld │ ├── c034-in.jsonld │ ├── c034-out.jsonld │ ├── c035-in.jsonld │ ├── c035-out.jsonld │ ├── di01-in.jsonld │ ├── di01-out.jsonld │ ├── di02-in.jsonld │ ├── di02-out.jsonld │ ├── di03-in.jsonld │ ├── di03-out.jsonld │ ├── di04-in.jsonld │ ├── di04-out.jsonld │ ├── di05-in.jsonld │ ├── di05-out.jsonld │ ├── di06-in.jsonld │ ├── di06-out.jsonld │ ├── di07-in.jsonld │ ├── di07-out.jsonld │ ├── di08-in.jsonld │ ├── di09-in.jsonld │ ├── e003-context.jsonld │ ├── e052-in.jsonld │ ├── e053-context.jsonld │ ├── e053-in.jsonld │ ├── e054-context-1.jsonld │ ├── e054-context-2.jsonld │ ├── e054-in.jsonld │ ├── ec01-in.jsonld │ ├── ec02-in.jsonld │ ├── em01-in.jsonld │ ├── en01-in.jsonld │ ├── en02-in.jsonld │ ├── en03-in.jsonld │ ├── en04-in.jsonld │ ├── en05-in.jsonld │ ├── en06-in.jsonld │ ├── ep02-in.jsonld │ ├── ep03-in.jsonld │ ├── er01-in.jsonld │ ├── er02-in.jsonld │ ├── er03-in.jsonld │ ├── er04-in.jsonld │ ├── er05-in.jsonld │ ├── er06-in.jsonld │ ├── er07-in.jsonld │ ├── er08-in.jsonld │ ├── er09-in.jsonld │ ├── er10-in.jsonld │ ├── er11-in.jsonld │ ├── er12-in.jsonld │ ├── er13-in.jsonld │ ├── er14-in.jsonld │ ├── er15-in.jsonld │ ├── er17-in.jsonld │ ├── er18-in.jsonld │ ├── er19-in.jsonld │ ├── er20-in.jsonld │ ├── er21-in.jsonld │ ├── er22-in.jsonld │ ├── er23-in.jsonld │ ├── er24-in.jsonld │ ├── er25-in.jsonld │ ├── er26-in.jsonld │ ├── er27-in.jsonld │ ├── er28-in.jsonld │ ├── er29-in.jsonld │ ├── er30-in.jsonld │ ├── er31-in.jsonld │ ├── er32-in.jsonld │ ├── er33-in.jsonld │ ├── er34-in.jsonld │ ├── er35-in.jsonld │ ├── er36-in.jsonld │ ├── er37-in.jsonld │ ├── er38-in.jsonld │ ├── er39-in.jsonld │ ├── er40-in.jsonld │ ├── er41-in.jsonld │ ├── er42-in.jsonld │ ├── er43-in.jsonld │ ├── er44-in.jsonld │ ├── er45-in.jsonld │ ├── er48-in.jsonld │ ├── er49-in.jsonld │ ├── er50-in.jsonld │ ├── er51-in.jsonld │ ├── er52-in.jsonld │ ├── er53-in.jsonld │ ├── es01-in.jsonld │ ├── es02-in.jsonld │ ├── in01-in.jsonld │ ├── in01-out.jsonld │ ├── in02-in.jsonld │ ├── in02-out.jsonld │ ├── in03-in.jsonld │ ├── in03-out.jsonld │ ├── in04-in.jsonld │ ├── in04-out.jsonld │ ├── in05-in.jsonld │ ├── in05-out.jsonld │ ├── in06-in.jsonld │ ├── in06-out.jsonld │ ├── in07-in.jsonld │ ├── in08-in.jsonld │ ├── in09-in.jsonld │ ├── js01-in.jsonld │ ├── js01-out.jsonld │ ├── js02-in.jsonld │ ├── js02-out.jsonld │ ├── js03-in.jsonld │ ├── js03-out.jsonld │ ├── js04-in.jsonld │ ├── js04-out.jsonld │ ├── js05-in.jsonld │ ├── js05-out.jsonld │ ├── js06-in.jsonld │ ├── js06-out.jsonld │ ├── js07-in.jsonld │ ├── js07-out.jsonld │ ├── js08-in.jsonld │ ├── js08-out.jsonld │ ├── js09-in.jsonld │ ├── js09-out.jsonld │ ├── js10-in.jsonld │ ├── js10-out.jsonld │ ├── js11-in.jsonld │ ├── js11-out.jsonld │ ├── js12-in.jsonld │ ├── js12-out.jsonld │ ├── js13-in.jsonld │ ├── js13-out.jsonld │ ├── js14-in.jsonld │ ├── js14-out.jsonld │ ├── js15-in.jsonld │ ├── js15-out.jsonld │ ├── js16-in.jsonld │ ├── js16-out.jsonld │ ├── js17-in.jsonld │ ├── js17-out.jsonld │ ├── js18-in.jsonld │ ├── js18-out.jsonld │ ├── js19-in.jsonld │ ├── js19-out.jsonld │ ├── js20-in.jsonld │ ├── js20-out.jsonld │ ├── js21-in.jsonld │ ├── js21-out.jsonld │ ├── js22-in.jsonld │ ├── js22-out.jsonld │ ├── js23-in.jsonld │ ├── js23-out.jsonld │ ├── l001-in.jsonld │ ├── l001-out.jsonld │ ├── li01-in.jsonld │ ├── li01-out.jsonld │ ├── li02-in.jsonld │ ├── li02-out.jsonld │ ├── li03-in.jsonld │ ├── li03-out.jsonld │ ├── li04-in.jsonld │ ├── li04-out.jsonld │ ├── li05-in.jsonld │ ├── li05-out.jsonld │ ├── li06-in.jsonld │ ├── li06-out.jsonld │ ├── li07-in.jsonld │ ├── li07-out.jsonld │ ├── li08-in.jsonld │ ├── li08-out.jsonld │ ├── li09-in.jsonld │ ├── li09-out.jsonld │ ├── li10-in.jsonld │ ├── li10-out.jsonld │ ├── m001-in.jsonld │ ├── m001-out.jsonld │ ├── m002-in.jsonld │ ├── m002-out.jsonld │ ├── m003-in.jsonld │ ├── m003-out.jsonld │ ├── m004-in.jsonld │ ├── m004-out.jsonld │ ├── m005-in.jsonld │ ├── m005-out.jsonld │ ├── m006-in.jsonld │ ├── m006-out.jsonld │ ├── m007-in.jsonld │ ├── m007-out.jsonld │ ├── m008-in.jsonld │ ├── m008-out.jsonld │ ├── m009-in.jsonld │ ├── m009-out.jsonld │ ├── m010-in.jsonld │ ├── m010-out.jsonld │ ├── m011-in.jsonld │ ├── m011-out.jsonld │ ├── m012-in.jsonld │ ├── m012-out.jsonld │ ├── m013-in.jsonld │ ├── m013-out.jsonld │ ├── m014-in.jsonld │ ├── m014-out.jsonld │ ├── m015-in.jsonld │ ├── m015-out.jsonld │ ├── m016-in.jsonld │ ├── m016-out.jsonld │ ├── m017-in.jsonld │ ├── m017-out.jsonld │ ├── m018-in.jsonld │ ├── m018-out.jsonld │ ├── m019-in.jsonld │ ├── m019-out.jsonld │ ├── m020-in.jsonld │ ├── n001-in.jsonld │ ├── n001-out.jsonld │ ├── n002-in.jsonld │ ├── n002-out.jsonld │ ├── n003-in.jsonld │ ├── n003-out.jsonld │ ├── n004-in.jsonld │ ├── n004-out.jsonld │ ├── n005-in.jsonld │ ├── n005-out.jsonld │ ├── n006-in.jsonld │ ├── n006-out.jsonld │ ├── n007-in.jsonld │ ├── n007-out.jsonld │ ├── n008-in.jsonld │ ├── n008-out.jsonld │ ├── p001-in.jsonld │ ├── p001-out.jsonld │ ├── p002-in.jsonld │ ├── p002-out.jsonld │ ├── p003-in.jsonld │ ├── p003-out.jsonld │ ├── p004-in.jsonld │ ├── p004-out.jsonld │ ├── pi01-in.jsonld │ ├── pi02-in.jsonld │ ├── pi03-in.jsonld │ ├── pi04-in.jsonld │ ├── pi05-in.jsonld │ ├── pi06-in.jsonld │ ├── pi06-out.jsonld │ ├── pi07-in.jsonld │ ├── pi07-out.jsonld │ ├── pi08-in.jsonld │ ├── pi08-out.jsonld │ ├── pi09-in.jsonld │ ├── pi09-out.jsonld │ ├── pi10-in.jsonld │ ├── pi10-out.jsonld │ ├── pi11-in.jsonld │ ├── pi11-out.jsonld │ ├── pr01-in.jsonld │ ├── pr02-in.jsonld │ ├── pr02-out.jsonld │ ├── pr03-in.jsonld │ ├── pr04-in.jsonld │ ├── pr05-in.jsonld │ ├── pr06-in.jsonld │ ├── pr06-out.jsonld │ ├── pr08-in.jsonld │ ├── pr09-in.jsonld │ ├── pr10-in.jsonld │ ├── pr10-out.jsonld │ ├── pr11-in.jsonld │ ├── pr12-in.jsonld │ ├── pr13-in.jsonld │ ├── pr13-out.jsonld │ ├── pr14-in.jsonld │ ├── pr14-out.jsonld │ ├── pr15-in.jsonld │ ├── pr15-out.jsonld │ ├── pr16-in.jsonld │ ├── pr16-out.jsonld │ ├── pr17-in.jsonld │ ├── pr18-in.jsonld │ ├── pr19-in.jsonld │ ├── pr19-out.jsonld │ ├── pr20-in.jsonld │ ├── pr21-in.jsonld │ ├── pr22-in.jsonld │ ├── pr22-out.jsonld │ ├── pr23-in.jsonld │ ├── pr23-out.jsonld │ ├── pr24-in.jsonld │ ├── pr24-out.jsonld │ ├── pr25-in.jsonld │ ├── pr25-out.jsonld │ ├── pr26-in.jsonld │ ├── pr27-in.jsonld │ ├── pr27-out.jsonld │ ├── pr28-in.jsonld │ ├── pr29-in.jsonld │ ├── pr29-out.jsonld │ ├── pr30-in.jsonld │ ├── pr30-out.jsonld │ ├── pr31-in.jsonld │ ├── pr32-in.jsonld │ ├── pr33-in.jsonld │ ├── pr34-in.jsonld │ ├── pr34-out.jsonld │ ├── pr35-in.jsonld │ ├── pr35-out.jsonld │ ├── pr36-in.jsonld │ ├── pr36-out.jsonld │ ├── pr37-in.jsonld │ ├── pr37-out.jsonld │ ├── pr38-in.jsonld │ ├── pr38-out.jsonld │ ├── pr39-in.jsonld │ ├── pr39-out.jsonld │ ├── pr40-in.jsonld │ ├── pr40-out.jsonld │ ├── so01-in.jsonld │ ├── so02-in.jsonld │ ├── so03-in.jsonld │ ├── so05-context.jsonld │ ├── so05-in.jsonld │ ├── so05-out.jsonld │ ├── so06-context.jsonld │ ├── so06-in.jsonld │ ├── so06-out.jsonld │ ├── so07-context.jsonld │ ├── so07-in.jsonld │ ├── so08-context.jsonld │ ├── so08-in.jsonld │ ├── so08-out.jsonld │ ├── so09-context.jsonld │ ├── so09-in.jsonld │ ├── so09-out.jsonld │ ├── so10-context.jsonld │ ├── so10-in.jsonld │ ├── so11-context.jsonld │ ├── so11-in.jsonld │ ├── so11-out.jsonld │ ├── so12-in.jsonld │ ├── so13-context.jsonld │ ├── so13-in.jsonld │ ├── tn01-in.jsonld │ ├── tn02-in.jsonld │ └── tn02-out.jsonld ├── extra-manifest.jsonld ├── extra │ ├── 0001-in.jsonld │ └── 0001-out.jsonld ├── flatten-manifest.html ├── flatten-manifest.jsonld ├── flatten │ ├── 0001-in.jsonld │ ├── 0001-out.jsonld │ ├── 0002-in.jsonld │ ├── 0002-out.jsonld │ ├── 0003-in.jsonld │ ├── 0003-out.jsonld │ ├── 0004-in.jsonld │ ├── 0004-out.jsonld │ ├── 0005-in.jsonld │ ├── 0005-out.jsonld │ ├── 0006-in.jsonld │ ├── 0006-out.jsonld │ ├── 0007-in.jsonld │ ├── 0007-out.jsonld │ ├── 0008-in.jsonld │ ├── 0008-out.jsonld │ ├── 0009-in.jsonld │ ├── 0009-out.jsonld │ ├── 0010-in.jsonld │ ├── 0010-out.jsonld │ ├── 0011-in.jsonld │ ├── 0011-out.jsonld │ ├── 0012-in.jsonld │ ├── 0012-out.jsonld │ ├── 0013-in.jsonld │ ├── 0013-out.jsonld │ ├── 0014-in.jsonld │ ├── 0014-out.jsonld │ ├── 0015-in.jsonld │ ├── 0015-out.jsonld │ ├── 0016-in.jsonld │ ├── 0016-out.jsonld │ ├── 0017-in.jsonld │ ├── 0017-out.jsonld │ ├── 0018-in.jsonld │ ├── 0018-out.jsonld │ ├── 0019-in.jsonld │ ├── 0019-out.jsonld │ ├── 0020-in.jsonld │ ├── 0020-out.jsonld │ ├── 0021-in.jsonld │ ├── 0021-out.jsonld │ ├── 0022-in.jsonld │ ├── 0022-out.jsonld │ ├── 0023-in.jsonld │ ├── 0023-out.jsonld │ ├── 0024-in.jsonld │ ├── 0024-out.jsonld │ ├── 0025-in.jsonld │ ├── 0025-out.jsonld │ ├── 0026-in.jsonld │ ├── 0026-out.jsonld │ ├── 0027-in.jsonld │ ├── 0027-out.jsonld │ ├── 0028-in.jsonld │ ├── 0028-out.jsonld │ ├── 0030-in.jsonld │ ├── 0030-out.jsonld │ ├── 0031-in.jsonld │ ├── 0031-out.jsonld │ ├── 0032-in.jsonld │ ├── 0032-out.jsonld │ ├── 0033-in.jsonld │ ├── 0033-out.jsonld │ ├── 0034-in.jsonld │ ├── 0034-out.jsonld │ ├── 0035-in.jsonld │ ├── 0035-out.jsonld │ ├── 0036-in.jsonld │ ├── 0036-out.jsonld │ ├── 0037-in.jsonld │ ├── 0037-out.jsonld │ ├── 0038-in.jsonld │ ├── 0038-out.jsonld │ ├── 0039-in.jsonld │ ├── 0039-out.jsonld │ ├── 0040-in.jsonld │ ├── 0040-out.jsonld │ ├── 0041-in.jsonld │ ├── 0041-out.jsonld │ ├── 0042-in.jsonld │ ├── 0042-out.jsonld │ ├── 0043-in.jsonld │ ├── 0043-out.jsonld │ ├── 0044-context.jsonld │ ├── 0044-in.jsonld │ ├── 0044-out.jsonld │ ├── 0045-in.jsonld │ ├── 0045-out.jsonld │ ├── 0046-in.jsonld │ ├── 0046-out.jsonld │ ├── 0047-in.jsonld │ ├── 0047-out.jsonld │ ├── 0048-in.jsonld │ ├── 0048-out.jsonld │ ├── 0049-in.jsonld │ ├── 0049-out.jsonld │ ├── e001-in.jsonld │ ├── in01-in.jsonld │ ├── in01-out.jsonld │ ├── in02-in.jsonld │ ├── in02-out.jsonld │ ├── in03-in.jsonld │ ├── in03-out.jsonld │ ├── in04-in.jsonld │ ├── in04-out.jsonld │ ├── in05-in.jsonld │ ├── in05-out.jsonld │ ├── in06-in.jsonld │ ├── in06-out.jsonld │ ├── li01-in.jsonld │ ├── li01-out.jsonld │ ├── li02-in.jsonld │ ├── li02-out.jsonld │ ├── li03-in.jsonld │ └── li03-out.jsonld ├── frame-manifest.html ├── frame-manifest.jsonld ├── frame │ ├── 0001-frame.jsonld │ ├── 0001-in.jsonld │ ├── 0001-out.jsonld │ ├── 0002-frame.jsonld │ ├── 0002-in.jsonld │ ├── 0002-out.jsonld │ ├── 0003-frame.jsonld │ ├── 0003-in.jsonld │ ├── 0003-out.jsonld │ ├── 0004-frame.jsonld │ ├── 0004-in.jsonld │ ├── 0004-out.jsonld │ ├── 0005-frame.jsonld │ ├── 0005-in.jsonld │ ├── 0005-out.jsonld │ ├── 0006-frame.jsonld │ ├── 0006-in.jsonld │ ├── 0006-out.jsonld │ ├── 0007-frame.jsonld │ ├── 0007-in.jsonld │ ├── 0007-out.jsonld │ ├── 0008-frame.jsonld │ ├── 0008-in.jsonld │ ├── 0008-out.jsonld │ ├── 0009-frame.jsonld │ ├── 0009-in.jsonld │ ├── 0009-out.jsonld │ ├── 0010-frame.jsonld │ ├── 0010-in.jsonld │ ├── 0010-out.jsonld │ ├── 0011-frame.jsonld │ ├── 0011-in.jsonld │ ├── 0011-out.jsonld │ ├── 0012-frame.jsonld │ ├── 0012-in.jsonld │ ├── 0012-out.jsonld │ ├── 0013-frame.jsonld │ ├── 0013-in.jsonld │ ├── 0013-out.jsonld │ ├── 0014-frame.jsonld │ ├── 0014-in.jsonld │ ├── 0014-out.jsonld │ ├── 0015-frame.jsonld │ ├── 0015-in.jsonld │ ├── 0015-out.jsonld │ ├── 0016-frame.jsonld │ ├── 0016-in.jsonld │ ├── 0016-out.jsonld │ ├── 0017-frame.jsonld │ ├── 0017-in.jsonld │ ├── 0017-out.jsonld │ ├── 0018-frame.jsonld │ ├── 0018-in.jsonld │ ├── 0018-out.jsonld │ ├── 0019-frame.jsonld │ ├── 0019-in.jsonld │ ├── 0019-out.jsonld │ ├── 0020-frame.jsonld │ ├── 0020-in.jsonld │ ├── 0020-out.jsonld │ ├── 0021-frame.jsonld │ ├── 0021-in.jsonld │ ├── 0021-out.jsonld │ ├── 0022-frame.jsonld │ ├── 0022-in.jsonld │ ├── 0022-out.jsonld │ ├── 0023-frame.jsonld │ ├── 0023-in.jsonld │ ├── 0023-out.jsonld │ ├── 0024-frame.jsonld │ ├── 0024-in.jsonld │ ├── 0024-out.jsonld │ ├── 0025-frame.jsonld │ ├── 0025-in.jsonld │ ├── 0025-out.jsonld │ ├── 0026-frame.jsonld │ ├── 0026-in.jsonld │ ├── 0026-out.jsonld │ ├── 0027-frame.jsonld │ ├── 0027-in.jsonld │ ├── 0027-out.jsonld │ ├── 0028-frame.jsonld │ ├── 0028-in.jsonld │ ├── 0028-out.jsonld │ ├── 0029-frame.jsonld │ ├── 0029-in.jsonld │ ├── 0029-out.jsonld │ ├── 0030-frame.jsonld │ ├── 0030-in.jsonld │ ├── 0030-out.jsonld │ ├── 0031-frame.jsonld │ ├── 0031-in.jsonld │ ├── 0031-out.jsonld │ ├── 0032-frame.jsonld │ ├── 0032-in.jsonld │ ├── 0032-out.jsonld │ ├── 0033-frame.jsonld │ ├── 0033-in.jsonld │ ├── 0033-out.jsonld │ ├── 0034-frame.jsonld │ ├── 0034-in.jsonld │ ├── 0034-out.jsonld │ ├── 0035-frame.jsonld │ ├── 0035-in.jsonld │ ├── 0035-out.jsonld │ ├── 0036-frame.jsonld │ ├── 0036-in.jsonld │ ├── 0036-out.jsonld │ ├── 0037-frame.jsonld │ ├── 0037-in.jsonld │ ├── 0037-out.jsonld │ ├── 0038-frame.jsonld │ ├── 0038-in.jsonld │ ├── 0038-out.jsonld │ ├── 0039-frame.jsonld │ ├── 0039-in.jsonld │ ├── 0039-out.jsonld │ ├── 0040-frame.jsonld │ ├── 0040-in.jsonld │ ├── 0040-out.jsonld │ ├── 0041-frame.jsonld │ ├── 0041-in.jsonld │ ├── 0041-out.jsonld │ ├── 0042-frame.jsonld │ ├── 0042-in.jsonld │ ├── 0042-out.jsonld │ ├── 0043-frame.jsonld │ ├── 0043-in.jsonld │ ├── 0043-out.jsonld │ ├── 0044-frame.jsonld │ ├── 0044-in.jsonld │ ├── 0044-out.jsonld │ ├── 0045-frame.jsonld │ ├── 0045-in.jsonld │ ├── 0045-out.jsonld │ ├── 0046-frame.jsonld │ ├── 0046-in.jsonld │ ├── 0046-out.jsonld │ ├── 0047-frame.jsonld │ ├── 0047-in.jsonld │ ├── 0047-out.jsonld │ ├── 0048-frame.jsonld │ ├── 0048-in.jsonld │ ├── 0048-out.jsonld │ ├── 0049-frame.jsonld │ ├── 0049-in.jsonld │ ├── 0049-out.jsonld │ ├── 0050-frame.jsonld │ ├── 0050-in.jsonld │ ├── 0050-out.jsonld │ ├── 0051-frame.jsonld │ ├── 0051-in.jsonld │ ├── 0051-out.jsonld │ ├── 0052-frame.jsonld │ ├── 0052-in.jsonld │ ├── 0053-frame.jsonld │ ├── 0053-in.jsonld │ ├── 0054-frame.jsonld │ ├── 0054-in.jsonld │ ├── 0055-frame.jsonld │ ├── 0055-in.jsonld │ ├── 0055-out.jsonld │ ├── 0056-frame.jsonld │ ├── 0056-in.jsonld │ ├── 0056-out.jsonld │ ├── 0057-frame.jsonld │ ├── 0057-in.jsonld │ ├── 0057-out.jsonld │ ├── 0058-frame.jsonld │ ├── 0058-in.jsonld │ ├── 0058-out.jsonld │ ├── 0059-frame.jsonld │ ├── 0059-in.jsonld │ ├── 0059-out.jsonld │ ├── 0060-frame.jsonld │ ├── 0060-in.jsonld │ ├── 0060-out.jsonld │ ├── 0061-frame.jsonld │ ├── 0061-in.jsonld │ ├── 0061-out.jsonld │ ├── 0062-frame.jsonld │ ├── 0062-in.jsonld │ ├── 0062-out.jsonld │ ├── 0063-frame.jsonld │ ├── 0063-in.jsonld │ ├── 0063-out.jsonld │ ├── 0064-frame.jsonld │ ├── 0064-in.jsonld │ ├── 0064-out.jsonld │ ├── 0065-frame.jsonld │ ├── 0065-in.jsonld │ ├── 0065-out.jsonld │ ├── 0066-frame.jsonld │ ├── 0066-in.jsonld │ ├── 0066-out.jsonld │ ├── 0067-frame.jsonld │ ├── 0067-in.jsonld │ ├── 0067-out.jsonld │ ├── 0068-frame.jsonld │ ├── 0068-in.jsonld │ ├── 0068-out.jsonld │ ├── eo01-frame.jsonld │ ├── eo01-in.jsonld │ ├── eo01-out.jsonld │ ├── eo02-frame.jsonld │ ├── eo02-in.jsonld │ ├── eo02-out.jsonld │ ├── g001-frame.jsonld │ ├── g001-in.jsonld │ ├── g001-out.jsonld │ ├── g002-frame.jsonld │ ├── g002-in.jsonld │ ├── g002-out.jsonld │ ├── g003-frame.jsonld │ ├── g003-in.jsonld │ ├── g003-out.jsonld │ ├── g004-frame.jsonld │ ├── g004-in.jsonld │ ├── g004-out.jsonld │ ├── g005-frame.jsonld │ ├── g005-in.jsonld │ ├── g005-out.jsonld │ ├── g006-frame.jsonld │ ├── g006-in.jsonld │ ├── g006-out.jsonld │ ├── g007-frame.jsonld │ ├── g007-in.jsonld │ ├── g007-out.jsonld │ ├── g008-frame.jsonld │ ├── g008-in.jsonld │ ├── g008-out.jsonld │ ├── g009-frame.jsonld │ ├── g009-in.jsonld │ ├── g009-out.jsonld │ ├── g010-frame.jsonld │ ├── g010-in.jsonld │ ├── g010-out.jsonld │ ├── in01-frame.jsonld │ ├── in01-in.jsonld │ ├── in01-out.jsonld │ ├── in02-frame.jsonld │ ├── in02-in.jsonld │ ├── in02-out.jsonld │ ├── in03-frame.jsonld │ ├── in03-in.jsonld │ ├── in03-out.jsonld │ ├── p010-out.jsonld │ ├── p020-out.jsonld │ ├── p021-out.jsonld │ ├── p046-out.jsonld │ ├── p049-out.jsonld │ ├── p050-frame.jsonld │ ├── p050-in.jsonld │ ├── p050-out.jsonld │ ├── ra01-frame.jsonld │ ├── ra01-in.jsonld │ ├── ra01-out.jsonld │ ├── ra02-frame.jsonld │ ├── ra02-in.jsonld │ ├── ra02-out.jsonld │ ├── ra03-frame.jsonld │ ├── ra03-in.jsonld │ └── ra03-out.jsonld ├── fromRdf-manifest.html ├── fromRdf-manifest.jsonld ├── fromRdf │ ├── 0001-in.nq │ ├── 0001-out.jsonld │ ├── 0002-in.nq │ ├── 0002-out.jsonld │ ├── 0003-in.nq │ ├── 0003-out.jsonld │ ├── 0004-in.nq │ ├── 0004-out.jsonld │ ├── 0005-in.nq │ ├── 0005-out.jsonld │ ├── 0006-in.nq │ ├── 0006-out.jsonld │ ├── 0007-in.nq │ ├── 0007-out.jsonld │ ├── 0008-in.nq │ ├── 0008-out.jsonld │ ├── 0009-in.nq │ ├── 0009-out.jsonld │ ├── 0010-in.nq │ ├── 0010-out.jsonld │ ├── 0011-in.nq │ ├── 0011-out.jsonld │ ├── 0012-in.nq │ ├── 0012-out.jsonld │ ├── 0013-in.nq │ ├── 0013-out.jsonld │ ├── 0014-in.nq │ ├── 0014-out.jsonld │ ├── 0015-in.nq │ ├── 0015-out.jsonld │ ├── 0016-in.nq │ ├── 0016-out.jsonld │ ├── 0017-in.nq │ ├── 0017-out.jsonld │ ├── 0018-in.nq │ ├── 0018-out.jsonld │ ├── 0019-in.nq │ ├── 0019-out.jsonld │ ├── 0020-in.nq │ ├── 0020-out.jsonld │ ├── 0021-in.nq │ ├── 0021-out.jsonld │ ├── 0022-in.nq │ ├── 0022-out.jsonld │ ├── 0023-in.nq │ ├── 0023-out.jsonld │ ├── 0024-in.nq │ ├── 0024-out.jsonld │ ├── 0025-in.nq │ ├── 0025-out.jsonld │ ├── 0026-in.nq │ ├── 0026-out.jsonld │ ├── di01-in.nq │ ├── di01-out.jsonld │ ├── di02-in.nq │ ├── di02-out.jsonld │ ├── di03-in.nq │ ├── di03-out.jsonld │ ├── di04-in.nq │ ├── di04-out.jsonld │ ├── di05-in.nq │ ├── di05-out.jsonld │ ├── di06-in.nq │ ├── di06-out.jsonld │ ├── di07-in.nq │ ├── di07-out.jsonld │ ├── di08-in.nq │ ├── di08-out.jsonld │ ├── di09-in.nq │ ├── di09-out.jsonld │ ├── di10-in.nq │ ├── di10-out.jsonld │ ├── di11-in.nq │ ├── di11-out.jsonld │ ├── di12-in.nq │ ├── di12-out.jsonld │ ├── js01-in.nq │ ├── js01-out.jsonld │ ├── js02-in.nq │ ├── js02-out.jsonld │ ├── js03-in.nq │ ├── js03-out.jsonld │ ├── js04-in.nq │ ├── js04-out.jsonld │ ├── js05-in.nq │ ├── js05-out.jsonld │ ├── js06-in.nq │ ├── js06-out.jsonld │ ├── js07-in.nq │ ├── js07-out.jsonld │ ├── js08-in.nq │ ├── js09-in.nq │ ├── js10-in.nq │ ├── js10-out.jsonld │ ├── js11-in.nq │ ├── js11-out.jsonld │ ├── li01-in.nq │ ├── li01-out.jsonld │ ├── li02-in.nq │ ├── li02-out.jsonld │ ├── li03-in.nq │ └── li03-out.jsonld ├── html-manifest.html ├── html-manifest.jsonld ├── html │ ├── c001-context.jsonld │ ├── c001-in.html │ ├── c001-out.jsonld │ ├── c002-context.jsonld │ ├── c002-in.html │ ├── c002-out.jsonld │ ├── c003-context.jsonld │ ├── c003-in.html │ ├── c003-out.jsonld │ ├── c004-context.jsonld │ ├── c004-in.html │ ├── c004-out.jsonld │ ├── e001-in.html │ ├── e001-out.jsonld │ ├── e002-in.html │ ├── e002-out.jsonld │ ├── e003-in.html │ ├── e003-out.jsonld │ ├── e004-in.html │ ├── e004-out.jsonld │ ├── e005-in.html │ ├── e005-out.jsonld │ ├── e006-in.html │ ├── e007-in.html │ ├── e007-out.jsonld │ ├── e008-in.html │ ├── e008-out.jsonld │ ├── e009-in.html │ ├── e009-out.jsonld │ ├── e010-in.html │ ├── e010-out.jsonld │ ├── e011-in.html │ ├── e012-in.html │ ├── e013-in.html │ ├── e014-in.html │ ├── e015-in.html │ ├── e016-in.html │ ├── e017-in.html │ ├── e018-in.html │ ├── e018-out.jsonld │ ├── e019-in.html │ ├── e019-out.jsonld │ ├── e020-in.html │ ├── e020-out.jsonld │ ├── e021-in.html │ ├── e021-out.jsonld │ ├── e022-in.html │ ├── e022-out.jsonld │ ├── f001-context.jsonld │ ├── f001-in.html │ ├── f001-out.jsonld │ ├── f002-context.jsonld │ ├── f002-in.html │ ├── f002-out.jsonld │ ├── f003-context.jsonld │ ├── f003-in.html │ ├── f003-out.jsonld │ ├── f004-context.jsonld │ ├── f004-in.html │ ├── f004-out.jsonld │ ├── r001-in.html │ ├── r001-out.nq │ ├── r002-in.html │ ├── r002-out.nq │ ├── r003-in.html │ ├── r003-out.nq │ ├── r004-in.html │ ├── r004-out.nq │ ├── r005-in.html │ ├── r005-out.nq │ ├── r006-in.html │ ├── r006-out.nq │ ├── r007-in.html │ ├── r007-out.nq │ ├── r010-in.html │ ├── r010-out.nq │ ├── r011-in.html │ ├── r012-in.html │ ├── r013-in.html │ ├── r014-in.html │ ├── r015-in.html │ ├── r016-in.html │ ├── r017-in.html │ ├── r018-in.html │ ├── r018-out.nq │ ├── r019-in.html │ ├── r019-out.nq │ ├── r020-in.html │ ├── r020-out.nq │ ├── r021-in.html │ ├── r021-out.nq │ ├── r022-in.html │ └── r022-out.nq ├── index.html ├── manifest.html ├── manifest.jsonld ├── mk_vocab.rb ├── normalization │ ├── index.html │ ├── manifest-urdna2015.jsonld │ ├── manifest-urdna2015.ttl │ ├── manifest-urgna2012.jsonld │ ├── manifest-urgna2012.ttl │ ├── manifest.csv │ ├── manifest.jsonld │ ├── manifest.ttl │ ├── mk_manifest.rb │ ├── mk_vocab.rb │ ├── template.haml │ ├── test001-in.nq │ ├── test001-urdna2015.nq │ ├── test001-urgna2012.nq │ ├── test002-in.nq │ ├── test002-urdna2015.nq │ ├── test002-urgna2012.nq │ ├── test003-in.nq │ ├── test003-urdna2015.nq │ ├── test003-urgna2012.nq │ ├── test004-in.nq │ ├── test004-urdna2015.nq │ ├── test004-urgna2012.nq │ ├── test005-in.nq │ ├── test005-urdna2015.nq │ ├── test005-urgna2012.nq │ ├── test006-in.nq │ ├── test006-urdna2015.nq │ ├── test006-urgna2012.nq │ ├── test007-in.nq │ ├── test007-urdna2015.nq │ ├── test007-urgna2012.nq │ ├── test008-in.nq │ ├── test008-urdna2015.nq │ ├── test008-urgna2012.nq │ ├── test009-in.nq │ ├── test009-urdna2015.nq │ ├── test009-urgna2012.nq │ ├── test010-in.nq │ ├── test010-urdna2015.nq │ ├── test010-urgna2012.nq │ ├── test011-in.nq │ ├── test011-urdna2015.nq │ ├── test011-urgna2012.nq │ ├── test012-in.nq │ ├── test012-urdna2015.nq │ ├── test012-urgna2012.nq │ ├── test013-in.nq │ ├── test013-urdna2015.nq │ ├── test013-urgna2012.nq │ ├── test014-in.nq │ ├── test014-urdna2015.nq │ ├── test014-urgna2012.nq │ ├── test015-in.nq │ ├── test015-urdna2015.nq │ ├── test015-urgna2012.nq │ ├── test016-in.nq │ ├── test016-urdna2015.nq │ ├── test016-urgna2012.nq │ ├── test017-in.nq │ ├── test017-urdna2015.nq │ ├── test017-urgna2012.nq │ ├── test018-in.nq │ ├── test018-urdna2015.nq │ ├── test018-urgna2012.nq │ ├── test019-in.nq │ ├── test019-urdna2015.nq │ ├── test019-urgna2012.nq │ ├── test020-in.nq │ ├── test020-urdna2015.nq │ ├── test020-urgna2012.nq │ ├── test021-in.nq │ ├── test021-urdna2015.nq │ ├── test021-urgna2012.nq │ ├── test022-in.nq │ ├── test022-urdna2015.nq │ ├── test022-urgna2012.nq │ ├── test023-in.nq │ ├── test023-urdna2015.nq │ ├── test023-urgna2012.nq │ ├── test024-in.nq │ ├── test024-urdna2015.nq │ ├── test024-urgna2012.nq │ ├── test025-in.nq │ ├── test025-urdna2015.nq │ ├── test025-urgna2012.nq │ ├── test026-in.nq │ ├── test026-urdna2015.nq │ ├── test026-urgna2012.nq │ ├── test027-in.nq │ ├── test027-urdna2015.nq │ ├── test027-urgna2012.nq │ ├── test028-in.nq │ ├── test028-urdna2015.nq │ ├── test028-urgna2012.nq │ ├── test029-in.nq │ ├── test029-urdna2015.nq │ ├── test029-urgna2012.nq │ ├── test030-in.nq │ ├── test030-urdna2015.nq │ ├── test030-urgna2012.nq │ ├── test031-in.nq │ ├── test031-urdna2015.nq │ ├── test031-urgna2012.nq │ ├── test032-in.nq │ ├── test032-urdna2015.nq │ ├── test032-urgna2012.nq │ ├── test033-in.nq │ ├── test033-urdna2015.nq │ ├── test033-urgna2012.nq │ ├── test034-in.nq │ ├── test034-urdna2015.nq │ ├── test034-urgna2012.nq │ ├── test035-in.nq │ ├── test035-urdna2015.nq │ ├── test035-urgna2012.nq │ ├── test036-in.nq │ ├── test036-urdna2015.nq │ ├── test036-urgna2012.nq │ ├── test037-in.nq │ ├── test037-urdna2015.nq │ ├── test037-urgna2012.nq │ ├── test038-in.nq │ ├── test038-urdna2015.nq │ ├── test038-urgna2012.nq │ ├── test039-in.nq │ ├── test039-urdna2015.nq │ ├── test039-urgna2012.nq │ ├── test040-in.nq │ ├── test040-urdna2015.nq │ ├── test040-urgna2012.nq │ ├── test041-in.nq │ ├── test041-urdna2015.nq │ ├── test041-urgna2012.nq │ ├── test042-in.nq │ ├── test042-urdna2015.nq │ ├── test042-urgna2012.nq │ ├── test043-in.nq │ ├── test043-urdna2015.nq │ ├── test043-urgna2012.nq │ ├── test044-in.nq │ ├── test044-urdna2015.nq │ ├── test044-urgna2012.nq │ ├── test045-in.nq │ ├── test045-urdna2015.nq │ ├── test045-urgna2012.nq │ ├── test046-in.nq │ ├── test046-urdna2015.nq │ ├── test046-urgna2012.nq │ ├── test047-in.nq │ ├── test047-urdna2015.nq │ ├── test047-urgna2012.nq │ ├── test048-in.nq │ ├── test048-urdna2015.nq │ ├── test048-urgna2012.nq │ ├── test049-in.nq │ ├── test049-urdna2015.nq │ ├── test049-urgna2012.nq │ ├── test050-in.nq │ ├── test050-urdna2015.nq │ ├── test050-urgna2012.nq │ ├── test051-in.nq │ ├── test051-urdna2015.nq │ ├── test051-urgna2012.nq │ ├── test052-in.nq │ ├── test052-urdna2015.nq │ ├── test052-urgna2012.nq │ ├── test053-in.nq │ ├── test053-urdna2015.nq │ ├── test053-urgna2012.nq │ ├── test054-in.nq │ ├── test054-urdna2015.nq │ ├── test054-urgna2012.nq │ ├── test055-in.nq │ ├── test055-urdna2015.nq │ ├── test055-urgna2012.nq │ ├── test056-in.nq │ ├── test056-urdna2015.nq │ ├── test056-urgna2012.nq │ ├── test057-in.nq │ ├── test057-urdna2015.nq │ ├── test057-urgna2012.nq │ ├── test058-in.nq │ ├── test058-urdna2015.nq │ ├── test059-in.nq │ ├── test059-urdna2015.nq │ ├── test060-in.nq │ ├── test060-urdna2015.nq │ ├── test060-urgna2012.nq │ ├── test061-in.nq │ ├── test061-urdna2015.nq │ ├── test061-urgna2012.nq │ ├── test062-in.nq │ ├── test062-urdna2015.nq │ ├── test062-urgna2012.nq │ ├── vocab.html │ ├── vocab.jsonld │ ├── vocab.ttl │ ├── vocab_context.jsonld │ └── vocab_template.haml ├── remote-doc-manifest.html ├── remote-doc-manifest.jsonld ├── remote-doc │ ├── .htaccess │ ├── 0001-in.jsonld │ ├── 0001-out.jsonld │ ├── 0002-in.json │ ├── 0002-out.jsonld │ ├── 0003-in.jldt │ ├── 0003-out.jsonld │ ├── 0004-in.jldte │ ├── 0009-context.jsonld │ ├── 0009-in.jsonld │ ├── 0009-out.jsonld │ ├── 0010-context.jsonld │ ├── 0010-in.json │ ├── 0010-out.jsonld │ ├── 0011-context.jsonld │ ├── 0011-in.jldt │ ├── 0011-out.jsonld │ ├── 0012-context1.jsonld │ ├── 0012-context2.jsonld │ ├── 0012-in.json │ ├── 0013-context.html │ ├── 0013-in.json │ ├── 0013-out.jsonld │ ├── la01-alternate.jsonld │ ├── la01-in.html │ ├── la01-out.jsonld │ ├── la02-alternate.jsonld │ ├── la02-in.jsonld │ ├── la02-out.jsonld │ ├── la03-alternate.json │ ├── la03-in.json │ ├── la03-out.jsonld │ ├── la04-alternate.jsonld │ ├── la04-in.json │ ├── la04-out.jsonld │ ├── la05-alternate.jsonld │ ├── la05-in.html │ └── la05-out.jsonld ├── schema.org │ ├── docs │ │ └── jsonldcontext.json │ └── index.json ├── template.haml ├── toRdf-manifest.html ├── toRdf-manifest.jsonld ├── toRdf │ ├── 0001-in.jsonld │ ├── 0001-out.nq │ ├── 0002-in.jsonld │ ├── 0002-out.nq │ ├── 0003-in.jsonld │ ├── 0003-out.nq │ ├── 0004-in.jsonld │ ├── 0004-out.nq │ ├── 0005-in.jsonld │ ├── 0005-out.nq │ ├── 0006-in.jsonld │ ├── 0006-out.nq │ ├── 0007-in.jsonld │ ├── 0007-out.nq │ ├── 0008-in.jsonld │ ├── 0008-out.nq │ ├── 0009-in.jsonld │ ├── 0009-out.nq │ ├── 0010-in.jsonld │ ├── 0010-out.nq │ ├── 0011-in.jsonld │ ├── 0011-out.nq │ ├── 0012-in.jsonld │ ├── 0012-out.nq │ ├── 0013-in.jsonld │ ├── 0013-out.nq │ ├── 0014-in.jsonld │ ├── 0014-out.nq │ ├── 0015-in.jsonld │ ├── 0015-out.nq │ ├── 0016-in.jsonld │ ├── 0016-out.nq │ ├── 0017-in.jsonld │ ├── 0017-out.nq │ ├── 0018-in.jsonld │ ├── 0018-out.nq │ ├── 0019-in.jsonld │ ├── 0019-out.nq │ ├── 0020-in.jsonld │ ├── 0020-out.nq │ ├── 0022-in.jsonld │ ├── 0022-out.nq │ ├── 0023-in.jsonld │ ├── 0023-out.nq │ ├── 0024-in.jsonld │ ├── 0024-out.nq │ ├── 0025-in.jsonld │ ├── 0025-out.nq │ ├── 0026-in.jsonld │ ├── 0026-out.nq │ ├── 0027-in.jsonld │ ├── 0027-out.nq │ ├── 0028-in.jsonld │ ├── 0028-out.nq │ ├── 0029-in.jsonld │ ├── 0029-out.nq │ ├── 0030-in.jsonld │ ├── 0030-out.nq │ ├── 0031-in.jsonld │ ├── 0031-out.nq │ ├── 0032-in.jsonld │ ├── 0032-out.nq │ ├── 0033-in.jsonld │ ├── 0033-out.nq │ ├── 0034-in.jsonld │ ├── 0034-out.nq │ ├── 0035-in.jsonld │ ├── 0035-out.nq │ ├── 0036-in.jsonld │ ├── 0036-out.nq │ ├── 0113-in.jsonld │ ├── 0113-out.nq │ ├── 0114-in.jsonld │ ├── 0114-out.nq │ ├── 0115-in.jsonld │ ├── 0115-out.nq │ ├── 0116-in.jsonld │ ├── 0116-out.nq │ ├── 0117-in.jsonld │ ├── 0117-out.nq │ ├── 0118-in.jsonld │ ├── 0118-out.nq │ ├── 0119-in.jsonld │ ├── 0119-out.nq │ ├── 0120-in.jsonld │ ├── 0120-out.nq │ ├── 0121-in.jsonld │ ├── 0121-out.nq │ ├── 0122-in.jsonld │ ├── 0122-out.nq │ ├── 0123-in.jsonld │ ├── 0123-out.nq │ ├── 0124-in.jsonld │ ├── 0124-out.nq │ ├── 0125-in.jsonld │ ├── 0125-out.nq │ ├── 0126-in.jsonld │ ├── 0126-out.nq │ ├── 0127-in.jsonld │ ├── 0127-out.nq │ ├── 0128-in.jsonld │ ├── 0128-out.nq │ ├── 0129-in.jsonld │ ├── 0129-out.nq │ ├── 0130-in.jsonld │ ├── 0130-out.nq │ ├── 0131-in.jsonld │ ├── 0131-out.nq │ ├── 0132-in.jsonld │ ├── 0132-out.nq │ ├── c001-in.jsonld │ ├── c001-out.nq │ ├── c002-in.jsonld │ ├── c002-out.nq │ ├── c003-in.jsonld │ ├── c003-out.nq │ ├── c004-in.jsonld │ ├── c004-out.nq │ ├── c005-in.jsonld │ ├── c005-out.nq │ ├── c006-in.jsonld │ ├── c006-out.nq │ ├── c007-in.jsonld │ ├── c007-out.nq │ ├── c008-in.jsonld │ ├── c008-out.nq │ ├── c009-in.jsonld │ ├── c009-out.nq │ ├── c010-in.jsonld │ ├── c010-out.nq │ ├── c011-in.jsonld │ ├── c011-out.nq │ ├── c012-in.jsonld │ ├── c012-out.nq │ ├── c013-in.jsonld │ ├── c013-out.nq │ ├── c014-in.jsonld │ ├── c014-out.nq │ ├── c015-in.jsonld │ ├── c015-out.nq │ ├── c016-in.jsonld │ ├── c016-out.nq │ ├── c017-in.jsonld │ ├── c017-out.nq │ ├── c018-in.jsonld │ ├── c018-out.nq │ ├── c019-in.jsonld │ ├── c019-out.nq │ ├── c020-in.jsonld │ ├── c020-out.nq │ ├── c021-in.jsonld │ ├── c021-out.nq │ ├── c022-in.jsonld │ ├── c022-out.nq │ ├── c023-in.jsonld │ ├── c023-out.nq │ ├── c024-in.jsonld │ ├── c024-out.nq │ ├── c025-in.jsonld │ ├── c025-out.nq │ ├── c026-in.jsonld │ ├── c026-out.nq │ ├── c027-in.jsonld │ ├── c027-out.nq │ ├── c028-in.jsonld │ ├── c028-out.nq │ ├── c029-in.jsonld │ ├── c030-in.jsonld │ ├── c031-context.jsonld │ ├── c031-in.jsonld │ ├── c031-out.nq │ ├── c031 │ │ └── c031-context.jsonld │ ├── c032-in.jsonld │ ├── c033-in.jsonld │ ├── c034-context.jsonld │ ├── c034-in.jsonld │ ├── c034-out.nq │ ├── c035-in.jsonld │ ├── c035-out.nq │ ├── di01-in.jsonld │ ├── di01-out.nq │ ├── di02-in.jsonld │ ├── di02-out.nq │ ├── di03-in.jsonld │ ├── di03-out.nq │ ├── di04-in.jsonld │ ├── di04-out.nq │ ├── di05-in.jsonld │ ├── di05-out.nq │ ├── di06-in.jsonld │ ├── di06-out.nq │ ├── di07-in.jsonld │ ├── di07-out.nq │ ├── di08-in.jsonld │ ├── di09-in.jsonld │ ├── di09-out.nq │ ├── di10-in.jsonld │ ├── di10-out.nq │ ├── di11-in.jsonld │ ├── di11-out.nq │ ├── di12-in.jsonld │ ├── di12-out.nq │ ├── e001-in.jsonld │ ├── e001-out.nq │ ├── e002-in.jsonld │ ├── e002-out.nq │ ├── e003-in.jsonld │ ├── e003-out.nq │ ├── e004-in.jsonld │ ├── e004-out.nq │ ├── e005-in.jsonld │ ├── e005-out.nq │ ├── e006-in.jsonld │ ├── e006-out.nq │ ├── e007-in.jsonld │ ├── e007-out.nq │ ├── e008-in.jsonld │ ├── e008-out.nq │ ├── e009-in.jsonld │ ├── e009-out.nq │ ├── e010-in.jsonld │ ├── e010-out.nq │ ├── e011-in.jsonld │ ├── e011-out.nq │ ├── e012-in.jsonld │ ├── e012-out.nq │ ├── e013-in.jsonld │ ├── e013-out.nq │ ├── e014-in.jsonld │ ├── e014-out.nq │ ├── e015-in.jsonld │ ├── e015-out.nq │ ├── e016-in.jsonld │ ├── e016-out.nq │ ├── e017-in.jsonld │ ├── e017-out.nq │ ├── e018-in.jsonld │ ├── e018-out.nq │ ├── e019-in.jsonld │ ├── e019-out.nq │ ├── e020-in.jsonld │ ├── e020-out.nq │ ├── e021-in.jsonld │ ├── e021-out.nq │ ├── e022-in.jsonld │ ├── e022-out.nq │ ├── e023-in.jsonld │ ├── e023-out.nq │ ├── e024-in.jsonld │ ├── e024-out.nq │ ├── e025-in.jsonld │ ├── e025-out.nq │ ├── e026-in.jsonld │ ├── e026-out.nq │ ├── e027-in.jsonld │ ├── e027-out.nq │ ├── e028-in.jsonld │ ├── e028-out.nq │ ├── e029-in.jsonld │ ├── e029-out.nq │ ├── e030-in.jsonld │ ├── e030-out.nq │ ├── e031-in.jsonld │ ├── e031-out.nq │ ├── e032-in.jsonld │ ├── e032-out.nq │ ├── e033-in.jsonld │ ├── e033-out.nq │ ├── e034-in.jsonld │ ├── e034-out.nq │ ├── e035-in.jsonld │ ├── e035-out.nq │ ├── e036-in.jsonld │ ├── e036-out.nq │ ├── e037-in.jsonld │ ├── e037-out.nq │ ├── e038-in.jsonld │ ├── e038-out.nq │ ├── e039-in.jsonld │ ├── e039-out.nq │ ├── e040-in.jsonld │ ├── e040-out.nq │ ├── e041-in.jsonld │ ├── e041-out.nq │ ├── e042-in.jsonld │ ├── e042-out.nq │ ├── e043-in.jsonld │ ├── e043-out.nq │ ├── e044-in.jsonld │ ├── e044-out.nq │ ├── e045-in.jsonld │ ├── e045-out.nq │ ├── e046-in.jsonld │ ├── e046-out.nq │ ├── e047-in.jsonld │ ├── e047-out.nq │ ├── e048-in.jsonld │ ├── e048-out.nq │ ├── e049-in.jsonld │ ├── e049-out.nq │ ├── e050-in.jsonld │ ├── e050-out.nq │ ├── e051-in.jsonld │ ├── e051-out.nq │ ├── e052-in.jsonld │ ├── e052-out.nq │ ├── e053-in.jsonld │ ├── e053-out.nq │ ├── e054-in.jsonld │ ├── e054-out.nq │ ├── e055-in.jsonld │ ├── e055-out.nq │ ├── e056-in.jsonld │ ├── e056-out.nq │ ├── e057-in.jsonld │ ├── e057-out.nq │ ├── e058-in.jsonld │ ├── e058-out.nq │ ├── e059-in.jsonld │ ├── e059-out.nq │ ├── e060-in.jsonld │ ├── e060-out.nq │ ├── e061-in.jsonld │ ├── e061-out.nq │ ├── e062-in.jsonld │ ├── e062-out.nq │ ├── e063-in.jsonld │ ├── e063-out.nq │ ├── e064-in.jsonld │ ├── e064-out.nq │ ├── e065-in.jsonld │ ├── e065-out.nq │ ├── e066-in.jsonld │ ├── e066-out.nq │ ├── e067-in.jsonld │ ├── e067-out.nq │ ├── e068-in.jsonld │ ├── e068-out.nq │ ├── e069-in.jsonld │ ├── e069-out.nq │ ├── e070-in.jsonld │ ├── e070-out.nq │ ├── e071-in.jsonld │ ├── e071-out.nq │ ├── e072-in.jsonld │ ├── e072-out.nq │ ├── e073-in.jsonld │ ├── e073-out.nq │ ├── e074-in.jsonld │ ├── e074-out.nq │ ├── e075-in.jsonld │ ├── e075-out.nq │ ├── e076-in.jsonld │ ├── e076-out.nq │ ├── e077-context.jsonld │ ├── e077-in.jsonld │ ├── e077-out.nq │ ├── e078-in.jsonld │ ├── e078-out.nq │ ├── e079-in.jsonld │ ├── e079-out.nq │ ├── e080-in.jsonld │ ├── e080-out.nq │ ├── e081-in.jsonld │ ├── e081-out.nq │ ├── e082-in.jsonld │ ├── e082-out.nq │ ├── e083-in.jsonld │ ├── e083-out.nq │ ├── e084-in.jsonld │ ├── e084-out.nq │ ├── e085-in.jsonld │ ├── e085-out.nq │ ├── e086-in.jsonld │ ├── e086-out.nq │ ├── e087-in.jsonld │ ├── e087-out.nq │ ├── e088-in.jsonld │ ├── e088-out.nq │ ├── e089-in.jsonld │ ├── e089-out.nq │ ├── e090-in.jsonld │ ├── e090-out.nq │ ├── e091-in.jsonld │ ├── e091-out.nq │ ├── e092-in.jsonld │ ├── e092-out.nq │ ├── e093-in.jsonld │ ├── e093-out.nq │ ├── e094-in.jsonld │ ├── e094-out.nq │ ├── e095-in.jsonld │ ├── e095-out.nq │ ├── e096-in.jsonld │ ├── e096-out.nq │ ├── e097-in.jsonld │ ├── e097-out.nq │ ├── e098-in.jsonld │ ├── e098-out.nq │ ├── e099-in.jsonld │ ├── e099-out.nq │ ├── e100-in.jsonld │ ├── e100-out.nq │ ├── e101-in.jsonld │ ├── e101-out.nq │ ├── e102-in.jsonld │ ├── e102-out.nq │ ├── e103-in.jsonld │ ├── e103-out.nq │ ├── e104-in.jsonld │ ├── e104-out.nq │ ├── e105-in.jsonld │ ├── e105-out.nq │ ├── e106-in.jsonld │ ├── e106-out.nq │ ├── e107-in.jsonld │ ├── e107-out.nq │ ├── e108-in.jsonld │ ├── e108-out.nq │ ├── e109-in.jsonld │ ├── e109-out.nq │ ├── e110-in.jsonld │ ├── e110-out.nq │ ├── e111-in.jsonld │ ├── e111-out.nq │ ├── e112-in.jsonld │ ├── e112-out.nq │ ├── e113-in.jsonld │ ├── e113-out.nq │ ├── e114-in.jsonld │ ├── e114-out.nq │ ├── e115-in.jsonld │ ├── e116-in.jsonld │ ├── e117-in.jsonld │ ├── e117-out.nq │ ├── e118-in.jsonld │ ├── e118-out.nq │ ├── e119-in.jsonld │ ├── e119-out.nq │ ├── e120-in.jsonld │ ├── e120-out.nq │ ├── e121-in.jsonld │ ├── e121-out.nq │ ├── e122-in.jsonld │ ├── e122-out.nq │ ├── e123-in.jsonld │ ├── e124-context.jsonld │ ├── e124-in.jsonld │ ├── e124-out.nq │ ├── e125-context-1.jsonld │ ├── e125-context-2.jsonld │ ├── e125-in.jsonld │ ├── e125-out.nq │ ├── e126-context-1.jsonld │ ├── e126-context-2.jsonld │ ├── e126-context-3.jsonld │ ├── e126-context.jsonld │ ├── e126-in.jsonld │ ├── e126-out.nq │ ├── e127-context-1.jsonld │ ├── e127-context-2.jsonld │ ├── e127-in.jsonld │ ├── e127-out.nq │ ├── e128-context-1.jsonld │ ├── e128-context-2.jsonld │ ├── e128-context-3.jsonld │ ├── e128-in.jsonld │ ├── e128-out.nq │ ├── e129-in.jsonld │ ├── e129-out.nq │ ├── e130-in.jsonld │ ├── e130-out.nq │ ├── ec01-in.jsonld │ ├── ec02-in.jsonld │ ├── em01-in.jsonld │ ├── en01-in.jsonld │ ├── en02-in.jsonld │ ├── en03-in.jsonld │ ├── en04-in.jsonld │ ├── en05-in.jsonld │ ├── en06-in.jsonld │ ├── ep02-in.jsonld │ ├── ep03-in.jsonld │ ├── er01-in.jsonld │ ├── er02-in.jsonld │ ├── er03-in.jsonld │ ├── er04-in.jsonld │ ├── er05-in.jsonld │ ├── er06-in.jsonld │ ├── er07-in.jsonld │ ├── er08-in.jsonld │ ├── er09-in.jsonld │ ├── er10-in.jsonld │ ├── er11-in.jsonld │ ├── er12-in.jsonld │ ├── er13-in.jsonld │ ├── er14-in.jsonld │ ├── er15-in.jsonld │ ├── er17-in.jsonld │ ├── er18-in.jsonld │ ├── er19-in.jsonld │ ├── er20-in.jsonld │ ├── er21-in.jsonld │ ├── er22-in.jsonld │ ├── er23-in.jsonld │ ├── er24-in.jsonld │ ├── er25-in.jsonld │ ├── er26-in.jsonld │ ├── er27-in.jsonld │ ├── er28-in.jsonld │ ├── er29-in.jsonld │ ├── er30-in.jsonld │ ├── er31-in.jsonld │ ├── er32-in.jsonld │ ├── er33-in.jsonld │ ├── er34-in.jsonld │ ├── er35-in.jsonld │ ├── er36-in.jsonld │ ├── er37-in.jsonld │ ├── er38-in.jsonld │ ├── er39-in.jsonld │ ├── er40-in.jsonld │ ├── er41-in.jsonld │ ├── er42-in.jsonld │ ├── er43-in.jsonld │ ├── er44-in.jsonld │ ├── er45-in.jsonld │ ├── er48-in.jsonld │ ├── er49-in.jsonld │ ├── er50-in.jsonld │ ├── er51-in.jsonld │ ├── er52-in.jsonld │ ├── er53-in.jsonld │ ├── in01-in.jsonld │ ├── in01-out.nq │ ├── in02-in.jsonld │ ├── in02-out.nq │ ├── in03-in.jsonld │ ├── in03-out.nq │ ├── in04-in.jsonld │ ├── in04-out.nq │ ├── in05-in.jsonld │ ├── in05-out.nq │ ├── in06-in.jsonld │ ├── in06-out.nq │ ├── in07-in.jsonld │ ├── in08-in.jsonld │ ├── in09-in.jsonld │ ├── js01-in.jsonld │ ├── js01-out.nq │ ├── js02-in.jsonld │ ├── js02-out.nq │ ├── js03-in.jsonld │ ├── js03-out.nq │ ├── js04-in.jsonld │ ├── js04-out.nq │ ├── js05-in.jsonld │ ├── js05-out.nq │ ├── js06-in.jsonld │ ├── js06-out.nq │ ├── js07-in.jsonld │ ├── js07-out.nq │ ├── js08-in.jsonld │ ├── js08-out.nq │ ├── js09-in.jsonld │ ├── js09-out.nq │ ├── js10-in.jsonld │ ├── js10-out.nq │ ├── js11-in.jsonld │ ├── js11-out.nq │ ├── js12-in.jsonld │ ├── js12-out.nq │ ├── js13-in.jsonld │ ├── js13-out.nq │ ├── js14-in.jsonld │ ├── js14-out.nq │ ├── js15-in.jsonld │ ├── js15-out.nq │ ├── js16-in.jsonld │ ├── js16-out.nq │ ├── js17-in.jsonld │ ├── js17-out.nq │ ├── js18-in.jsonld │ ├── js18-out.nq │ ├── js19-in.jsonld │ ├── js19-out.nq │ ├── js20-in.jsonld │ ├── js20-out.nq │ ├── js21-in.jsonld │ ├── js21-out.nq │ ├── js22-in.jsonld │ ├── js22-out.nq │ ├── js23-in.jsonld │ ├── js23-out.nq │ ├── li01-in.jsonld │ ├── li01-out.nq │ ├── li02-in.jsonld │ ├── li02-out.nq │ ├── li03-in.jsonld │ ├── li03-out.nq │ ├── li04-in.jsonld │ ├── li04-out.nq │ ├── li05-in.jsonld │ ├── li05-out.nq │ ├── li06-in.jsonld │ ├── li06-out.nq │ ├── li07-in.jsonld │ ├── li07-out.nq │ ├── li08-in.jsonld │ ├── li08-out.nq │ ├── li09-in.jsonld │ ├── li09-out.nq │ ├── li10-in.jsonld │ ├── li10-out.nq │ ├── m001-in.jsonld │ ├── m001-out.nq │ ├── m002-in.jsonld │ ├── m002-out.nq │ ├── m003-in.jsonld │ ├── m003-out.nq │ ├── m004-in.jsonld │ ├── m004-out.nq │ ├── m005-in.jsonld │ ├── m005-out.nq │ ├── m006-in.jsonld │ ├── m006-out.nq │ ├── m007-in.jsonld │ ├── m007-out.nq │ ├── m008-in.jsonld │ ├── m008-out.nq │ ├── m009-in.jsonld │ ├── m009-out.nq │ ├── m010-in.jsonld │ ├── m010-out.nq │ ├── m011-in.jsonld │ ├── m011-out.nq │ ├── m012-in.jsonld │ ├── m012-out.nq │ ├── m013-in.jsonld │ ├── m013-out.nq │ ├── m014-in.jsonld │ ├── m014-out.nq │ ├── m015-in.jsonld │ ├── m015-out.nq │ ├── m016-in.jsonld │ ├── m016-out.nq │ ├── m017-in.jsonld │ ├── m017-out.nq │ ├── m018-in.jsonld │ ├── m018-out.nq │ ├── m019-in.jsonld │ ├── m019-out.nq │ ├── m020-in.jsonld │ ├── n001-in.jsonld │ ├── n001-out.nq │ ├── n002-in.jsonld │ ├── n002-out.nq │ ├── n003-in.jsonld │ ├── n003-out.nq │ ├── n004-in.jsonld │ ├── n004-out.nq │ ├── n005-in.jsonld │ ├── n005-out.nq │ ├── n006-in.jsonld │ ├── n006-out.nq │ ├── n007-in.jsonld │ ├── n007-out.nq │ ├── n008-in.jsonld │ ├── n008-out.nq │ ├── nt01-in.jsonld │ ├── nt02-in.jsonld │ ├── nt03-in.jsonld │ ├── nt04-in.jsonld │ ├── nt05-in.jsonld │ ├── nt06-in.jsonld │ ├── nt07-in.jsonld │ ├── nt08-in.jsonld │ ├── nt09-in.jsonld │ ├── nt10-in.jsonld │ ├── nt11-in.jsonld │ ├── nt12-in.jsonld │ ├── nt13-in.jsonld │ ├── nt14-in.jsonld │ ├── nt15-in.jsonld │ ├── nt16-in.jsonld │ ├── p001-in.jsonld │ ├── p001-out.nq │ ├── p002-in.jsonld │ ├── p002-out.nq │ ├── p003-in.jsonld │ ├── p003-out.nq │ ├── p004-in.jsonld │ ├── p004-out.nq │ ├── pi01-in.jsonld │ ├── pi02-in.jsonld │ ├── pi03-in.jsonld │ ├── pi04-in.jsonld │ ├── pi05-in.jsonld │ ├── pi06-in.jsonld │ ├── pi06-out.nq │ ├── pi07-in.jsonld │ ├── pi07-out.nq │ ├── pi08-in.jsonld │ ├── pi08-out.nq │ ├── pi09-in.jsonld │ ├── pi09-out.nq │ ├── pi10-in.jsonld │ ├── pi10-out.nq │ ├── pi11-in.jsonld │ ├── pi11-out.nq │ ├── pr01-in.jsonld │ ├── pr02-in.jsonld │ ├── pr02-out.nq │ ├── pr03-in.jsonld │ ├── pr04-in.jsonld │ ├── pr05-in.jsonld │ ├── pr06-in.jsonld │ ├── pr06-out.nq │ ├── pr08-in.jsonld │ ├── pr09-in.jsonld │ ├── pr10-in.jsonld │ ├── pr10-out.nq │ ├── pr11-in.jsonld │ ├── pr12-in.jsonld │ ├── pr13-in.jsonld │ ├── pr13-out.nq │ ├── pr14-in.jsonld │ ├── pr14-out.nq │ ├── pr15-in.jsonld │ ├── pr15-out.nq │ ├── pr16-in.jsonld │ ├── pr16-out.nq │ ├── pr17-in.jsonld │ ├── pr18-in.jsonld │ ├── pr19-in.jsonld │ ├── pr19-out.nq │ ├── pr20-in.jsonld │ ├── pr21-in.jsonld │ ├── pr22-in.jsonld │ ├── pr22-out.nq │ ├── pr23-in.jsonld │ ├── pr23-out.nq │ ├── pr24-in.jsonld │ ├── pr24-out.nq │ ├── pr25-in.jsonld │ ├── pr25-out.nq │ ├── pr26-in.jsonld │ ├── pr27-in.jsonld │ ├── pr27-out.nq │ ├── pr28-in.jsonld │ ├── pr29-in.jsonld │ ├── pr29-out.nq │ ├── pr30-in.jsonld │ ├── pr30-out.nq │ ├── pr31-in.jsonld │ ├── pr32-in.jsonld │ ├── pr33-in.jsonld │ ├── pr34-in.jsonld │ ├── pr34-out.nq │ ├── pr35-in.jsonld │ ├── pr35-out.nq │ ├── pr36-in.jsonld │ ├── pr36-out.nq │ ├── pr37-in.jsonld │ ├── pr37-out.nq │ ├── pr38-in.jsonld │ ├── pr38-out.nq │ ├── pr39-in.jsonld │ ├── pr39-out.nq │ ├── pr40-in.jsonld │ ├── pr40-out.nq │ ├── rt01-in.jsonld │ ├── rt01-out.nq │ ├── so01-in.jsonld │ ├── so02-in.jsonld │ ├── so03-in.jsonld │ ├── so05-context.jsonld │ ├── so05-in.jsonld │ ├── so05-out.nq │ ├── so06-context.jsonld │ ├── so06-in.jsonld │ ├── so06-out.nq │ ├── so07-context.jsonld │ ├── so07-in.jsonld │ ├── so08-context.jsonld │ ├── so08-in.jsonld │ ├── so08-out.nq │ ├── so09-context.jsonld │ ├── so09-in.jsonld │ ├── so09-out.nq │ ├── so10-context.jsonld │ ├── so10-in.jsonld │ ├── so11-context.jsonld │ ├── so11-in.jsonld │ ├── so11-out.nq │ ├── so12-in.jsonld │ ├── so13-context.jsonld │ ├── so13-in.jsonld │ ├── tn01-in.jsonld │ ├── tn02-in.jsonld │ ├── tn02-out.nq │ ├── wf01-in.jsonld │ ├── wf01-out.nq │ ├── wf02-in.jsonld │ ├── wf02-out.nq │ ├── wf03-in.jsonld │ ├── wf03-out.nq │ ├── wf04-in.jsonld │ ├── wf04-out.nq │ ├── wf05-in.jsonld │ ├── wf05-out.nq │ ├── wf07-in.jsonld │ └── wf07-out.nq ├── vocab.html ├── vocab.jsonld ├── vocab.ttl ├── vocab_context.jsonld └── vocab_template.haml ├── url.go ├── url_test.go └── utils.go /ld/testdata/compact/0001-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {} 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/compact/0001-in.jsonld: -------------------------------------------------------------------------------- 1 | {"@id": "http://example.org/test#example"} -------------------------------------------------------------------------------- /ld/testdata/compact/0001-out.jsonld: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /ld/testdata/compact/0003-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {} 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/compact/0003-out.jsonld: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /ld/testdata/compact/0012-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "ex": "http://example.org/vocab#" 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0012-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://example.org/test", 3 | "http://example.org/vocab#bool": true, 4 | "http://example.org/vocab#int": 123 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0013-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "ex": "http://example.org/vocab#" 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0013-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://example.org/test", 3 | "http://example.org/vocab#test": {"@value": "test", "@language": "en"} 4 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0020-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "ex": "http://example.org/ns#", 4 | "ex:property": {"@container": "@list"} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0029-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "author": {"@id": "http://example.com/vocab/author", "@container": "@index" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/compact/0031-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "name": "http://xmlns.com/foaf/0.1/name" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/compact/0039-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {} 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/compact/0040-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {} 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/compact/0041-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "name": { "@id": "http://example.com/property", "@container": "@list" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/compact/0042-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "listAlias": "@list", 4 | "indexAlias": "@index" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/compact/0043-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.com/", 4 | "name": "http://xmlns.com/foaf/0.1/name" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/compact/0046-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {} 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/compact/0048-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.com/propertyA": 5, 3 | "http://example.com/propertyB": 5 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/compact/0049-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "property": { "@id": "http://example.org", "@type": "@id" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/compact/0051-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {} 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/compact/0051-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.org/term": { 3 | "@list": [1] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/compact/0051-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.org/term": { 3 | "@list": [1] 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/compact/0052-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "graph": "@graph", 4 | "term": "http://example.org/term" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/compact/0053-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@id": "http://example.org/term", "@type": "@vocab"} 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/compact/0053-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/term": [{"@id": "http://example.org/enum"}] 3 | }] 4 | -------------------------------------------------------------------------------- /ld/testdata/compact/0054-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/term": [{"@id": "http://example.org/enum"}] 3 | }] 4 | -------------------------------------------------------------------------------- /ld/testdata/compact/0056-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/term": [{"@id": "http://example.org/enum"}] 3 | }] 4 | -------------------------------------------------------------------------------- /ld/testdata/compact/0058-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/term": [{"@id": "http://example.org/enum"}] 3 | }] 4 | -------------------------------------------------------------------------------- /ld/testdata/compact/0062-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": { "@id": "http://example.org/term", "@type": "@vocab" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/compact/0064-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "property": { "@id": "http://example.com/property", "@container": "@index" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/compact/0065-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "property": { "@id": "http://example.com/property", "@container": "@language" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/compact/0066-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "links": { "@id": "http://www.example.com/link", "@type": "@id", "@container": "@list" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/compact/0070-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": "http://example/term" 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0070-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://example/foo", 3 | "http://example/term": [{"@value": "value"}] 4 | }] 5 | -------------------------------------------------------------------------------- /ld/testdata/compact/0071-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "foo": "http://example.com/foo" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/compact/0072-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@language": "en" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/compact/0072-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.com/foo": "foo-value" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/compact/0072-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.com/foo": { 3 | "@value": "foo-value" 4 | }, 5 | "@context": { 6 | "@language": "en" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ld/testdata/compact/0075-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "ns": "http://example.com/core#" 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0075-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.com/core#associated": { "@id": "#Light"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0075-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "ns": "http://example.com/core#" 4 | }, 5 | "ns:associated": { 6 | "@id": "#Light" 7 | } 8 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0076-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@base": "http://example.com/api/things/1"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0076-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://example.com/api/things/1", 3 | "http://example.com": "" 4 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0076-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@base": "http://example.com/api/things/1"}, 3 | "@id": "1", 4 | "http://example.com": "" 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0079-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "input": {"@container": "@graph"} 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/compact/0080-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "input": {"@container": "@graph"} 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/compact/0081-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "input": {"@container": ["@graph", "@index"]} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0082-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "input": {"@container": ["@graph", "@index", "@set"]} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0083-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "input": {"@container": ["@graph", "@index"]} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0084-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "input": {"@container": ["@graph", "@id"]} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0084-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/input": [{ 3 | "@graph": [{ 4 | "http://example.org/value": [{"@value": "x"}] 5 | }] 6 | }] 7 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/0085-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "input": {"@container": ["@graph", "@id"]} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0086-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "input": {"@container": ["@graph", "@id", "@set"]} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0086-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/input": [{ 3 | "@graph": [{ 4 | "http://example.org/value": [{"@value": "x"}] 5 | }] 6 | }] 7 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/0087-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "input": {"@container": ["@graph", "@id", "@set"]} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0088-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "input": {"@container": ["@graph", "@id"]} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0090-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "input": "foo:input", 5 | "value": "foo:value" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/compact/0091-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "input": "foo:input", 5 | "value": "foo:value" 6 | } 7 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0092-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "input": "foo:input", 5 | "value": "foo:value" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/compact/0093-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "input": "foo:input", 5 | "value": "foo:value" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/compact/0094-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "input": "foo:input", 5 | "value": "foo:value" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/compact/0095-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@base": "http://example.com/some/", 4 | "@vocab": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/compact/0096-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "input": {"@id": "foo:input", "@container": "@graph"}, 4 | "value": "foo:value" 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0097-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "input": {"@id": "foo:input", "@container": ["@graph", "@set"]}, 4 | "value": "foo:value" 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0098-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "input": {"@container": ["@graph", "@index"]} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0100-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "input": {"@container": ["@graph", "@id"]} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0101-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "input": {"@container": ["@graph", "@id", "@set"]} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0102-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "input": {"@container": ["@graph", "@index"]} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0103-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "input": {"@container": ["@graph", "@id"]} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0104-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@type": {"@container": "@set"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0104-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@type": "http://example.org/type" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/compact/0104-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@type": {"@container": "@set"} 4 | }, 5 | "@type": ["http://example.org/type"] 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0105-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "type": {"@id": "@type", "@container": "@set"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0105-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@type": "http://example.org/type" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/compact/0105-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "type": {"@id": "@type", "@container": "@set"} 4 | }, 5 | "type": ["http://example.org/type"] 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0106-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "type": {"@id": "@type", "@container": "@set"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0106-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@type": "http://example.org/type" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/compact/0106-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "type": {"@id": "@type", "@container": "@set"} 4 | }, 5 | "type": "http://example.org/type" 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0107-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@base": "http://example.com/some/", 4 | "@vocab": "other/" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/compact/0108-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "valueOf": "http://example.org/valueOf", 4 | "toString": "http://example.org/toString" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/compact/0109-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "input": {"@id": "foo:input", "@container": "@graph"}, 4 | "value": "foo:value" 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0109-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "foo:input": [{ 3 | "@graph": [ 4 | {"foo:value": "x"}, 5 | {"foo:value": "y"} 6 | ] 7 | }] 8 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/0110-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "input": {"@id": "foo:input", "@container": ["@graph", "@set"]}, 4 | "value": "foo:value" 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/0110-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "foo:input": [{ 3 | "@graph": [ 4 | {"foo:value": "x"}, 5 | {"foo:value": "y"} 6 | ] 7 | }] 8 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/c001-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/", 4 | "foo": {"@context": {"bar": "http://example.org/bar"}} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/c001-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example/foo": [{"http://example.org/bar": [{"@value": "baz"}]}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/c002-in.jsonld: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "http://example/foo": [{"http://example/bar": [{"@id": "http://example/baz"}]}] 4 | } 5 | ] -------------------------------------------------------------------------------- /ld/testdata/compact/c003-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/", 4 | "foo": {"@context": {"Bar": {"@id": "bar"}}} 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/compact/c003-in.jsonld: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "http://example/foo": [{ 4 | "http://example/bar": [ 5 | {"@value": "baz"} 6 | ]} 7 | ] 8 | } 9 | ] -------------------------------------------------------------------------------- /ld/testdata/compact/c004-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/", 4 | "foo": {"@context": {"baz": {"@type": "@id"}}} 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/compact/c005-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/", 4 | "b": {"@context": {"c": "http://example.org/c"}} 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/compact/c006-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/", 4 | "Foo": {"@context": {"bar": "http://example.org/bar"}} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/c009-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/", 4 | "Foo": {"@context": {"baz": {"@type": "@vocab"}}} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/c010-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/", 4 | "B": {"@context": {"c": "http://example.org/c"}} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/c012-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@type": ["http://example/t2", "http://example/t1"], 3 | "http://example.org/foo": [ 4 | {"@id": "urn:bar"} 5 | ] 6 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/c022-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@type": ["ex:Type"], 3 | "ex:foo": [{"@id": "ex:Bar"}] 4 | }] 5 | -------------------------------------------------------------------------------- /ld/testdata/compact/c023-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@type": ["ex:Outer"], 3 | "ex:nested": [{ 4 | "@type": ["ex:Inner"], 5 | "ex:foo": [{"@id": "ex:Foo"}] 6 | }] 7 | }] 8 | -------------------------------------------------------------------------------- /ld/testdata/compact/c027-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example/bar": [{ 3 | "http://example/baz": [{ 4 | "http://example/baz": [{"@value": "buzz"}] 5 | }] 6 | }] 7 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/di01-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.com/term": [ 3 | "v5", 4 | {"@value": "plain literal"} 5 | ] 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/di02-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"direction": "@direction"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/di02-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.org/foo": {"@value": "bar", "@direction": "ltr"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/di02-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"direction": "@direction"}, 3 | "http://example.org/foo": {"@value": "bar", "direction": "ltr"} 4 | } -------------------------------------------------------------------------------- /ld/testdata/compact/e001-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/list": {"@list": [{"@list": ["foo"]}, {"@list": ["bar"]}]} 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/e002-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "tag": "http://example.org/ns/tag/" 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/e002-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "tag:champin.net,2019:prop": {"@value": "hello world"} 3 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/en01-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@id": "http://example/foo", "@nest": "unknown"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/en01-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo": "bar" 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep05-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep05-in.jsonld: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /ld/testdata/compact/ep06-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.0 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep06-in.jsonld: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /ld/testdata/compact/ep07-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "foo": {"@id": "http://example/foo", "@prefix": true} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep07-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo": "bar" 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep08-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "foo": {"@id": "http://example/foo", "@prefix": "string"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep08-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo": "bar" 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep09-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo/bar/": "bar" 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep10-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "foo": {"@id": "http://example/foo", "@nest": "@nest"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep10-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo": "bar" 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep11-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "foo": {"@id": "http://example/foo", "@context": {}} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep11-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo": "bar" 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep12-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "foo": {"@id": "http://example/foo", "@container": ["@set"]} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep12-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo": "bar" 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep13-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "foo": {"@id": "http://example/foo", "@container": "@id"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep13-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo": {"@id": "http://example/foo", "http://example/bar": "bar"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep14-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "foo": {"@id": "http://example/foo", "@container": "@type"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep14-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo": {"@type": "http://example/foo", "http://example/bar": "bar"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep15-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "foo": {"@id": "http://example/foo", "@container": "@graph"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/ep15-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo": {"@graph": {"http://example/bar": "bar"}} 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/in02-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@vocab": "http://example.org/" 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/in03-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@vocab": "http://example.org/", 5 | "included": "@included" 6 | } 7 | } -------------------------------------------------------------------------------- /ld/testdata/compact/in04-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@vocab": "http://example.org/" 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/in05-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@vocab": "http://example.org/" 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/js01-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "e": {"@id": "http://example.org/vocab#bool", "@type": "@json"} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/js01-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#bool": [{"@value": true, "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/js02-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "e": {"@id": "http://example.org/vocab#bool", "@type": "@json"} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/js02-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#bool": [{"@value": false, "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/js03-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "e": {"@id": "http://example.org/vocab#double", "@type": "@json"} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/js03-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#double": [{"@value": 1.23, "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/js04-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "e": {"@id": "http://example.org/vocab#double", "@type": "@json"} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/js04-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#double": [{"@value": 0.0e0, "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/js05-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#integer": [{"@value": 123, "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/js06-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "e": {"@id": "http://example.org/vocab#object", "@type": "@json"} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/js06-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#object": [{"@value": {"foo": "bar"}, "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/js07-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#array": [{"@value": [{"foo": "bar"}], "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/js08-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@version": 1.1} 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/js08-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#object": [{"@value": {"foo": "bar"}, "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/js08-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@version": 1.1}, 3 | "http://example.org/vocab#object": {"@value": {"foo": "bar"}, "@type": "@json"} 4 | } -------------------------------------------------------------------------------- /ld/testdata/compact/js09-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@version": 1.1, "value": "@value", "type": "@type", "json": "@json"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/js09-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#object": [{"@value": {"foo": "bar"}, "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/js10-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "e": {"@id": "http://example.org/vocab#string", "@type": "@json"} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/js10-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#string": [{ 3 | "@value": "string", 4 | "@type": "@json" 5 | }] 6 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/js11-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "e": {"@id": "http://example.org/vocab#null", "@type": "@json"} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/js11-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#null": [{ 3 | "@value": null, 4 | "@type": "@json" 5 | }] 6 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/li01-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}} 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/li01-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [{"@list": []}]}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/li01-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [[]] 4 | } -------------------------------------------------------------------------------- /ld/testdata/compact/li02-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}} 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/li02-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [{"@list": [{"@value": "baz"}]}]}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/li02-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [["baz"]] 4 | } -------------------------------------------------------------------------------- /ld/testdata/compact/li03-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}} 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/li03-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [{"@list": [{"@list": [{"@value": "baz"}]}]}]}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/li03-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [[["baz"]]] 4 | } -------------------------------------------------------------------------------- /ld/testdata/compact/li04-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}} 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/li04-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [ 3 | {"@list": [{"@value": "a"}]}, 4 | {"@list": [{"@value": "b"}]} 5 | ]}] 6 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/li04-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [["a"], ["b"]] 4 | } -------------------------------------------------------------------------------- /ld/testdata/compact/li05-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}} 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/li05-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.com/foo": [{"@list": [ 3 | {"@list": [{"@value": "a"}]}, 4 | {"@value": "b"} 5 | ]}] 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/li05-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [["a"], "b"] 4 | } -------------------------------------------------------------------------------- /ld/testdata/compact/m001-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/", 4 | "idmap": {"@container": "@id"} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/m002-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/", 4 | "idmap": {"@container": "@id"} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/m003-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/", 4 | "typemap": {"@container": "@type"} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/m004-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/", 4 | "typemap": {"@container": "@type"} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/m006-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/", 4 | "typemap": {"@container": "@type"} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/m013-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example/idmap": [ 3 | {"http://example/label": [{"@value": "Object with no @id"}]} 4 | ] 5 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/m014-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example/idmap": [ 3 | {"http://example/label": [{"@value": "Object with no @id"}]} 4 | ] 5 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/m015-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example/typemap": [ 3 | {"http://example/label": [{"@value": "Object with no @type"}]} 4 | ] 5 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/m016-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example/typemap": [ 3 | {"http://example/label": [{"@value": "Object with no @id"}]} 4 | ] 5 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/m018-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "input": {"@container": ["@graph", "@id"]} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/n001-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "p2": {"@nest": "@nest"} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/n001-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/p1": [{"@value": "v1"}], 3 | "http://example.org/p2": [{"@value": "v2"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/n002-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/p1": [{"@value": "v1"}], 3 | "http://example.org/p2": [{"@value": "v2"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/n003-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "nest": "@nest", 5 | "p2": {"@nest": "nest"} 6 | } 7 | } -------------------------------------------------------------------------------- /ld/testdata/compact/n003-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/p1": [{"@value": "v1"}], 3 | "http://example.org/p2": [{"@value": "v2"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/n004-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/", 4 | "p2": {"@nest": "@nest"} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/compact/n004-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/p1": [{"@value": "v1"}], 3 | "http://example.org/p2": [{"@value": "v2"}, {"@value": "v3"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/n005-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/list": [{"@list": [ 3 | {"@value": "a"}, 4 | {"@value": "b"} 5 | ]}] 6 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/n006-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/index": [ 3 | {"@value": "a", "@index": "A"}, 4 | {"@value": "b", "@index": "B"} 5 | ] 6 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/n010-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.org/foo": "bar", 3 | "http://example.org/bar": "foo" 4 | } -------------------------------------------------------------------------------- /ld/testdata/compact/n011-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/p1": [{"@value": "v1"}], 3 | "http://example.org/p2": [{"@value": "v2"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/p001-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "ex": {"@id": "http://example.org/"} 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/compact/p002-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "ex": {"@id": "http://example.org/"} 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/compact/p007-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "foo": "http://example.org/", 4 | "foo:bar": {"@type": "@id"} 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/compact/p007-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://example.org/bar/a", 3 | "http://example.org/bar/b": "c" 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/compact/pr01-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example/a": [{"@id": "http://example.org/foo"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/pr02-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example/a": [{"@id": "http://example.org/foo"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/r001-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"b": "http://example.com/b"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/r001-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "a", 3 | "http://example.com/b": {"@id": "c"} 4 | } -------------------------------------------------------------------------------- /ld/testdata/compact/r001-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"b": "http://example.com/b"}, 3 | "@id": "a", 4 | "b": {"@id": "c"} 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/r002-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"b": "http://example.com/b"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/compact/r002-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://example.org/a", 3 | "http://example.com/b": {"@id": "http://example.org/c"} 4 | } -------------------------------------------------------------------------------- /ld/testdata/compact/r002-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"b": "http://example.com/b"}, 3 | "@id": "http://example.org/a", 4 | "b": {"@id": "http://example.org/c"} 5 | } -------------------------------------------------------------------------------- /ld/testdata/compact/tn02-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/notype": [{"@value": "string"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/compact/tn03-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/notype": [{"@value": "string"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/0001-in.jsonld: -------------------------------------------------------------------------------- 1 | {"@id": "http://example.org/test#example"} -------------------------------------------------------------------------------- /ld/testdata/expand/0001-out.jsonld: -------------------------------------------------------------------------------- 1 | [ ] 2 | -------------------------------------------------------------------------------- /ld/testdata/expand/0003-out.jsonld: -------------------------------------------------------------------------------- 1 | [ ] 2 | -------------------------------------------------------------------------------- /ld/testdata/expand/0019-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "myproperty": "http://example.com/myproperty" 4 | }, 5 | "myproperty": { "@value" : null } 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/expand/0019-out.jsonld: -------------------------------------------------------------------------------- 1 | [ ] 2 | -------------------------------------------------------------------------------- /ld/testdata/expand/0022-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": "http://example.com/term", 4 | "@language": "en" 5 | }, 6 | "term": "v" 7 | } -------------------------------------------------------------------------------- /ld/testdata/expand/0022-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/term": [{"@value": "v", "@language": "en"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/0045-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@value": "free-floating value" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/expand/0045-out.jsonld: -------------------------------------------------------------------------------- 1 | [ ] 2 | -------------------------------------------------------------------------------- /ld/testdata/expand/0046-out.jsonld: -------------------------------------------------------------------------------- 1 | [ ] 2 | -------------------------------------------------------------------------------- /ld/testdata/expand/0051-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/property": [{ 3 | "@value": "ok" 4 | }], 5 | "@id": "https://w3c.github.io/issue/1" 6 | }] 7 | -------------------------------------------------------------------------------- /ld/testdata/expand/0053-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/term": [{"@id": "http://example.org/enum"}] 3 | }] 4 | -------------------------------------------------------------------------------- /ld/testdata/expand/0054-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/term": [{"@id": "http://example.org/enum"}] 3 | }] 4 | -------------------------------------------------------------------------------- /ld/testdata/expand/0055-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/term": [{"@id": "http://example.org/enum"}] 3 | }] 4 | -------------------------------------------------------------------------------- /ld/testdata/expand/0058-out.jsonld: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "http://example.org/term": [ { "@id": "http://example.com/vocab#suffix" } ] 4 | } 5 | ] 6 | -------------------------------------------------------------------------------- /ld/testdata/expand/0072-out.jsonld: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "http://example.com/anotherVocab#term": [ 4 | { "@value": "value of term" } 5 | ] 6 | } 7 | ] 8 | -------------------------------------------------------------------------------- /ld/testdata/expand/0076-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "relative-iri", 3 | "http://prop": "value" 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/expand/0076-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://example/base/relative-iri", 3 | "http://prop": [{"@value": "value"}] 4 | }] 5 | -------------------------------------------------------------------------------- /ld/testdata/expand/0089-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@base": "" 4 | }, 5 | "@id": "relative-iri", 6 | "http://prop": "value" 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/expand/0089-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://example/base/relative-iri", 3 | "http://prop": [{"@value": "value"}] 4 | }] 5 | -------------------------------------------------------------------------------- /ld/testdata/expand/0090-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@base": ".." 4 | }, 5 | "@id": "relative-iri", 6 | "http://prop": "value" 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/expand/0090-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://example/relative-iri", 3 | "http://prop": [{"@value": "value"}] 4 | }] 5 | -------------------------------------------------------------------------------- /ld/testdata/expand/0091-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://foo.bar/baz/example/relative-iri", 3 | "http://prop": [{"@value": "value"}] 4 | }] 5 | -------------------------------------------------------------------------------- /ld/testdata/expand/0109-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "urn:u:": [ 3 | {"@id": "https://ex.org/#Test"}, 4 | {"@id": "https://ex.org/#Test:2"} 5 | ] 6 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/0114-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@type": ["http://example.org/Type1", "http://example.org/Type2"] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/0117-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab:term": [{"@id": "http://example.org/base"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/0119-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab/at": [{"@value": "allowed"}], 3 | "http://example.org/vocab/foo.bar": [{"@value": "allowed"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/0123-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://example.com/foo", 3 | "http://example.com/bar": {"@value": "bar", "@type": "http://example.com/baz z"} 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/0124-out.jsonld: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "http://example.org/ns/foo": [ 4 | { 5 | "@value": "bar" 6 | } 7 | ] 8 | } 9 | ] 10 | -------------------------------------------------------------------------------- /ld/testdata/expand/0125-out.jsonld: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "http://example.org/foo": [ 4 | { 5 | "@value": "bar" 6 | } 7 | ] 8 | } 9 | ] 10 | -------------------------------------------------------------------------------- /ld/testdata/expand/0126-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "0126-context.jsonld", 3 | "@id": "ex:id", 4 | "prop": { 5 | "value": "v" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/expand/0127-context-2.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "0127-context-1.jsonld" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/expand/0127-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "0127-context-1.jsonld", 3 | "@id": "ex:id", 4 | "prop": { 5 | "value": "v" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/expand/0128-context-1.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "0128-context-3.jsonld" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/expand/0128-context-2.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "0128-context-3.jsonld" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/expand/0129-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context" : {"@base": "http://example"}, 3 | "@id": "relative-iri", 4 | "http://prop": "value" 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/expand/0129-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://example/relative-iri", 3 | "http://prop": [{"@value": "value"}] 4 | }] 5 | -------------------------------------------------------------------------------- /ld/testdata/expand/0130-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context" : {"@base": "http://example/base"}, 3 | "@id": "relative-iri", 4 | "http://prop": "value" 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/expand/0130-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://example/relative-iri", 3 | "http://prop": [{"@value": "value"}] 4 | }] 5 | -------------------------------------------------------------------------------- /ld/testdata/expand/c001-out.jsonld: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "http://example/foo": [{"http://example.org/bar": [{"@value": "baz"}]}] 4 | } 5 | ] -------------------------------------------------------------------------------- /ld/testdata/expand/c002-out.jsonld: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "http://example/foo": [{"http://example/bar": [{"@id": "http://example/baz"}]}] 4 | } 5 | ] -------------------------------------------------------------------------------- /ld/testdata/expand/c011-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@type": ["http://example/t2", "http://example/t1"], 3 | "http://example.org/foo": [ 4 | {"@id": "urn:bar"} 5 | ] 6 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/c022-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@type": ["ex:Type"], 3 | "ex:foo": [{"@id": "ex:Bar"}] 4 | }] 5 | -------------------------------------------------------------------------------- /ld/testdata/expand/c029-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@propagate": true 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/expand/c030-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@propagate": "not boolean" 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/expand/c034-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "bar": "http://example.org/bar" 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/expand/c034-out.jsonld: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "http://example/foo": [{"http://example.org/bar": [{"@value": "baz"}]}] 4 | } 5 | ] -------------------------------------------------------------------------------- /ld/testdata/expand/di08-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@direction": "foo" 5 | }, 6 | "vocab:term": "bar" 7 | } -------------------------------------------------------------------------------- /ld/testdata/expand/di09-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "ex:p": { 3 | "@value": "v", 4 | "@type": "ex:t", 5 | "@direction": "rtl" 6 | } 7 | } -------------------------------------------------------------------------------- /ld/testdata/expand/e003-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "e003-in.jsonld" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/expand/e052-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "e052-in.jsonld", 3 | "@id": "http://example/test#example" 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/expand/e053-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "e053-in.jsonld" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/expand/e053-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "e053-context.jsonld", 3 | "@id": "http://example/test#example" 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/expand/e054-context-1.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "e054-context-2.jsonld" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/expand/e054-context-2.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "e054-context-1.jsonld" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/expand/e054-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": [ 3 | "e054-context-1.jsonld", 4 | "e054-context-2.jsonld" 5 | ], 6 | "@id": "ex:id" 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/expand/ec01-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@id": "http://example/", "@index": true} 4 | }, 5 | "@id": "http://example/test#example" 6 | } -------------------------------------------------------------------------------- /ld/testdata/expand/ec02-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@type": {} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/expand/en01-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@vocab": "http://example.org/"}, 3 | "@nest": "This should generate an error" 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/en02-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@vocab": "http://example.org/"}, 3 | "@nest": true 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/en03-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@vocab": "http://example.org/"}, 3 | "@nest": 1 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/en04-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@vocab": "http://example.org/"}, 3 | "@nest": {"@value": "This should generate an error"} 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/en05-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@id": "http://example/term", "@nest": "@id"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/expand/en06-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@reverse": "http://example/term", "@nest": "@nest"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/expand/ep02-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/expand/ep03-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.0 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er01-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@type": "@id" 4 | }, 5 | "@type": "http://example.org/type" 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/expand/er02-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "er02-in.jsonld", 3 | "@id": "http://example/test#example" 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/expand/er03-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "er03-in.jsonld", 3 | "@id": "http://example/test#example" 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/expand/er04-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "tag:non-dereferencable-iri", 3 | "@id": "http://example/test#example" 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/expand/er05-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@context": "er05-in.jsonld", 3 | "@id": "http://example/test#example" 4 | }] 5 | -------------------------------------------------------------------------------- /ld/testdata/expand/er06-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": true, 3 | "@id": "http://example/test#example" 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er07-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@base": true}, 3 | "@id": "http://example/test#example" 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er08-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@vocab": true}, 3 | "@id": "http://example/test#example" 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er09-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@language": true}, 3 | "@id": "http://example/test#example" 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er10-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@id": "term:term"} 4 | }, 5 | "@id": "http://example/test#example" 6 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er11-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": true 4 | }, 5 | "@id": "http://example/test#example" 6 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er15-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@reverse": true} 4 | }, 5 | "@id": "http://example/test#example" 6 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er18-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@id": true} 4 | }, 5 | "@id": "http://example/test#example" 6 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er19-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@id": "@context"} 4 | }, 5 | "@id": "http://example/test#example" 6 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er20-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@container": "@set"} 4 | }, 5 | "@id": "http://example/test#example" 6 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er24-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [{"@list": ["baz"]}] 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er25-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://example/foo", 3 | "@reverse": { 4 | "@id": "http://example/bar" 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er27-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": true 3 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er28-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@type": true 3 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er29-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/prop": {"@value": ["foo"]} 3 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er30-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/prop": {"@value": "foo", "@language": true} 3 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er32-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.com/foo": {"@list": [{"@list": ["baz"]}]} 3 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er33-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/prop": { 3 | "@reverse": true 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er37-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo": {"@value": "bar", "@id": "http://example/baz"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er38-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo": {"@value": "bar", "@language": "en", "@type": "http://example/type"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er39-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo": {"@value": true, "@language": "en"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er40-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo": {"@value": "bar", "@type": "_:dt"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er41-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/prop": {"@list": ["foo"], "@id": "http://example/bar"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/expand/er42-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@type": {"@container": "@set"} 4 | }, 5 | "@type": "http://example.org/type" 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/expand/er48-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "./something": "http://example.com/vocab#somethingElse" 4 | }, 5 | "./something": "something" 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/expand/er51-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"value": "@value"}, 3 | "http://example/prop": {"value": ["foo"]} 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/expand/in07-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@vocab": "http://example.org/" 5 | }, 6 | "@included": "string" 7 | } -------------------------------------------------------------------------------- /ld/testdata/expand/in08-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@vocab": "http://example.org/" 5 | }, 6 | "@included": {"@value": "value"} 7 | } -------------------------------------------------------------------------------- /ld/testdata/expand/js01-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#bool": [{"@value": true, "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/js02-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#bool": [{"@value": false, "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/js03-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#double": [{"@value": 1.23, "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/js04-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#double": [{"@value": 0.0e0, "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/js05-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#integer": [{"@value": 123, "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/js06-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#object": [{"@value": {"foo": "bar"}, "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/js07-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#array": [{"@value": [{"foo": "bar"}], "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/js14-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#array": [{"@value": [{"e": "bar"}], "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/js15-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.org/vocab#object": [{"@value": {"foo": "bar"}, "@type": "@json"}] 3 | } -------------------------------------------------------------------------------- /ld/testdata/expand/js15-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#object": [{"@value": {"foo": "bar"}, "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/js16-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#object": [{"@value": {"foo": "bar"}, "@type": "@json"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/js17-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#string": [{ 3 | "@value": "string", 4 | "@type": "@json" 5 | }] 6 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/js18-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#null": [{ 3 | "@value": null, 4 | "@type": "@json" 5 | }] 6 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/js19-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "ex:foo": [{ 3 | "@type": "@json", 4 | "@value": { 5 | "test": 1 6 | } 7 | }] 8 | }] 9 | -------------------------------------------------------------------------------- /ld/testdata/expand/js20-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "ex:foo": [{ 3 | "@type": "@json", 4 | "@value": { 5 | "test": 1 6 | } 7 | }] 8 | }] 9 | -------------------------------------------------------------------------------- /ld/testdata/expand/js22-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.org/vocab#null": {"@value": null, "@type": "@json"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/expand/js22-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#null": [{ 3 | "@value": null, 4 | "@type": "@json" 5 | }] 6 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/js23-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.org/vocab#null": {"@value": [], "@type": "@json"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/expand/js23-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/vocab#null": [{ 3 | "@value": [], 4 | "@type": "@json" 5 | }] 6 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/li01-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.com/foo": {"@list": [{"@list": ["baz"]}]} 3 | } -------------------------------------------------------------------------------- /ld/testdata/expand/li01-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [{"@list": [{"@value": "baz"}]}]}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/li02-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.com/foo": {"@list": [{"@list": []}]} 3 | } -------------------------------------------------------------------------------- /ld/testdata/expand/li02-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [{"@list": []}]}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/li03-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [{"@list": ["baz"]}] 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/li03-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [{"@list": [{"@value": "baz"}]}]}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/li04-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [{"@list": []}] 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/li04-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [{"@list": []}]}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/li05-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [["baz"]] 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/li05-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [{"@list": [{"@value": "baz"}]}]}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/li06-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [[]] 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/li06-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [{"@list": []}]}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/li07-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [[["baz"]]] 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/li07-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [{"@list": [{"@list": [{"@value": "baz"}]}]}]}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/li08-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [[[]]] 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/li08-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [{"@list": [{"@list": []}]}]}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/li09-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [["a"], ["b"]] 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/li09-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [ 3 | {"@list": [{"@value": "a"}]}, 4 | {"@list": [{"@value": "b"}]} 5 | ]}] 6 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/li10-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [["a"], "b"] 4 | } -------------------------------------------------------------------------------- /ld/testdata/expand/li10-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [ 3 | {"@list": [{"@value": "a"}]}, 4 | {"@value": "b"} 5 | ]}] 6 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/n001-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@vocab": "http://example.org/"}, 3 | "p1": "v1", 4 | "@nest": { 5 | "p2": "v2" 6 | } 7 | } -------------------------------------------------------------------------------- /ld/testdata/expand/n001-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/p1": [{"@value": "v1"}], 3 | "http://example.org/p2": [{"@value": "v2"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/n002-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/p1": [{"@value": "v1"}], 3 | "http://example.org/p2": [{"@value": "v2"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/n008-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@type": ["http://example.org/T1", "http://example.org/T2"], 3 | "http://example.org/p1": [{"@value": "v1"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/p001-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example/a": [{"@id": "http://example.org/foo"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/p002-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example/a": [{"@id": "http://example.org/foo"}], 3 | "http://example/b": [{"@id": "http://example.org/bar"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/p003-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example/a": [{"@id": "http://example.org/foo"}], 3 | "http://example/b": [{"@id": "http://example.org/bar"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/p004-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example/a": [{"@id": "http://example.org/foo"}], 3 | "http://example/b": [{"@id": "http://example.org/bar"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/pr06-out.jsonld: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "http://example.com/unprotected": [{}] 4 | } 5 | ] 6 | -------------------------------------------------------------------------------- /ld/testdata/expand/pr24-out.jsonld: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "http://example/foo#bar": [{ 4 | "@value": "foobar" 5 | }] 6 | } 7 | ] 8 | 9 | -------------------------------------------------------------------------------- /ld/testdata/expand/pr34-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@type": ["http://example.com/IgnoreTest"] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/pr35-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@type": ["http://example.com/IgnoreTest"] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/pr36-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@type": ["http://example.com/IgnoreTest"] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/pr37-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@type": ["http://example.com/IgnoreTest"], 3 | "http://example.org/ignoreMe": [{"@value": "vocabulary relative"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/pr38-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@type": ["http://example.com/IgnoreTest"] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/so01-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@import": "so01-in.jsonld" 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/expand/so02-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@import": {} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/expand/so03-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@import": "so03-in.jsonld" 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/expand/so05-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "baz": {"@id": "http://example.org/baz", "@type": "@vocab"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/expand/so06-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "baz": {"@id": "http://example.com/baz", "@type": "@id"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/expand/so08-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": "http://example.org/sourced" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/expand/so08-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/redefined": [{"@value": "value"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/so09-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/source/", 4 | "term": {"@id": "term"} 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/expand/so09-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/redefined/term": [{"@value": "value"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/so10-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": "http://example.org/protected" 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/expand/so11-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": "http://example.org/sourced" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/expand/so11-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/redefined": [{"@value": "value"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/expand/so12-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@import": "so12-in.jsonld" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/expand/so13-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@import": "so13-context.jsonld" 5 | }, 6 | "term": "value" 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/extra/0001-out.jsonld: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "@id": "https://foo.bar/baz", 4 | "@type": [ 5 | "http://schema.org/#PropertyValue" 6 | ] 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /ld/testdata/flatten/0001-in.jsonld: -------------------------------------------------------------------------------- 1 | {"@id": "http://example.org/test#example"} -------------------------------------------------------------------------------- /ld/testdata/flatten/0001-out.jsonld: -------------------------------------------------------------------------------- 1 | [ ] 2 | -------------------------------------------------------------------------------- /ld/testdata/flatten/0003-out.jsonld: -------------------------------------------------------------------------------- 1 | [ ] 2 | -------------------------------------------------------------------------------- /ld/testdata/flatten/0019-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "myproperty": "http://example.com/myproperty" 4 | }, 5 | "myproperty": { "@value" : null } 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/flatten/0019-out.jsonld: -------------------------------------------------------------------------------- 1 | [ ] 2 | -------------------------------------------------------------------------------- /ld/testdata/flatten/0022-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": "http://example.com/term", 4 | "@language": "en" 5 | }, 6 | "term": "v" 7 | } -------------------------------------------------------------------------------- /ld/testdata/flatten/0044-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": "http://example/term" 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/flatten/0044-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://example/foo", 3 | "http://example/term": [{"@value": "value"}] 4 | }] 5 | -------------------------------------------------------------------------------- /ld/testdata/flatten/li01-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [{"@list": [{"@list": [{"@value": "baz"}]}]}]}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/flatten/li01-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "_:b0", 3 | "http://example.com/foo": [{"@list": [{"@list": [{"@list": [{"@value": "baz"}]}]}]}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/flatten/li02-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.com/foo": {"@list": [{"@list": []}]} 3 | } -------------------------------------------------------------------------------- /ld/testdata/flatten/li02-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "_:b0", 3 | "http://example.com/foo": [{"@list": [{"@list": []}]}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/frame/0013-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "ex": "http://example.org/" 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0014-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "ex": "http://example.org/" 4 | }, 5 | "@type": ["ex:Node"] 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/frame/0018-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@type": ["http://example.org/vocab#Library"], 3 | "http://example.org/vocab#contains": [{}] 4 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0019-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "ex": "http://example.org/terms#" 4 | }, 5 | "@type": "ex:Node" 6 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0020-frame.jsonld: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /ld/testdata/frame/0022-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1" 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/frame/0022-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@graph": [{ 4 | "@id": "ex:Sub1", 5 | "@type": "ex:Type1" 6 | }] 7 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0023-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "ex:p": [], 4 | "ex:q": {} 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0023-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1", 4 | "ex:p": null, 5 | "ex:q": "bar" 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/frame/0024-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@requireAll": false, 4 | "ex:p": {}, 5 | "ex:q": {} 6 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0026-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@explicit": true, 4 | "@type": "ex:Type1" 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0026-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1", 4 | "@type": "ex:Type1" 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0027-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@type": "ex:Type1", 4 | "ex:null": [] 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0028-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@type": "ex:Type1", 4 | "@reverse": {"ex:includes": {}} 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0031-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@type": [] 4 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0031-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub2", 4 | "ex:p": "Bar" 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/frame/0032-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1" 4 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0032-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1", 4 | "@type": "ex:Type1" 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0033-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": ["ex:Sub1", "ex:Sub2"] 4 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0034-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "ex:p": [], 4 | "ex:q": {} 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0034-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1", 4 | "ex:p": null, 5 | "ex:q": "bar" 6 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0035-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "ex:p": { 4 | "ex:q": {} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0038-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "ex:q": {"@value": "Q", "@type": {}} 4 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0038-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1", 4 | "ex:q": {"@value": "Q", "@type": "ex:q"} 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0038-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1", 4 | "ex:q": {"@value": "Q", "@type": "ex:q"} 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0039-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "ex:r": {"@value": "R", "@language": {}} 4 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0039-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1", 4 | "ex:r": {"@value": "R", "@language": "r"} 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0039-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1", 4 | "ex:r": {"@value": "R", "@language": "r"} 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0043-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "ex:q": {"@value": "Q", "@type": ["ex:q", "ex:Q"]} 4 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0043-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1", 4 | "ex:q": {"@value": "Q", "@type": "ex:q"} 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0043-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1", 4 | "ex:q": {"@value": "Q", "@type": "ex:q"} 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0044-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "ex:r": {"@value": "R", "@language": ["p", "q", "r"]} 4 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0044-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1", 4 | "ex:r": {"@value": "R", "@language": "r"} 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0044-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1", 4 | "ex:r": {"@value": "R", "@language": "r"} 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0046-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@vocab": "urn:"}, 3 | "@type": "Class" 4 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0047-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@vocab": "urn:"}, 3 | "@type": "Class", 4 | "@graph": {} 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0048-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@vocab": "urn:"}, 3 | "@type": "Class", 4 | "preserve": { 5 | "@graph": {} 6 | } 7 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0052-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": ["ex:Sub1", "_:Sub2"] 4 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0053-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@type": ["ex:Type1", "_:Type2"] 4 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0055-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "ex:mixedlist": {} 4 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0058-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "ex": "http://example.org/" 5 | }, 6 | "@graph": [] 7 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0059-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "ex": "http://www.example.com/#" 4 | }, 5 | "@type": "ex:Thing", 6 | "@embed": "@last" 7 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0060-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "ex": "http://www.example.com/#" 4 | }, 5 | "@type": "ex:Thing", 6 | "@embed": "@once" 7 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0064-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@type": {"@default": "ex:Foo"}, 4 | "ex:foo": "bar" 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0064-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1", 4 | "ex:foo": "bar" 5 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0064-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1", 4 | "@type": "ex:Foo", 5 | "ex:foo": "bar" 6 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0065-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "https://schema.org/" 4 | }, 5 | "givenName": "John" 6 | } -------------------------------------------------------------------------------- /ld/testdata/frame/0066-frame.jsonld: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "@context": { 4 | "@vocab": "https://schema.org/" 5 | }, 6 | "follows": { "@id": "https://schema.org/JANE" } 7 | } -------------------------------------------------------------------------------- /ld/testdata/frame/p046-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@vocab": "urn:"}, 3 | "@id": "urn:id-1", 4 | "@type": "Class", 5 | "preserve": {} 6 | } -------------------------------------------------------------------------------- /ld/testdata/frame/p050-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/", 4 | "id": "@id" 5 | }, 6 | "id": {}, 7 | "name": {} 8 | } 9 | -------------------------------------------------------------------------------- /ld/testdata/frame/p050-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/", 4 | "id": "@id" 5 | }, 6 | "name": "foo" 7 | } -------------------------------------------------------------------------------- /ld/testdata/frame/ra01-frame.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@requireAll": true, 4 | "@type": "ex:Type", 5 | "ex:p": {} 6 | } -------------------------------------------------------------------------------- /ld/testdata/frame/ra01-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1", 4 | "@type": "ex:Type", 5 | "ex:p": "foo" 6 | } -------------------------------------------------------------------------------- /ld/testdata/frame/ra02-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.org/"}, 3 | "@id": "ex:Sub1", 4 | "@type": "ex:Type", 5 | "ex:p": "foo" 6 | } -------------------------------------------------------------------------------- /ld/testdata/fromRdf/0023-in.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /ld/testdata/fromRdf/0024-in.nq: -------------------------------------------------------------------------------- 1 | "test"@en . 2 | "test"@fr . 3 | -------------------------------------------------------------------------------- /ld/testdata/fromRdf/0026-in.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /ld/testdata/fromRdf/di01-in.nq: -------------------------------------------------------------------------------- 1 | "no language"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/fromRdf/di02-in.nq: -------------------------------------------------------------------------------- 1 | "en-US"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/fromRdf/di05-in.nq: -------------------------------------------------------------------------------- 1 | "no language"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/fromRdf/di05-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://example.com/a", 3 | "http://example.org/label": [{"@value": "no language", "@direction": "rtl"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/fromRdf/di06-in.nq: -------------------------------------------------------------------------------- 1 | "en-US"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/fromRdf/di09-in.nq: -------------------------------------------------------------------------------- 1 | "no language"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/fromRdf/di10-in.nq: -------------------------------------------------------------------------------- 1 | "en-US"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/fromRdf/di11-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://example.com/a", 3 | "http://example.org/label": [{"@value": "no language", "@direction": "rtl"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/fromRdf/js01-in.nq: -------------------------------------------------------------------------------- 1 | "true"^^ . -------------------------------------------------------------------------------- /ld/testdata/fromRdf/js01-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://example.org/vocab#id", 3 | "http://example.org/vocab#bool": [{"@value": true, "@type": "@json"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/fromRdf/js02-in.nq: -------------------------------------------------------------------------------- 1 | "false"^^ . -------------------------------------------------------------------------------- /ld/testdata/fromRdf/js02-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://example.org/vocab#id", 3 | "http://example.org/vocab#bool": [{"@value": false, "@type": "@json"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/fromRdf/js03-in.nq: -------------------------------------------------------------------------------- 1 | "1.23"^^ . -------------------------------------------------------------------------------- /ld/testdata/fromRdf/js03-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://example.org/vocab#id", 3 | "http://example.org/vocab#double": [{"@value": 1.23E0, "@type": "@json"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/fromRdf/js04-in.nq: -------------------------------------------------------------------------------- 1 | "0"^^ . -------------------------------------------------------------------------------- /ld/testdata/fromRdf/js04-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://example.org/vocab#id", 3 | "http://example.org/vocab#double": [{"@value": 0, "@type": "@json"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/fromRdf/js05-in.nq: -------------------------------------------------------------------------------- 1 | "123"^^ . -------------------------------------------------------------------------------- /ld/testdata/fromRdf/js05-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://example.org/vocab#id", 3 | "http://example.org/vocab#integer": [{"@value": 123, "@type": "@json"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/fromRdf/js06-in.nq: -------------------------------------------------------------------------------- 1 | "{\"foo\":\"bar\"}"^^ . -------------------------------------------------------------------------------- /ld/testdata/fromRdf/js07-in.nq: -------------------------------------------------------------------------------- 1 | "[{\"foo\":\"bar\"}]"^^ . -------------------------------------------------------------------------------- /ld/testdata/fromRdf/js08-in.nq: -------------------------------------------------------------------------------- 1 | "bareword"^^ . -------------------------------------------------------------------------------- /ld/testdata/fromRdf/js09-in.nq: -------------------------------------------------------------------------------- 1 | "[{]"^^ . -------------------------------------------------------------------------------- /ld/testdata/fromRdf/js10-in.nq: -------------------------------------------------------------------------------- 1 | "\"string\""^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/fromRdf/js11-in.nq: -------------------------------------------------------------------------------- 1 | "null"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/fromRdf/li01-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://example.com/a", 3 | "http://example.com/property": [{"@list": [{"@list": []}]}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/html/c001-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "foo": {"@id": "http://example.com/foo", "@container": "@list"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/html/c001-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "foo": {"@id": "http://example.com/foo", "@container": "@list"} 4 | }, 5 | "foo": ["bar"] 6 | } -------------------------------------------------------------------------------- /ld/testdata/html/c002-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "foo": {"@id": "http://example.com/foo", "@container": "@list"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/html/c002-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "foo": {"@id": "http://example.com/foo", "@container": "@list"} 4 | }, 5 | "foo": ["bar"] 6 | } -------------------------------------------------------------------------------- /ld/testdata/html/c003-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.com/"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/html/c003-out.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.com/"}, 3 | "@graph": [ 4 | {"ex:foo": "foo"}, 5 | {"ex:bar": "bar"} 6 | ] 7 | } -------------------------------------------------------------------------------- /ld/testdata/html/e001-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [{"@value": "bar"}]}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/html/e002-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [{"@value": "bar"}]}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/html/e003-out.jsonld: -------------------------------------------------------------------------------- 1 | [ 2 | {"http://example.com/foo": [{"@value": "foo"}]}, 3 | {"http://example.com/bar": [{"@value": "bar"}]} 4 | ] -------------------------------------------------------------------------------- /ld/testdata/html/e006-in.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ld/testdata/html/e007-in.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ld/testdata/html/e007-out.jsonld: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /ld/testdata/html/e008-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.com/foo": [{"@list": [{"@value": "bar"}]}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/html/e010-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example/foo": [{"@value": "<&>"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/html/e017-in.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /ld/testdata/html/e018-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "https://w3c.github.io/json-ld-api/tests/html/e018-in.html", 3 | "http://example.com/foo": [{"@value": "bar"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/html/e019-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://a.example.com/doc", 3 | "http://example.com/foo": [{"@value": "bar"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/html/e020-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://a.example.com/base", 3 | "http://example.com/foo": [{"@value": "bar"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/html/e021-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://a.example.com/base", 3 | "http://example.com/foo": [{"@value": "bar"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/html/e022-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "http://a.example.com/base", 3 | "http://example.com/bar": [{"@value": "foo"}] 4 | }] -------------------------------------------------------------------------------- /ld/testdata/html/f001-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "foo": {"@id": "http://example.com/foo", "@container": "@list"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/html/f002-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "foo": {"@id": "http://example.com/foo", "@container": "@list"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/html/f003-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"ex": "http://example.com/"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/html/r003-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "foo" . 2 | _:b1 "bar" . 3 | -------------------------------------------------------------------------------- /ld/testdata/html/r006-in.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ld/testdata/html/r006-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piprate/json-gold/6795ff548bc314fb266fcb4faa23e56763f9cb0e/ld/testdata/html/r006-out.nq -------------------------------------------------------------------------------- /ld/testdata/html/r007-in.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ld/testdata/html/r007-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piprate/json-gold/6795ff548bc314fb266fcb4faa23e56763f9cb0e/ld/testdata/html/r007-out.nq -------------------------------------------------------------------------------- /ld/testdata/html/r010-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "<&>" . 2 | -------------------------------------------------------------------------------- /ld/testdata/html/r017-in.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /ld/testdata/html/r018-out.nq: -------------------------------------------------------------------------------- 1 | "bar" . 2 | -------------------------------------------------------------------------------- /ld/testdata/html/r019-out.nq: -------------------------------------------------------------------------------- 1 | "bar" . 2 | -------------------------------------------------------------------------------- /ld/testdata/html/r020-out.nq: -------------------------------------------------------------------------------- 1 | "bar" . 2 | -------------------------------------------------------------------------------- /ld/testdata/html/r021-out.nq: -------------------------------------------------------------------------------- 1 | "bar" . 2 | -------------------------------------------------------------------------------- /ld/testdata/html/r022-out.nq: -------------------------------------------------------------------------------- 1 | "foo" . 2 | -------------------------------------------------------------------------------- /ld/testdata/index.html: -------------------------------------------------------------------------------- 1 | manifest.html -------------------------------------------------------------------------------- /ld/testdata/normalization/test001-in.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piprate/json-gold/6795ff548bc314fb266fcb4faa23e56763f9cb0e/ld/testdata/normalization/test001-in.nq -------------------------------------------------------------------------------- /ld/testdata/normalization/test002-in.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test002-urdna2015.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test002-urgna2012.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test003-in.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test003-urdna2015.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test003-urgna2012.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test015-in.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piprate/json-gold/6795ff548bc314fb266fcb4faa23e56763f9cb0e/ld/testdata/normalization/test015-in.nq -------------------------------------------------------------------------------- /ld/testdata/normalization/test017-in.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | _:b0 . 3 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test018-in.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test018-urdna2015.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 _:c14n0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test018-urgna2012.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 _:c14n0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test019-in.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b0 . 2 | _:b1 _:b1 . 3 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test019-urdna2015.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 _:c14n0 . 2 | _:c14n1 _:c14n1 . 3 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test019-urgna2012.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 _:c14n0 . 2 | _:c14n1 _:c14n1 . 3 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test021-in.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b1 _:b0 . 3 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test021-urdna2015.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 _:c14n1 . 2 | _:c14n1 _:c14n0 . 3 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test021-urgna2012.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 _:c14n1 . 2 | _:c14n1 _:c14n0 . 3 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test031-in.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test031-urdna2015.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test031-urgna2012.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test032-in.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test032-urdna2015.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test032-urgna2012.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test033-in.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b2 _:b3 . 3 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test033-urdna2015.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 _:c14n1 . 2 | _:c14n2 _:c14n3 . 3 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test033-urgna2012.nq: -------------------------------------------------------------------------------- 1 | _:c14n1 _:c14n0 . 2 | _:c14n3 _:c14n2 . 3 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test034-in.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b2 _:b3 . 3 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test034-urdna2015.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 _:c14n1 . 2 | _:c14n2 _:c14n3 . 3 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test034-urgna2012.nq: -------------------------------------------------------------------------------- 1 | _:c14n1 _:c14n0 . 2 | _:c14n3 _:c14n2 . 3 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test043-in.nq: -------------------------------------------------------------------------------- 1 | "test"@en . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test043-urdna2015.nq: -------------------------------------------------------------------------------- 1 | "test"@en . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test043-urgna2012.nq: -------------------------------------------------------------------------------- 1 | "test"@en . 2 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test049-in.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piprate/json-gold/6795ff548bc314fb266fcb4faa23e56763f9cb0e/ld/testdata/normalization/test049-in.nq -------------------------------------------------------------------------------- /ld/testdata/normalization/test058-in.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b3 . 2 | _:b1 _:b3 . 3 | -------------------------------------------------------------------------------- /ld/testdata/normalization/test061-in.nq: -------------------------------------------------------------------------------- 1 | "test"@en . 2 | "test"@fr . 3 | -------------------------------------------------------------------------------- /ld/testdata/remote-doc/0001-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/vocab#" 4 | }, 5 | "@id": "", 6 | "term": "object" 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/remote-doc/0002-in.json: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/vocab#" 4 | }, 5 | "@id": "", 6 | "term": "object" 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/remote-doc/0003-in.jldt: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/vocab#" 4 | }, 5 | "@id": "", 6 | "term": "object" 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/remote-doc/0004-in.jldte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piprate/json-gold/6795ff548bc314fb266fcb4faa23e56763f9cb0e/ld/testdata/remote-doc/0004-in.jldte -------------------------------------------------------------------------------- /ld/testdata/remote-doc/0009-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/vocab#" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/remote-doc/0009-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "", 3 | "http://example/0009/term": "value1", 4 | "term": "value2" 5 | }] -------------------------------------------------------------------------------- /ld/testdata/remote-doc/0010-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/vocab#" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/remote-doc/0010-in.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "", 3 | "term": "value" 4 | }] -------------------------------------------------------------------------------- /ld/testdata/remote-doc/0011-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/vocab#" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/remote-doc/0011-in.jldt: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "", 3 | "term": "value" 4 | }] -------------------------------------------------------------------------------- /ld/testdata/remote-doc/0012-context1.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/vocab#" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/remote-doc/0012-context2.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example/vocab#" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/remote-doc/0012-in.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "", 3 | "term": "value" 4 | }] -------------------------------------------------------------------------------- /ld/testdata/remote-doc/0013-in.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "@id": "", 3 | "term": "value" 4 | }] -------------------------------------------------------------------------------- /ld/testdata/remote-doc/la01-alternate.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/" 4 | }, 5 | "content": "alternate" 6 | } -------------------------------------------------------------------------------- /ld/testdata/remote-doc/la01-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/content": [{"@value": "alternate"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/remote-doc/la02-alternate.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/" 4 | }, 5 | "content": "alternate" 6 | } -------------------------------------------------------------------------------- /ld/testdata/remote-doc/la02-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/" 4 | }, 5 | "content": "not skipped" 6 | } -------------------------------------------------------------------------------- /ld/testdata/remote-doc/la02-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/content": [{"@value": "not skipped"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/remote-doc/la03-alternate.json: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/" 4 | }, 5 | "content": "alternate" 6 | } -------------------------------------------------------------------------------- /ld/testdata/remote-doc/la03-in.json: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/" 4 | }, 5 | "content": "not skipped" 6 | } -------------------------------------------------------------------------------- /ld/testdata/remote-doc/la03-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/content": [{"@value": "not skipped"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/remote-doc/la04-alternate.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/" 4 | }, 5 | "content": "alternate" 6 | } -------------------------------------------------------------------------------- /ld/testdata/remote-doc/la04-in.json: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/" 4 | }, 5 | "content": "not skipped" 6 | } -------------------------------------------------------------------------------- /ld/testdata/remote-doc/la04-out.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "http://example.org/content": [{"@value": "not skipped"}] 3 | }] -------------------------------------------------------------------------------- /ld/testdata/remote-doc/la05-alternate.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/" 4 | }, 5 | "@id": "", 6 | "content": "alternate" 7 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/0001-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://greggkellogg.net/foaf#me", 3 | "http://xmlns.com/foaf/0.1/name": "Gregg Kellogg" 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/0001-out.nq: -------------------------------------------------------------------------------- 1 | "Gregg Kellogg" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0002-out.nq: -------------------------------------------------------------------------------- 1 | "Gregg Kellogg" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0003-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foaf": "http://xmlns.com/foaf/0.1/"}, 3 | "@type": "foaf:Person" 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/0003-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0004-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "A plain literal with a lang tag."@en-us . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0005-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | _:b0 "Herman Iván"@hu . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0006-out.nq: -------------------------------------------------------------------------------- 1 | "1957-02-27"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0007-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://greggkellogg.net/foaf#me", 3 | "@type": "http://xmlns.com/foaf/0.1/Person" 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/0007-out.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0008-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"d": "http://example.com/default#"}, 3 | "d:foo": "bar" 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0008-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "bar" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0009-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": "http://example.com/default#"}, 3 | "foo:": "bar" 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0009-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "bar" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0011-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | _:b0 "Dave Longley" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0013-out.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0016-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "", 3 | "@type": "http://www.w3.org/2000/01/rdf-schema#Resource" 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/0017-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "a/b", 3 | "@type": "http://www.w3.org/2000/01/rdf-schema#Resource" 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/0018-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "#frag", 3 | "@type": "http://www.w3.org/2000/01/rdf-schema#Resource" 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/0019-out.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0020-out.nq: -------------------------------------------------------------------------------- 1 | "1957-02-27"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0022-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { "measure": "http://example/measure#"}, 3 | "measure:cups": 5.3 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0022-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "5.3E0"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0023-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { "chem": "http://example/chem#"}, 3 | "chem:protons": 12 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/0023-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "12"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0024-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { "sensor": "http://example/sensor#"}, 3 | "sensor:active": true 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/0024-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "true"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0026-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"rdfs": "http://www.w3.org/2000/01/rdf-schema#"}, 3 | "@type": ["rdfs:Resource", "rdfs:Class"] 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0113-out.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0114-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0117-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | _:b0 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0130-out.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0131-out.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/0132-out.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/c001-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b1 "baz" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/c002-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b1 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/c003-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b1 "baz" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/c004-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b1 _:b2 . 3 | _:b2 . 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/c022-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | _:b0 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/c027-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b1 _:b2 . 3 | _:b2 "buzz" . 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/c028-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b1 _:b2 . 3 | _:b2 "buzz" . 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/c029-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@propagate": true 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/c030-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@propagate": "not boolean" 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/c031-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b1 "ab" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/c034-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "bar": "http://example.org/bar" 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/c034-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b1 "baz" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/di08-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@direction": "foo" 5 | }, 6 | "vocab:term": "bar" 7 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/di09-in.jsonld: -------------------------------------------------------------------------------- 1 | {"http://example.org/label": {"@value": "no language", "@direction": "rtl"}} -------------------------------------------------------------------------------- /ld/testdata/toRdf/di09-out.nq: -------------------------------------------------------------------------------- 1 | _:a "no language"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/di10-in.jsonld: -------------------------------------------------------------------------------- 1 | {"http://example.org/label": {"@value": "en-US", "@language": "en-US", "@direction": "rtl"}} -------------------------------------------------------------------------------- /ld/testdata/toRdf/di10-out.nq: -------------------------------------------------------------------------------- 1 | _:a "en-US"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/di11-in.jsonld: -------------------------------------------------------------------------------- 1 | {"http://example.org/label": {"@value": "no language", "@direction": "rtl"}} -------------------------------------------------------------------------------- /ld/testdata/toRdf/di12-in.jsonld: -------------------------------------------------------------------------------- 1 | {"http://example.org/label": {"@value": "en-US", "@language": "en-US", "@direction": "rtl"}} -------------------------------------------------------------------------------- /ld/testdata/toRdf/e001-in.jsonld: -------------------------------------------------------------------------------- 1 | {"@id": "http://example.org/test#example"} -------------------------------------------------------------------------------- /ld/testdata/toRdf/e001-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piprate/json-gold/6795ff548bc314fb266fcb4faa23e56763f9cb0e/ld/testdata/toRdf/e001-out.nq -------------------------------------------------------------------------------- /ld/testdata/toRdf/e003-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piprate/json-gold/6795ff548bc314fb266fcb4faa23e56763f9cb0e/ld/testdata/toRdf/e003-out.nq -------------------------------------------------------------------------------- /ld/testdata/toRdf/e019-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "myproperty": "http://example.com/myproperty" 4 | }, 5 | "myproperty": { "@value" : null } 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e019-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piprate/json-gold/6795ff548bc314fb266fcb4faa23e56763f9cb0e/ld/testdata/toRdf/e019-out.nq -------------------------------------------------------------------------------- /ld/testdata/toRdf/e022-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": "http://example.com/term", 4 | "@language": "en" 5 | }, 6 | "term": "v" 7 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/e022-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "v"@en . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e032-out.nq: -------------------------------------------------------------------------------- 1 | "Markus Lanthaler" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e038-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e045-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@value": "free-floating value" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e045-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piprate/json-gold/6795ff548bc314fb266fcb4faa23e56763f9cb0e/ld/testdata/toRdf/e045-out.nq -------------------------------------------------------------------------------- /ld/testdata/toRdf/e046-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piprate/json-gold/6795ff548bc314fb266fcb4faa23e56763f9cb0e/ld/testdata/toRdf/e046-out.nq -------------------------------------------------------------------------------- /ld/testdata/toRdf/e047-out.nq: -------------------------------------------------------------------------------- 1 | "nodes with properties are not removed" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e050-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | _:b0 "Markus" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e051-out.nq: -------------------------------------------------------------------------------- 1 | "ok" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e053-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e054-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e055-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e057-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e058-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e068-out.nq: -------------------------------------------------------------------------------- 1 | _:b1 _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e071-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "value of v:term" . 2 | _:b0 "value of v:termId" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e072-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "value of term" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e075-out.nq: -------------------------------------------------------------------------------- 1 | _:b1 "blank node property 1" . 2 | _:b2 "blank node property 1" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e076-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "relative-iri", 3 | "http://prop": "value" 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e076-out.nq: -------------------------------------------------------------------------------- 1 | "value" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e079-out.nq: -------------------------------------------------------------------------------- 1 | _:b2 "x" _:b1 . 2 | _:b0 _:b1 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e080-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b2 "x" _:b1 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e081-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b3 "x" _:b2 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e082-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b2 "x" _:b1 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e083-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b2 "x" _:b1 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e084-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b2 "x" _:b1 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e085-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "x" . 2 | _:b1 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e086-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "x" . 2 | _:b1 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e087-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "x" . 2 | _:b1 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e089-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@base": "" 4 | }, 5 | "@id": "relative-iri", 6 | "http://prop": "value" 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e089-out.nq: -------------------------------------------------------------------------------- 1 | "value" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e090-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@base": ".." 4 | }, 5 | "@id": "relative-iri", 6 | "http://prop": "value" 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e090-out.nq: -------------------------------------------------------------------------------- 1 | "value" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e091-out.nq: -------------------------------------------------------------------------------- 1 | "value" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e093-out.nq: -------------------------------------------------------------------------------- 1 | _:b4 "y" _:b3 . 2 | _:b0 _:b3 . 3 | _:b0 _:b1 . 4 | _:b2 "x" _:b1 . 5 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e094-out.nq: -------------------------------------------------------------------------------- 1 | _:b4 "y" _:b3 . 2 | _:b0 _:b3 . 3 | _:b0 _:b1 . 4 | _:b2 "x" _:b1 . 5 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e102-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b3 "x" _:b2 . 3 | _:b4 "y" _:b2 . 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e109-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | _:b0 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e113-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "second" . 2 | _:b0 "first" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e117-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e119-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "allowed" . 2 | _:b0 "allowed" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e122-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | _:b0 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e123-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://example.com/foo", 3 | "http://example.com/bar": {"@value": "bar", "@type": "http://example.com/baz z"} 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/e124-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "bar" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e125-context-2.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "e125-context-1.jsonld" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e125-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "bar" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e126-context-1.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "e126-context-3.jsonld" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e126-context-2.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "e126-context-3.jsonld" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e126-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "e126-context.jsonld", 3 | "@id": "ex:id", 4 | "prop": { 5 | "value": "v" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e126-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | _:b0 "v" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e127-context-2.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "e127-context-1.jsonld" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e127-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "e127-context-1.jsonld", 3 | "@id": "ex:id", 4 | "prop": { 5 | "value": "v" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e127-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | _:b0 "v" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e128-context-1.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "e128-context-3.jsonld" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e128-context-2.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "e128-context-3.jsonld" 3 | } 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e128-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | _:b0 "v" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e129-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { "@base": "http://example" }, 3 | "@id": "relative-iri", 4 | "http://prop": "value" 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e129-out.nq: -------------------------------------------------------------------------------- 1 | "value" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e130-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { "@base": "http://example/base" }, 3 | "@id": "relative-iri", 4 | "http://prop": "value" 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/e130-out.nq: -------------------------------------------------------------------------------- 1 | "value" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/ec01-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@id": "http://example/", "@index": true} 4 | }, 5 | "@id": "http://example/test#example" 6 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/ec02-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@type": {} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/en01-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@vocab": "http://example.org/"}, 3 | "@nest": "This should generate an error" 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/en02-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@vocab": "http://example.org/"}, 3 | "@nest": true 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/en03-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@vocab": "http://example.org/"}, 3 | "@nest": 1 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/en04-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@vocab": "http://example.org/"}, 3 | "@nest": {"@value": "This should generate an error"} 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/en05-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@id": "http://example/term", "@nest": "@id"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/en06-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@reverse": "http://example/term", "@nest": "@nest"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/ep02-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/ep03-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.0 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er01-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@type": "@id" 4 | }, 5 | "@type": "http://example.org/type" 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/er02-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "er02-in.jsonld", 3 | "@id": "http://example/test#example" 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/er03-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "er03-in.jsonld", 3 | "@id": "http://example/test#example" 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/er04-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": "tag:non-dereferencable-iri", 3 | "@id": "http://example/test#example" 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/er05-in.jsonld: -------------------------------------------------------------------------------- 1 | [{ 2 | "@context": "er05-in.jsonld", 3 | "@id": "http://example/test#example" 4 | }] 5 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/er06-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": true, 3 | "@id": "http://example/test#example" 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er07-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@base": true}, 3 | "@id": "http://example/test#example" 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er08-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@vocab": true}, 3 | "@id": "http://example/test#example" 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er09-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@language": true}, 3 | "@id": "http://example/test#example" 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er10-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@id": "term:term"} 4 | }, 5 | "@id": "http://example/test#example" 6 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er11-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": true 4 | }, 5 | "@id": "http://example/test#example" 6 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er12-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@id": "http://example/term", "@type": true} 4 | }, 5 | "@id": "http://example/test#example" 6 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er15-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@reverse": true} 4 | }, 5 | "@id": "http://example/test#example" 6 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er18-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@id": true} 4 | }, 5 | "@id": "http://example/test#example" 6 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er19-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@id": "@context"} 4 | }, 5 | "@id": "http://example/test#example" 6 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er20-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": {"@container": "@set"} 4 | }, 5 | "@id": "http://example/test#example" 6 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er24-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [{"@list": ["baz"]}] 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er25-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://example/foo", 3 | "@reverse": { 4 | "@id": "http://example/bar" 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er27-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": true 3 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er28-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@type": true 3 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er29-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/prop": {"@value": ["foo"]} 3 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er30-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/prop": {"@value": "foo", "@language": true} 3 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er32-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.com/foo": {"@list": [{"@list": ["baz"]}]} 3 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er33-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/prop": { 3 | "@reverse": true 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er37-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo": {"@value": "bar", "@id": "http://example/baz"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er38-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo": {"@value": "bar", "@language": "en", "@type": "http://example/type"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er39-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo": {"@value": true, "@language": "en"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er40-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/foo": {"@value": "bar", "@type": "_:dt"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er41-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example/prop": {"@list": ["foo"], "@id": "http://example/bar"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/er42-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@type": {"@container": "@set"} 4 | }, 5 | "@type": "http://example.org/type" 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/er48-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "./something": "http://example.com/vocab#somethingElse" 4 | }, 5 | "./something": "something" 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/er51-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"value": "@value"}, 3 | "http://example/prop": {"value": ["foo"]} 4 | } 5 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/in01-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "value" . 2 | _:b1 "value2" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/in02-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "value" . 2 | _:b1 "value2" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/in03-out.nq: -------------------------------------------------------------------------------- 1 | _:b1 "value1" . 2 | _:b2 "value2" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/in04-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "value" . 2 | _:b1 "value2" . 3 | _:b2 "value3" . 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/in07-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@vocab": "http://example.org/" 5 | }, 6 | "@included": "string" 7 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/in08-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@vocab": "http://example.org/" 5 | }, 6 | "@included": {"@value": "value"} 7 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/in09-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@vocab": "http://example.org/" 5 | }, 6 | "@included": {"@list": ["value"]} 7 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/js01-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "true"^^ . -------------------------------------------------------------------------------- /ld/testdata/toRdf/js02-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "false"^^ . -------------------------------------------------------------------------------- /ld/testdata/toRdf/js03-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "1.23"^^ . -------------------------------------------------------------------------------- /ld/testdata/toRdf/js04-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "0"^^ . -------------------------------------------------------------------------------- /ld/testdata/toRdf/js05-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "123"^^ . -------------------------------------------------------------------------------- /ld/testdata/toRdf/js06-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "{\"foo\":\"bar\"}"^^ . -------------------------------------------------------------------------------- /ld/testdata/toRdf/js07-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "[{\"foo\":\"bar\"}]"^^ . -------------------------------------------------------------------------------- /ld/testdata/toRdf/js08-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "[56,{\"1\":[],\"10\":null,\"d\":true}]"^^ . -------------------------------------------------------------------------------- /ld/testdata/toRdf/js11-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "{\"Unnormalized Unicode\":\"Å\"}"^^ . -------------------------------------------------------------------------------- /ld/testdata/toRdf/js14-out.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 "[{\"e\":\"bar\"}]"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/js15-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.org/vocab#object": [{"@value": {"foo": "bar"}, "@type": "@json"}] 3 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/js15-out.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 "{\"foo\":\"bar\"}"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/js16-out.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 "{\"foo\":\"bar\"}"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/js17-out.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 "\"string\""^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/js18-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "null"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/js19-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "{\"test\":1}"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/js20-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "{\"test\":1}"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/js21-out.nq: -------------------------------------------------------------------------------- 1 | _:c14n0 "{\"@context\":\"ex:not:a:context\",\"test\":1}"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/js22-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.org/vocab#null": {"@value": null, "@type": "@json"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/js22-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "null"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/js23-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "http://example.org/vocab#null": {"@value": [], "@type": "@json"} 3 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/js23-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "[]"^^ . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/li01-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://example/A", 3 | "http://example.com/foo": {"@list": [{"@list": ["baz"]}]} 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/li02-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://example/A", 3 | "http://example.com/foo": {"@list": [{"@list": []}]} 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/li03-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [{"@list": ["baz"]}] 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/li04-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [{"@list": []}] 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/li05-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [["baz"]] 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/li06-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [[]] 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/li07-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [[["baz"]]] 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/li08-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [[[]]] 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/li09-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [["a"], ["b"]] 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/li10-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"foo": {"@id": "http://example.com/foo", "@container": "@list"}}, 3 | "foo": [["a"], "b"] 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/m005-out.nq: -------------------------------------------------------------------------------- 1 | "Object with @id " . 2 | _:b0 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/m013-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b2 "x" _:b1 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/m014-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b2 "x" _:b1 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/m015-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b2 "x" _:b1 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/m016-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | _:b2 "x" _:b1 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/n001-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": {"@vocab": "http://example.org/"}, 3 | "p1": "v1", 4 | "@nest": { 5 | "p2": "v2" 6 | } 7 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/n001-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "v2" . 2 | _:b0 "v1" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/n002-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "v2" . 2 | _:b0 "v1" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/n003-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "v3" . 2 | _:b0 "v2" . 3 | _:b0 "v1" . 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/p001-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/p002-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | _:b0 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/p003-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | _:b0 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/p004-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | _:b0 . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/pi11-out.nq: -------------------------------------------------------------------------------- 1 | _:b1 "g1" . 2 | _:b0 _:b1 . 3 | _:b2 "x" _:b1 . 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/pr06-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 _:b1 . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/pr10-out.nq: -------------------------------------------------------------------------------- 1 | _:b1 "p === ex:protected" . 2 | _:b0 "p === ex:protected" . 3 | _:b0 _:b1 . 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/pr13-out.nq: -------------------------------------------------------------------------------- 1 | _:b1 "p === ex:unprotected2" . 2 | _:b0 _:b1 . 3 | _:b0 "p === ex:unprotected1" . 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/pr14-out.nq: -------------------------------------------------------------------------------- 1 | _:b1 "p === ex:protected3" . 2 | _:b0 _:b1 . 3 | _:b0 "p === ex:protected1" . 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/pr15-out.nq: -------------------------------------------------------------------------------- 1 | _:b1 "p === ex:protected3" . 2 | _:b0 _:b1 . 3 | _:b0 "p === ex:protected1" . 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/pr23-out.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/pr24-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "foobar" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/pr27-out.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/pr29-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "tricky" . 2 | _:b0 "This is not treated as a Compact IRI" . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/pr34-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/pr35-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/pr36-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/pr38-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/pr40-out.nq: -------------------------------------------------------------------------------- 1 | "baz" . 2 | . 3 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/rt01-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "number": {"@id": "http://example.com/number"} 4 | }, 5 | "number": [-0e0, 8, 9.9, 1e21 ] 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/so01-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@import": "so01-in.jsonld" 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/so02-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@import": {} 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/so03-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@import": "so03-in.jsonld" 5 | } 6 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/so05-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "baz": {"@id": "http://example.org/baz", "@type": "@vocab"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/so06-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "baz": {"@id": "http://example.com/baz", "@type": "@id"} 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/so06-out.nq: -------------------------------------------------------------------------------- 1 | _:b2 "buzz" . 2 | _:b1 _:b2 . 3 | _:b0 _:b1 . 4 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/so08-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": "http://example.org/sourced" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/so08-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "value" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/so09-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@vocab": "http://example.org/source/", 4 | "term": {"@id": "term"} 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/so09-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "value" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/so10-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": "http://example.org/protected" 4 | } 5 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/so11-context.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "term": "http://example.org/sourced" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/so11-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "value" . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/so12-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@import": "so12-in.jsonld" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/so13-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@context": { 3 | "@version": 1.1, 4 | "@import": "so13-context.jsonld" 5 | }, 6 | "term": "value" 7 | } 8 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/wf01-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://example.com/a b", 3 | "http://example.com/foo": "bar" 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/wf01-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piprate/json-gold/6795ff548bc314fb266fcb4faa23e56763f9cb0e/ld/testdata/toRdf/wf01-out.nq -------------------------------------------------------------------------------- /ld/testdata/toRdf/wf02-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://example.com/foo", 3 | "http://example.com/a b": "bar" 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/wf02-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piprate/json-gold/6795ff548bc314fb266fcb4faa23e56763f9cb0e/ld/testdata/toRdf/wf02-out.nq -------------------------------------------------------------------------------- /ld/testdata/toRdf/wf03-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://example.com/foo", 3 | "http://example.com/bar": {"@id": "http://example.com/baz z"} 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/wf03-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piprate/json-gold/6795ff548bc314fb266fcb4faa23e56763f9cb0e/ld/testdata/toRdf/wf03-out.nq -------------------------------------------------------------------------------- /ld/testdata/toRdf/wf04-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://example.com/foo", 3 | "@type": ["http://example.com/bar", "http://in valid"] 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/wf04-out.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /ld/testdata/toRdf/wf05-in.jsonld: -------------------------------------------------------------------------------- 1 | { 2 | "@id": "http://example.com/foo", 3 | "http://example.com/bar": {"@value": "bar", "@language": "a b"} 4 | } -------------------------------------------------------------------------------- /ld/testdata/toRdf/wf05-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piprate/json-gold/6795ff548bc314fb266fcb4faa23e56763f9cb0e/ld/testdata/toRdf/wf05-out.nq -------------------------------------------------------------------------------- /ld/testdata/toRdf/wf07-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piprate/json-gold/6795ff548bc314fb266fcb4faa23e56763f9cb0e/ld/testdata/toRdf/wf07-out.nq --------------------------------------------------------------------------------