├── .dockerignore ├── .editorconfig ├── .flake8 ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── CITATION.cff ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── Dockerfile ├── FEATURES.md ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── benchmarks └── benchmark.py ├── examples ├── advanced.py ├── example.py ├── remote_sparql.py ├── rules_inference.py ├── sparql_assert_datatype.py └── two_file_example.py ├── hooks └── pre-commit ├── poetry.lock ├── poetry.toml ├── pySHACL-250.png ├── pySHACL.png ├── pySHACL.svg ├── pyproject.toml ├── pyshacl ├── __init__.py ├── __main__.py ├── assets │ ├── dash.pickle │ ├── dash.ttl │ ├── make_builtin.py │ ├── schema.pickle │ ├── schema.ttl │ ├── shacl-shacl.pickle │ ├── shacl-shacl.ttl │ ├── shacl.pickle │ └── shacl.ttl ├── cli.py ├── cli_rules.py ├── constraints │ ├── __init__.py │ ├── advanced │ │ └── __init__.py │ ├── constraint_component.py │ ├── core │ │ ├── __init__.py │ │ ├── cardinality_constraints.py │ │ ├── logical_constraints.py │ │ ├── other_constraints.py │ │ ├── property_pair_constraints.py │ │ ├── shape_based_constraints.py │ │ ├── string_based_constraints.py │ │ ├── value_constraints.py │ │ └── value_range_constraints.py │ └── sparql │ │ ├── __init__.py │ │ ├── sparql_based_constraint_components.py │ │ └── sparql_based_constraints.py ├── consts.py ├── entrypoints.py ├── errors.py ├── extras │ ├── __init__.py │ └── js │ │ ├── __init__.py │ │ ├── constraint.py │ │ ├── constraint_component.py │ │ ├── context.py │ │ ├── function.py │ │ ├── js_executable.py │ │ ├── loader.py │ │ ├── rules.py │ │ └── target.py ├── functions │ ├── __init__.py │ └── shacl_function.py ├── helper │ ├── __init__.py │ ├── expression_helper.py │ ├── path_helper.py │ └── sparql_query_helper.py ├── inference │ ├── __init__.py │ └── custom_rdfs_closure.py ├── monkey │ └── __init__.py ├── parameter.py ├── py.typed ├── pyshacl-cli.spec ├── pytypes.py ├── rdfutil │ ├── __init__.py │ ├── clone.py │ ├── compare.py │ ├── consts.py │ ├── inoculate.py │ ├── load.py │ ├── pytypes.py │ └── stringify.py ├── rule_expand_runner.py ├── rules │ ├── __init__.py │ ├── shacl_rule.py │ ├── sparql │ │ └── __init__.py │ └── triple │ │ └── __init__.py ├── run_type.py ├── sh_http.py ├── shape.py ├── shapes_graph.py ├── target.py ├── validator.py └── validator_conformance.py └── test ├── __init__.py ├── helpers.py ├── implementation_report.py ├── issues ├── __init__.py ├── bad_test_070.py ├── issue_102.py ├── test_008.py ├── test_009.py ├── test_012.py ├── test_014.py ├── test_026.py ├── test_029 │ ├── __init__.py │ ├── simpleData.ttl │ └── simpleOnto.ttl ├── test_036.py ├── test_038.py ├── test_040 │ ├── 03-Network.ttl │ ├── __init__.py │ └── sample-network.ttl ├── test_058.py ├── test_062.py ├── test_071.py ├── test_076.py ├── test_079.py ├── test_087.py ├── test_098.py ├── test_108.py ├── test_116.py ├── test_120.py ├── test_124.py ├── test_126.py ├── test_133.py ├── test_141.py ├── test_142.py ├── test_146.py ├── test_148.py ├── test_154.py ├── test_160.py ├── test_162.py ├── test_170.py ├── test_190.py ├── test_199.py ├── test_213.py ├── test_217.py ├── test_220 │ ├── LICENSE.md │ ├── __init__.py │ ├── kb-REPRODUCTION-1.ttl │ ├── kb-REPRODUCTION-2.ttl │ ├── owl-REPRODUCTION.ttl │ ├── sh-REPRODUCTION-1.ttl │ └── sh-REPRODUCTION-2.ttl ├── test_227.py ├── test_240.py ├── test_281 │ ├── data.ttl │ ├── policies.ttl │ ├── policies │ │ └── gitlab-policy.ttl │ └── test_281.py ├── test_286.py ├── test_96.py └── test_w3_list1.py ├── resources ├── cmdline_tests │ ├── d1.jsonld │ ├── d1.ttl │ ├── d2.ttl │ ├── o1.ttl │ ├── rules_d.ttl │ ├── rules_s.ttl │ └── s1.ttl ├── dash_tests │ ├── core │ │ ├── complex │ │ │ └── personexample.test.ttl │ │ ├── misc │ │ │ ├── deactivated-001.test.ttl │ │ │ ├── deactivated-002.test.ttl │ │ │ ├── severity-001.test.ttl │ │ │ └── severity-002.test.ttl │ │ ├── node │ │ │ ├── and-001.test.ttl │ │ │ ├── and-002.test.ttl │ │ │ ├── class-001.test.ttl │ │ │ ├── class-002.test.ttl │ │ │ ├── closed-001.test.ttl │ │ │ ├── closed-002.test.ttl │ │ │ ├── datatype-001.test.ttl │ │ │ ├── datatype-002.test.ttl │ │ │ ├── disjoint-001.test.ttl │ │ │ ├── equals-001.test.ttl │ │ │ ├── hasValue-001.test.ttl │ │ │ ├── in-001.test.ttl │ │ │ ├── languageIn-001.test.ttl │ │ │ ├── maxExclusive-001.test.ttl │ │ │ ├── maxInclusive-001.test.ttl │ │ │ ├── maxLength-001.test.ttl │ │ │ ├── minExclusive-001.test.ttl │ │ │ ├── minInclusive-001.test.ttl │ │ │ ├── minLength-001.test.ttl │ │ │ ├── node-001.test.ttl │ │ │ ├── nodeKind-001.test.ttl │ │ │ ├── not-001.test.ttl │ │ │ ├── not-002.test.ttl │ │ │ ├── or-001.test.ttl │ │ │ ├── pattern-001.test.ttl │ │ │ ├── pattern-002.test.ttl │ │ │ └── xone-001.test.ttl │ │ ├── path │ │ │ ├── path-alternative-001.test.ttl │ │ │ ├── path-complex-001.test.ttl │ │ │ ├── path-inverse-001.test.ttl │ │ │ ├── path-oneOrMore-001.test.ttl │ │ │ ├── path-sequence-001.test.ttl │ │ │ ├── path-sequence-002.test.ttl │ │ │ ├── path-sequence-duplicate-001.test.ttl │ │ │ ├── path-zeroOrMore-001.test.ttl │ │ │ └── path-zeroOrOne-001.test.ttl │ │ ├── property │ │ │ ├── and-001.test.ttl │ │ │ ├── class-001.test.ttl │ │ │ ├── datatype-001.test.ttl │ │ │ ├── datatype-002.test.ttl │ │ │ ├── datatype-003.test.ttl │ │ │ ├── disjoint-001.test.ttl │ │ │ ├── equals-001.test.ttl │ │ │ ├── hasValue-001.test.ttl │ │ │ ├── in-001.test.ttl │ │ │ ├── languageIn-001.test.ttl │ │ │ ├── lessThan-001.test.ttl │ │ │ ├── lessThan-002.test.ttl │ │ │ ├── lessThanOrEquals-001.test.ttl │ │ │ ├── maxCount-001.test.ttl │ │ │ ├── maxCount-002.test.ttl │ │ │ ├── maxExclusive-001.test.ttl │ │ │ ├── maxInclusive-001.test.ttl │ │ │ ├── maxLength-001.test.ttl │ │ │ ├── minCount-001.test.ttl │ │ │ ├── minCount-002.test.ttl │ │ │ ├── minExclusive-001.test.ttl │ │ │ ├── minExclusive-002.test.ttl │ │ │ ├── minLength-001.test.ttl │ │ │ ├── node-001.test.ttl │ │ │ ├── node-002.test.ttl │ │ │ ├── nodeKind-001.test.ttl │ │ │ ├── not-001.test.ttl │ │ │ ├── or-001.test.ttl │ │ │ ├── or-datatypes-001.test.ttl │ │ │ ├── pattern-001.test.ttl │ │ │ ├── pattern-002.test.ttl │ │ │ ├── property-001.test.ttl │ │ │ ├── qualifiedMinCountDisjoint-001.test.ttl │ │ │ ├── qualifiedValueShape-001.test.ttl │ │ │ ├── qualifiedValueShapesDisjoint-001.test.ttl │ │ │ ├── uniqueLang-001.test.ttl │ │ │ └── xone-001.test.ttl │ │ └── targets │ │ │ ├── multipleTargets-001.test.ttl │ │ │ ├── targetClass-001.test.ttl │ │ │ ├── targetClassImplicit-001.test.ttl │ │ │ ├── targetNode-001.test.ttl │ │ │ ├── targetObjectsOf-001.test.ttl │ │ │ ├── targetSubjectsOf-001.test.ttl │ │ │ └── targetSubjectsOf-002.test.ttl │ ├── expression │ │ └── booleans-001.test.ttl │ ├── function │ │ ├── callSPARQLFunction.test.ttl │ │ └── simpleSPARQLFunction.test.ttl │ ├── rules │ │ ├── sparql │ │ │ ├── classify-square.test.ttl │ │ │ └── rectangle.test.ttl │ │ └── triple │ │ │ ├── functions-permutations.test.ttl │ │ │ ├── person.ttl │ │ │ ├── person2schema.test.ttl │ │ │ ├── rectangle.test.ttl │ │ │ ├── schema2person.test.ttl │ │ │ └── square.test.ttl │ ├── shapedefs │ │ ├── anon-shape-001.test.ttl │ │ └── anon-shape-002.test.ttl │ ├── sparql │ │ ├── component │ │ │ ├── nodeValidator-001.test.ttl │ │ │ ├── optional-001.test.ttl │ │ │ ├── propertyValidator-select-001.test.ttl │ │ │ └── validator-001.test.ttl │ │ ├── node │ │ │ ├── prefixes-001.test.ttl │ │ │ ├── sparql-001.test.ttl │ │ │ └── sparql-002.test.ttl │ │ └── property │ │ │ └── sparql-001.test.ttl │ └── target │ │ ├── sparqlTarget-001.test.ttl │ │ └── sparqlTargetType-001.test.ttl ├── js │ ├── findBornIn.js │ ├── findThings.js │ ├── germanLabel.js │ ├── hasMaxCount.js │ ├── hasMaxLength.js │ ├── multiply.js │ └── rectangle.js └── sht_tests │ ├── core │ ├── complex │ │ ├── manifest.ttl │ │ ├── personexample.ttl │ │ ├── shacl-shacl-data-shapes.ttl │ │ └── shacl-shacl.ttl │ ├── manifest.ttl │ ├── misc │ │ ├── deactivated-001.ttl │ │ ├── deactivated-002.ttl │ │ ├── manifest.ttl │ │ ├── message-001.ttl │ │ ├── severity-001.ttl │ │ └── severity-002.ttl │ ├── node │ │ ├── and-001.ttl │ │ ├── and-002.ttl │ │ ├── class-001.ttl │ │ ├── class-002.ttl │ │ ├── class-003.ttl │ │ ├── closed-001.ttl │ │ ├── closed-002.ttl │ │ ├── datatype-001.ttl │ │ ├── datatype-002.ttl │ │ ├── disjoint-001.ttl │ │ ├── equals-001.ttl │ │ ├── hasValue-001.ttl │ │ ├── in-001.ttl │ │ ├── languageIn-001.ttl │ │ ├── manifest.ttl │ │ ├── maxExclusive-001.ttl │ │ ├── maxInclusive-001.ttl │ │ ├── maxLength-001.ttl │ │ ├── minExclusive-001.ttl │ │ ├── minInclusive-001.ttl │ │ ├── minInclusive-002.ttl │ │ ├── minInclusive-003.ttl │ │ ├── minLength-001.ttl │ │ ├── node-001.ttl │ │ ├── nodeKind-001.ttl │ │ ├── not-001.ttl │ │ ├── not-002.ttl │ │ ├── or-001.ttl │ │ ├── pattern-001.ttl │ │ ├── pattern-002.ttl │ │ ├── qualified-001-data.ttl │ │ ├── qualified-001-shapes.ttl │ │ ├── qualified-001.ttl │ │ ├── xone-001.ttl │ │ ├── xone-duplicate-data.ttl │ │ ├── xone-duplicate-shapes.ttl │ │ └── xone-duplicate.ttl │ ├── path │ │ ├── manifest.ttl │ │ ├── path-alternative-001.ttl │ │ ├── path-complex-001.ttl │ │ ├── path-complex-002-data.ttl │ │ ├── path-complex-002-shapes.ttl │ │ ├── path-complex-002.ttl │ │ ├── path-inverse-001.ttl │ │ ├── path-oneOrMore-001.ttl │ │ ├── path-sequence-001.ttl │ │ ├── path-sequence-002.ttl │ │ ├── path-sequence-duplicate-001.ttl │ │ ├── path-strange-001.ttl │ │ ├── path-strange-002.ttl │ │ ├── path-unused-001-data.ttl │ │ ├── path-unused-001-shapes.ttl │ │ ├── path-unused-001.ttl │ │ ├── path-zeroOrMore-001.ttl │ │ └── path-zeroOrOne-001.ttl │ ├── property │ │ ├── and-001.ttl │ │ ├── class-001.ttl │ │ ├── datatype-001.ttl │ │ ├── datatype-002.ttl │ │ ├── datatype-003.ttl │ │ ├── datatype-ill-formed-data.ttl │ │ ├── datatype-ill-formed-shapes.ttl │ │ ├── datatype-ill-formed.ttl │ │ ├── disjoint-001.ttl │ │ ├── equals-001.ttl │ │ ├── hasValue-001.ttl │ │ ├── in-001.ttl │ │ ├── languageIn-001.ttl │ │ ├── lessThan-001.ttl │ │ ├── lessThan-002.ttl │ │ ├── lessThanOrEquals-001.ttl │ │ ├── manifest.ttl │ │ ├── maxCount-001.ttl │ │ ├── maxCount-002.ttl │ │ ├── maxExclusive-001.ttl │ │ ├── maxInclusive-001.ttl │ │ ├── maxLength-001.ttl │ │ ├── minCount-001.ttl │ │ ├── minCount-002.ttl │ │ ├── minExclusive-001.ttl │ │ ├── minExclusive-002.ttl │ │ ├── minLength-001.ttl │ │ ├── node-001.ttl │ │ ├── node-002.ttl │ │ ├── nodeKind-001.ttl │ │ ├── not-001.ttl │ │ ├── or-001.ttl │ │ ├── or-datatypes-001.ttl │ │ ├── pattern-001.ttl │ │ ├── pattern-002.ttl │ │ ├── property-001.ttl │ │ ├── qualifiedMinCountDisjoint-001.ttl │ │ ├── qualifiedValueShape-001.ttl │ │ ├── qualifiedValueShapesDisjoint-001.ttl │ │ ├── uniqueLang-001.ttl │ │ ├── uniqueLang-002-data.ttl │ │ ├── uniqueLang-002-shapes.ttl │ │ └── uniqueLang-002.ttl │ ├── targets │ │ ├── manifest.ttl │ │ ├── multipleTargets-001.ttl │ │ ├── targetClass-001.ttl │ │ ├── targetClassImplicit-001.ttl │ │ ├── targetNode-001.ttl │ │ ├── targetObjectsOf-001.ttl │ │ ├── targetSubjectsOf-001.ttl │ │ └── targetSubjectsOf-002.ttl │ └── validation-reports │ │ ├── manifest.ttl │ │ ├── shared-data.ttl │ │ ├── shared-shapes.ttl │ │ └── shared.ttl │ ├── manifest.ttl │ └── sparql │ ├── component │ ├── manifest.ttl │ ├── nodeValidator-001.ttl │ ├── optional-001.ttl │ ├── propertyValidator-select-001.ttl │ └── validator-001.ttl │ ├── manifest.ttl │ ├── node │ ├── manifest.ttl │ ├── prefixes-001.ttl │ ├── sparql-001.ttl │ ├── sparql-002.ttl │ └── sparql-003.ttl │ ├── pre-binding │ ├── manifest.ttl │ ├── pre-binding-001.ttl │ ├── pre-binding-002.ttl │ ├── pre-binding-003.ttl │ ├── pre-binding-004.ttl │ ├── pre-binding-005.ttl │ ├── pre-binding-006.ttl │ ├── pre-binding-007.ttl │ ├── shapesGraph-001.ttl │ ├── unsupported-sparql-001.ttl │ ├── unsupported-sparql-002.ttl │ ├── unsupported-sparql-003.ttl │ ├── unsupported-sparql-004.ttl │ ├── unsupported-sparql-005.ttl │ └── unsupported-sparql-006.ttl │ └── property │ ├── manifest.ttl │ └── sparql-001.ttl ├── test_advanced.py ├── test_cmdline.py ├── test_cmdline_rules.py ├── test_dash_validate.py ├── test_extra.py ├── test_inoculate.py ├── test_integers.py ├── test_js ├── __init__.py ├── conftest.py ├── test_js_constraint.py ├── test_js_constraint_component.py ├── test_js_constraint_path_component.py ├── test_js_function.py ├── test_js_rules.py ├── test_js_target.py └── test_js_target_type.py ├── test_manual_targeting.py ├── test_schema_org.py ├── test_sh_details.py ├── test_shacl_rules_runner.py └── test_sht_validate.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/Dockerfile -------------------------------------------------------------------------------- /FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/FEATURES.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/benchmarks/benchmark.py -------------------------------------------------------------------------------- /examples/advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/examples/advanced.py -------------------------------------------------------------------------------- /examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/examples/example.py -------------------------------------------------------------------------------- /examples/remote_sparql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/examples/remote_sparql.py -------------------------------------------------------------------------------- /examples/rules_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/examples/rules_inference.py -------------------------------------------------------------------------------- /examples/sparql_assert_datatype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/examples/sparql_assert_datatype.py -------------------------------------------------------------------------------- /examples/two_file_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/examples/two_file_example.py -------------------------------------------------------------------------------- /hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/hooks/pre-commit -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/poetry.lock -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/poetry.toml -------------------------------------------------------------------------------- /pySHACL-250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pySHACL-250.png -------------------------------------------------------------------------------- /pySHACL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pySHACL.png -------------------------------------------------------------------------------- /pySHACL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pySHACL.svg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyshacl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/__init__.py -------------------------------------------------------------------------------- /pyshacl/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/__main__.py -------------------------------------------------------------------------------- /pyshacl/assets/dash.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/assets/dash.pickle -------------------------------------------------------------------------------- /pyshacl/assets/dash.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/assets/dash.ttl -------------------------------------------------------------------------------- /pyshacl/assets/make_builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/assets/make_builtin.py -------------------------------------------------------------------------------- /pyshacl/assets/schema.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/assets/schema.pickle -------------------------------------------------------------------------------- /pyshacl/assets/schema.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/assets/schema.ttl -------------------------------------------------------------------------------- /pyshacl/assets/shacl-shacl.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/assets/shacl-shacl.pickle -------------------------------------------------------------------------------- /pyshacl/assets/shacl-shacl.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/assets/shacl-shacl.ttl -------------------------------------------------------------------------------- /pyshacl/assets/shacl.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/assets/shacl.pickle -------------------------------------------------------------------------------- /pyshacl/assets/shacl.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/assets/shacl.ttl -------------------------------------------------------------------------------- /pyshacl/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/cli.py -------------------------------------------------------------------------------- /pyshacl/cli_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/cli_rules.py -------------------------------------------------------------------------------- /pyshacl/constraints/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/constraints/__init__.py -------------------------------------------------------------------------------- /pyshacl/constraints/advanced/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/constraints/advanced/__init__.py -------------------------------------------------------------------------------- /pyshacl/constraints/constraint_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/constraints/constraint_component.py -------------------------------------------------------------------------------- /pyshacl/constraints/core/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /pyshacl/constraints/core/cardinality_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/constraints/core/cardinality_constraints.py -------------------------------------------------------------------------------- /pyshacl/constraints/core/logical_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/constraints/core/logical_constraints.py -------------------------------------------------------------------------------- /pyshacl/constraints/core/other_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/constraints/core/other_constraints.py -------------------------------------------------------------------------------- /pyshacl/constraints/core/property_pair_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/constraints/core/property_pair_constraints.py -------------------------------------------------------------------------------- /pyshacl/constraints/core/shape_based_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/constraints/core/shape_based_constraints.py -------------------------------------------------------------------------------- /pyshacl/constraints/core/string_based_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/constraints/core/string_based_constraints.py -------------------------------------------------------------------------------- /pyshacl/constraints/core/value_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/constraints/core/value_constraints.py -------------------------------------------------------------------------------- /pyshacl/constraints/core/value_range_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/constraints/core/value_range_constraints.py -------------------------------------------------------------------------------- /pyshacl/constraints/sparql/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /pyshacl/constraints/sparql/sparql_based_constraint_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/constraints/sparql/sparql_based_constraint_components.py -------------------------------------------------------------------------------- /pyshacl/constraints/sparql/sparql_based_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/constraints/sparql/sparql_based_constraints.py -------------------------------------------------------------------------------- /pyshacl/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/consts.py -------------------------------------------------------------------------------- /pyshacl/entrypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/entrypoints.py -------------------------------------------------------------------------------- /pyshacl/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/errors.py -------------------------------------------------------------------------------- /pyshacl/extras/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/extras/__init__.py -------------------------------------------------------------------------------- /pyshacl/extras/js/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/extras/js/__init__.py -------------------------------------------------------------------------------- /pyshacl/extras/js/constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/extras/js/constraint.py -------------------------------------------------------------------------------- /pyshacl/extras/js/constraint_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/extras/js/constraint_component.py -------------------------------------------------------------------------------- /pyshacl/extras/js/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/extras/js/context.py -------------------------------------------------------------------------------- /pyshacl/extras/js/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/extras/js/function.py -------------------------------------------------------------------------------- /pyshacl/extras/js/js_executable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/extras/js/js_executable.py -------------------------------------------------------------------------------- /pyshacl/extras/js/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/extras/js/loader.py -------------------------------------------------------------------------------- /pyshacl/extras/js/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/extras/js/rules.py -------------------------------------------------------------------------------- /pyshacl/extras/js/target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/extras/js/target.py -------------------------------------------------------------------------------- /pyshacl/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/functions/__init__.py -------------------------------------------------------------------------------- /pyshacl/functions/shacl_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/functions/shacl_function.py -------------------------------------------------------------------------------- /pyshacl/helper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/helper/__init__.py -------------------------------------------------------------------------------- /pyshacl/helper/expression_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/helper/expression_helper.py -------------------------------------------------------------------------------- /pyshacl/helper/path_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/helper/path_helper.py -------------------------------------------------------------------------------- /pyshacl/helper/sparql_query_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/helper/sparql_query_helper.py -------------------------------------------------------------------------------- /pyshacl/inference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/inference/__init__.py -------------------------------------------------------------------------------- /pyshacl/inference/custom_rdfs_closure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/inference/custom_rdfs_closure.py -------------------------------------------------------------------------------- /pyshacl/monkey/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/monkey/__init__.py -------------------------------------------------------------------------------- /pyshacl/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/parameter.py -------------------------------------------------------------------------------- /pyshacl/py.typed: -------------------------------------------------------------------------------- 1 | partial 2 | -------------------------------------------------------------------------------- /pyshacl/pyshacl-cli.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/pyshacl-cli.spec -------------------------------------------------------------------------------- /pyshacl/pytypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/pytypes.py -------------------------------------------------------------------------------- /pyshacl/rdfutil/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/rdfutil/__init__.py -------------------------------------------------------------------------------- /pyshacl/rdfutil/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/rdfutil/clone.py -------------------------------------------------------------------------------- /pyshacl/rdfutil/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/rdfutil/compare.py -------------------------------------------------------------------------------- /pyshacl/rdfutil/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/rdfutil/consts.py -------------------------------------------------------------------------------- /pyshacl/rdfutil/inoculate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/rdfutil/inoculate.py -------------------------------------------------------------------------------- /pyshacl/rdfutil/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/rdfutil/load.py -------------------------------------------------------------------------------- /pyshacl/rdfutil/pytypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/rdfutil/pytypes.py -------------------------------------------------------------------------------- /pyshacl/rdfutil/stringify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/rdfutil/stringify.py -------------------------------------------------------------------------------- /pyshacl/rule_expand_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/rule_expand_runner.py -------------------------------------------------------------------------------- /pyshacl/rules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/rules/__init__.py -------------------------------------------------------------------------------- /pyshacl/rules/shacl_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/rules/shacl_rule.py -------------------------------------------------------------------------------- /pyshacl/rules/sparql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/rules/sparql/__init__.py -------------------------------------------------------------------------------- /pyshacl/rules/triple/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/rules/triple/__init__.py -------------------------------------------------------------------------------- /pyshacl/run_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/run_type.py -------------------------------------------------------------------------------- /pyshacl/sh_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/sh_http.py -------------------------------------------------------------------------------- /pyshacl/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/shape.py -------------------------------------------------------------------------------- /pyshacl/shapes_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/shapes_graph.py -------------------------------------------------------------------------------- /pyshacl/target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/target.py -------------------------------------------------------------------------------- /pyshacl/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/validator.py -------------------------------------------------------------------------------- /pyshacl/validator_conformance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/pyshacl/validator_conformance.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/helpers.py -------------------------------------------------------------------------------- /test/implementation_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/implementation_report.py -------------------------------------------------------------------------------- /test/issues/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | -------------------------------------------------------------------------------- /test/issues/bad_test_070.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/bad_test_070.py -------------------------------------------------------------------------------- /test/issues/issue_102.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/issue_102.py -------------------------------------------------------------------------------- /test/issues/test_008.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_008.py -------------------------------------------------------------------------------- /test/issues/test_009.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_009.py -------------------------------------------------------------------------------- /test/issues/test_012.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_012.py -------------------------------------------------------------------------------- /test/issues/test_014.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_014.py -------------------------------------------------------------------------------- /test/issues/test_026.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_026.py -------------------------------------------------------------------------------- /test/issues/test_029/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_029/__init__.py -------------------------------------------------------------------------------- /test/issues/test_029/simpleData.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_029/simpleData.ttl -------------------------------------------------------------------------------- /test/issues/test_029/simpleOnto.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_029/simpleOnto.ttl -------------------------------------------------------------------------------- /test/issues/test_036.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_036.py -------------------------------------------------------------------------------- /test/issues/test_038.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_038.py -------------------------------------------------------------------------------- /test/issues/test_040/03-Network.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_040/03-Network.ttl -------------------------------------------------------------------------------- /test/issues/test_040/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_040/__init__.py -------------------------------------------------------------------------------- /test/issues/test_040/sample-network.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_040/sample-network.ttl -------------------------------------------------------------------------------- /test/issues/test_058.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_058.py -------------------------------------------------------------------------------- /test/issues/test_062.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_062.py -------------------------------------------------------------------------------- /test/issues/test_071.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_071.py -------------------------------------------------------------------------------- /test/issues/test_076.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_076.py -------------------------------------------------------------------------------- /test/issues/test_079.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_079.py -------------------------------------------------------------------------------- /test/issues/test_087.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_087.py -------------------------------------------------------------------------------- /test/issues/test_098.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_098.py -------------------------------------------------------------------------------- /test/issues/test_108.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_108.py -------------------------------------------------------------------------------- /test/issues/test_116.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_116.py -------------------------------------------------------------------------------- /test/issues/test_120.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_120.py -------------------------------------------------------------------------------- /test/issues/test_124.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_124.py -------------------------------------------------------------------------------- /test/issues/test_126.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_126.py -------------------------------------------------------------------------------- /test/issues/test_133.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_133.py -------------------------------------------------------------------------------- /test/issues/test_141.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_141.py -------------------------------------------------------------------------------- /test/issues/test_142.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_142.py -------------------------------------------------------------------------------- /test/issues/test_146.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_146.py -------------------------------------------------------------------------------- /test/issues/test_148.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_148.py -------------------------------------------------------------------------------- /test/issues/test_154.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_154.py -------------------------------------------------------------------------------- /test/issues/test_160.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_160.py -------------------------------------------------------------------------------- /test/issues/test_162.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_162.py -------------------------------------------------------------------------------- /test/issues/test_170.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_170.py -------------------------------------------------------------------------------- /test/issues/test_190.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_190.py -------------------------------------------------------------------------------- /test/issues/test_199.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_199.py -------------------------------------------------------------------------------- /test/issues/test_213.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_213.py -------------------------------------------------------------------------------- /test/issues/test_217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_217.py -------------------------------------------------------------------------------- /test/issues/test_220/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_220/LICENSE.md -------------------------------------------------------------------------------- /test/issues/test_220/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_220/__init__.py -------------------------------------------------------------------------------- /test/issues/test_220/kb-REPRODUCTION-1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_220/kb-REPRODUCTION-1.ttl -------------------------------------------------------------------------------- /test/issues/test_220/kb-REPRODUCTION-2.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_220/kb-REPRODUCTION-2.ttl -------------------------------------------------------------------------------- /test/issues/test_220/owl-REPRODUCTION.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_220/owl-REPRODUCTION.ttl -------------------------------------------------------------------------------- /test/issues/test_220/sh-REPRODUCTION-1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_220/sh-REPRODUCTION-1.ttl -------------------------------------------------------------------------------- /test/issues/test_220/sh-REPRODUCTION-2.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_220/sh-REPRODUCTION-2.ttl -------------------------------------------------------------------------------- /test/issues/test_227.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_227.py -------------------------------------------------------------------------------- /test/issues/test_240.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_240.py -------------------------------------------------------------------------------- /test/issues/test_281/data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_281/data.ttl -------------------------------------------------------------------------------- /test/issues/test_281/policies.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_281/policies.ttl -------------------------------------------------------------------------------- /test/issues/test_281/policies/gitlab-policy.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_281/policies/gitlab-policy.ttl -------------------------------------------------------------------------------- /test/issues/test_281/test_281.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_281/test_281.py -------------------------------------------------------------------------------- /test/issues/test_286.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_286.py -------------------------------------------------------------------------------- /test/issues/test_96.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_96.py -------------------------------------------------------------------------------- /test/issues/test_w3_list1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/issues/test_w3_list1.py -------------------------------------------------------------------------------- /test/resources/cmdline_tests/d1.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/cmdline_tests/d1.jsonld -------------------------------------------------------------------------------- /test/resources/cmdline_tests/d1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/cmdline_tests/d1.ttl -------------------------------------------------------------------------------- /test/resources/cmdline_tests/d2.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/cmdline_tests/d2.ttl -------------------------------------------------------------------------------- /test/resources/cmdline_tests/o1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/cmdline_tests/o1.ttl -------------------------------------------------------------------------------- /test/resources/cmdline_tests/rules_d.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/cmdline_tests/rules_d.ttl -------------------------------------------------------------------------------- /test/resources/cmdline_tests/rules_s.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/cmdline_tests/rules_s.ttl -------------------------------------------------------------------------------- /test/resources/cmdline_tests/s1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/cmdline_tests/s1.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/complex/personexample.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/complex/personexample.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/misc/deactivated-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/misc/deactivated-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/misc/deactivated-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/misc/deactivated-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/misc/severity-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/misc/severity-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/misc/severity-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/misc/severity-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/and-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/and-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/and-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/and-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/class-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/class-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/class-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/class-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/closed-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/closed-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/closed-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/closed-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/datatype-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/datatype-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/datatype-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/datatype-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/disjoint-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/disjoint-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/equals-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/equals-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/hasValue-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/hasValue-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/in-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/in-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/languageIn-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/languageIn-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/maxExclusive-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/maxExclusive-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/maxInclusive-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/maxInclusive-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/maxLength-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/maxLength-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/minExclusive-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/minExclusive-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/minInclusive-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/minInclusive-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/minLength-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/minLength-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/node-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/node-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/nodeKind-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/nodeKind-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/not-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/not-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/not-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/not-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/or-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/or-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/pattern-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/pattern-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/pattern-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/pattern-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/node/xone-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/node/xone-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/path/path-alternative-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/path/path-alternative-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/path/path-complex-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/path/path-complex-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/path/path-inverse-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/path/path-inverse-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/path/path-oneOrMore-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/path/path-oneOrMore-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/path/path-sequence-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/path/path-sequence-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/path/path-sequence-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/path/path-sequence-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/path/path-sequence-duplicate-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/path/path-sequence-duplicate-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/path/path-zeroOrMore-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/path/path-zeroOrMore-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/path/path-zeroOrOne-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/path/path-zeroOrOne-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/and-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/and-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/class-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/class-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/datatype-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/datatype-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/datatype-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/datatype-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/datatype-003.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/datatype-003.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/disjoint-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/disjoint-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/equals-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/equals-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/hasValue-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/hasValue-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/in-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/in-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/languageIn-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/languageIn-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/lessThan-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/lessThan-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/lessThan-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/lessThan-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/lessThanOrEquals-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/lessThanOrEquals-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/maxCount-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/maxCount-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/maxCount-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/maxCount-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/maxExclusive-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/maxExclusive-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/maxInclusive-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/maxInclusive-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/maxLength-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/maxLength-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/minCount-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/minCount-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/minCount-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/minCount-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/minExclusive-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/minExclusive-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/minExclusive-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/minExclusive-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/minLength-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/minLength-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/node-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/node-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/node-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/node-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/nodeKind-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/nodeKind-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/not-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/not-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/or-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/or-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/or-datatypes-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/or-datatypes-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/pattern-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/pattern-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/pattern-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/pattern-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/property-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/property-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/qualifiedMinCountDisjoint-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/qualifiedMinCountDisjoint-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/qualifiedValueShape-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/qualifiedValueShape-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/qualifiedValueShapesDisjoint-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/qualifiedValueShapesDisjoint-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/uniqueLang-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/uniqueLang-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/property/xone-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/property/xone-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/targets/multipleTargets-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/targets/multipleTargets-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/targets/targetClass-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/targets/targetClass-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/targets/targetClassImplicit-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/targets/targetClassImplicit-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/targets/targetNode-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/targets/targetNode-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/targets/targetObjectsOf-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/targets/targetObjectsOf-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/targets/targetSubjectsOf-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/targets/targetSubjectsOf-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/core/targets/targetSubjectsOf-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/core/targets/targetSubjectsOf-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/expression/booleans-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/expression/booleans-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/function/callSPARQLFunction.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/function/callSPARQLFunction.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/function/simpleSPARQLFunction.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/function/simpleSPARQLFunction.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/rules/sparql/classify-square.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/rules/sparql/classify-square.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/rules/sparql/rectangle.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/rules/sparql/rectangle.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/rules/triple/functions-permutations.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/rules/triple/functions-permutations.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/rules/triple/person.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/rules/triple/person.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/rules/triple/person2schema.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/rules/triple/person2schema.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/rules/triple/rectangle.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/rules/triple/rectangle.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/rules/triple/schema2person.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/rules/triple/schema2person.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/rules/triple/square.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/rules/triple/square.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/shapedefs/anon-shape-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/shapedefs/anon-shape-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/shapedefs/anon-shape-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/shapedefs/anon-shape-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/sparql/component/nodeValidator-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/sparql/component/nodeValidator-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/sparql/component/optional-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/sparql/component/optional-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/sparql/component/propertyValidator-select-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/sparql/component/propertyValidator-select-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/sparql/component/validator-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/sparql/component/validator-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/sparql/node/prefixes-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/sparql/node/prefixes-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/sparql/node/sparql-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/sparql/node/sparql-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/sparql/node/sparql-002.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/sparql/node/sparql-002.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/sparql/property/sparql-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/sparql/property/sparql-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/target/sparqlTarget-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/target/sparqlTarget-001.test.ttl -------------------------------------------------------------------------------- /test/resources/dash_tests/target/sparqlTargetType-001.test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/dash_tests/target/sparqlTargetType-001.test.ttl -------------------------------------------------------------------------------- /test/resources/js/findBornIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/js/findBornIn.js -------------------------------------------------------------------------------- /test/resources/js/findThings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/js/findThings.js -------------------------------------------------------------------------------- /test/resources/js/germanLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/js/germanLabel.js -------------------------------------------------------------------------------- /test/resources/js/hasMaxCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/js/hasMaxCount.js -------------------------------------------------------------------------------- /test/resources/js/hasMaxLength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/js/hasMaxLength.js -------------------------------------------------------------------------------- /test/resources/js/multiply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/js/multiply.js -------------------------------------------------------------------------------- /test/resources/js/rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/js/rectangle.js -------------------------------------------------------------------------------- /test/resources/sht_tests/core/complex/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/complex/manifest.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/complex/personexample.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/complex/personexample.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/complex/shacl-shacl-data-shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/complex/shacl-shacl-data-shapes.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/complex/shacl-shacl.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/complex/shacl-shacl.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/manifest.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/misc/deactivated-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/misc/deactivated-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/misc/deactivated-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/misc/deactivated-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/misc/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/misc/manifest.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/misc/message-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/misc/message-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/misc/severity-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/misc/severity-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/misc/severity-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/misc/severity-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/and-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/and-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/and-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/and-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/class-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/class-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/class-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/class-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/class-003.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/class-003.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/closed-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/closed-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/closed-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/closed-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/datatype-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/datatype-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/datatype-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/datatype-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/disjoint-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/disjoint-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/equals-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/equals-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/hasValue-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/hasValue-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/in-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/in-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/languageIn-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/languageIn-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/manifest.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/maxExclusive-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/maxExclusive-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/maxInclusive-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/maxInclusive-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/maxLength-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/maxLength-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/minExclusive-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/minExclusive-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/minInclusive-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/minInclusive-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/minInclusive-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/minInclusive-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/minInclusive-003.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/minInclusive-003.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/minLength-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/minLength-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/node-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/node-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/nodeKind-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/nodeKind-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/not-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/not-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/not-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/not-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/or-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/or-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/pattern-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/pattern-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/pattern-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/pattern-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/qualified-001-data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/qualified-001-data.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/qualified-001-shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/qualified-001-shapes.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/qualified-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/qualified-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/xone-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/xone-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/xone-duplicate-data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/xone-duplicate-data.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/xone-duplicate-shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/xone-duplicate-shapes.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/node/xone-duplicate.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/node/xone-duplicate.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/manifest.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/path-alternative-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/path-alternative-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/path-complex-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/path-complex-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/path-complex-002-data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/path-complex-002-data.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/path-complex-002-shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/path-complex-002-shapes.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/path-complex-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/path-complex-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/path-inverse-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/path-inverse-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/path-oneOrMore-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/path-oneOrMore-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/path-sequence-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/path-sequence-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/path-sequence-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/path-sequence-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/path-sequence-duplicate-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/path-sequence-duplicate-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/path-strange-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/path-strange-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/path-strange-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/path-strange-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/path-unused-001-data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/path-unused-001-data.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/path-unused-001-shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/path-unused-001-shapes.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/path-unused-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/path-unused-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/path-zeroOrMore-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/path-zeroOrMore-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/path/path-zeroOrOne-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/path/path-zeroOrOne-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/and-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/and-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/class-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/class-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/datatype-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/datatype-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/datatype-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/datatype-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/datatype-003.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/datatype-003.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/datatype-ill-formed-data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/datatype-ill-formed-data.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/datatype-ill-formed-shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/datatype-ill-formed-shapes.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/datatype-ill-formed.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/datatype-ill-formed.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/disjoint-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/disjoint-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/equals-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/equals-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/hasValue-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/hasValue-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/in-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/in-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/languageIn-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/languageIn-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/lessThan-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/lessThan-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/lessThan-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/lessThan-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/lessThanOrEquals-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/lessThanOrEquals-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/manifest.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/maxCount-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/maxCount-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/maxCount-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/maxCount-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/maxExclusive-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/maxExclusive-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/maxInclusive-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/maxInclusive-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/maxLength-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/maxLength-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/minCount-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/minCount-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/minCount-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/minCount-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/minExclusive-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/minExclusive-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/minExclusive-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/minExclusive-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/minLength-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/minLength-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/node-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/node-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/node-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/node-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/nodeKind-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/nodeKind-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/not-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/not-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/or-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/or-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/or-datatypes-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/or-datatypes-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/pattern-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/pattern-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/pattern-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/pattern-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/property-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/property-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/qualifiedMinCountDisjoint-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/qualifiedMinCountDisjoint-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/qualifiedValueShape-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/qualifiedValueShape-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/qualifiedValueShapesDisjoint-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/qualifiedValueShapesDisjoint-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/uniqueLang-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/uniqueLang-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/uniqueLang-002-data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/uniqueLang-002-data.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/uniqueLang-002-shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/uniqueLang-002-shapes.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/property/uniqueLang-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/property/uniqueLang-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/targets/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/targets/manifest.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/targets/multipleTargets-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/targets/multipleTargets-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/targets/targetClass-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/targets/targetClass-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/targets/targetClassImplicit-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/targets/targetClassImplicit-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/targets/targetNode-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/targets/targetNode-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/targets/targetObjectsOf-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/targets/targetObjectsOf-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/targets/targetSubjectsOf-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/targets/targetSubjectsOf-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/targets/targetSubjectsOf-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/targets/targetSubjectsOf-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/validation-reports/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/validation-reports/manifest.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/validation-reports/shared-data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/validation-reports/shared-data.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/validation-reports/shared-shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/validation-reports/shared-shapes.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/core/validation-reports/shared.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/core/validation-reports/shared.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/manifest.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/component/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/component/manifest.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/component/nodeValidator-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/component/nodeValidator-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/component/optional-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/component/optional-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/component/propertyValidator-select-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/component/propertyValidator-select-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/component/validator-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/component/validator-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/manifest.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/node/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/node/manifest.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/node/prefixes-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/node/prefixes-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/node/sparql-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/node/sparql-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/node/sparql-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/node/sparql-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/node/sparql-003.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/node/sparql-003.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/pre-binding/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/pre-binding/manifest.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/pre-binding/pre-binding-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/pre-binding/pre-binding-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/pre-binding/pre-binding-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/pre-binding/pre-binding-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/pre-binding/pre-binding-003.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/pre-binding/pre-binding-003.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/pre-binding/pre-binding-004.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/pre-binding/pre-binding-004.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/pre-binding/pre-binding-005.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/pre-binding/pre-binding-005.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/pre-binding/pre-binding-006.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/pre-binding/pre-binding-006.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/pre-binding/pre-binding-007.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/pre-binding/pre-binding-007.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/pre-binding/shapesGraph-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/pre-binding/shapesGraph-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/pre-binding/unsupported-sparql-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/pre-binding/unsupported-sparql-001.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/pre-binding/unsupported-sparql-002.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/pre-binding/unsupported-sparql-002.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/pre-binding/unsupported-sparql-003.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/pre-binding/unsupported-sparql-003.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/pre-binding/unsupported-sparql-004.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/pre-binding/unsupported-sparql-004.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/pre-binding/unsupported-sparql-005.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/pre-binding/unsupported-sparql-005.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/pre-binding/unsupported-sparql-006.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/pre-binding/unsupported-sparql-006.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/property/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/property/manifest.ttl -------------------------------------------------------------------------------- /test/resources/sht_tests/sparql/property/sparql-001.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/resources/sht_tests/sparql/property/sparql-001.ttl -------------------------------------------------------------------------------- /test/test_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_advanced.py -------------------------------------------------------------------------------- /test/test_cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_cmdline.py -------------------------------------------------------------------------------- /test/test_cmdline_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_cmdline_rules.py -------------------------------------------------------------------------------- /test/test_dash_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_dash_validate.py -------------------------------------------------------------------------------- /test/test_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_extra.py -------------------------------------------------------------------------------- /test/test_inoculate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_inoculate.py -------------------------------------------------------------------------------- /test/test_integers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_integers.py -------------------------------------------------------------------------------- /test/test_js/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_js/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_js/conftest.py -------------------------------------------------------------------------------- /test/test_js/test_js_constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_js/test_js_constraint.py -------------------------------------------------------------------------------- /test/test_js/test_js_constraint_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_js/test_js_constraint_component.py -------------------------------------------------------------------------------- /test/test_js/test_js_constraint_path_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_js/test_js_constraint_path_component.py -------------------------------------------------------------------------------- /test/test_js/test_js_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_js/test_js_function.py -------------------------------------------------------------------------------- /test/test_js/test_js_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_js/test_js_rules.py -------------------------------------------------------------------------------- /test/test_js/test_js_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_js/test_js_target.py -------------------------------------------------------------------------------- /test/test_js/test_js_target_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_js/test_js_target_type.py -------------------------------------------------------------------------------- /test/test_manual_targeting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_manual_targeting.py -------------------------------------------------------------------------------- /test/test_schema_org.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_schema_org.py -------------------------------------------------------------------------------- /test/test_sh_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_sh_details.py -------------------------------------------------------------------------------- /test/test_shacl_rules_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_shacl_rules_runner.py -------------------------------------------------------------------------------- /test/test_sht_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/pySHACL/HEAD/test/test_sht_validate.py --------------------------------------------------------------------------------