@prefix dash: <http://datashapes.org/dash#> .
@prefix ex: <http://example.org/shacl/tests/> .
@prefix mf: <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix sht: <http://www.w3.org/ns/shacl-test#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<> a mf:Manifest ;
  mf:entries (
      <path-unused-001>
    ) .

<path-unused-001> a sht:Validate ;
  rdfs:label "Test with unused ill-formed path" ;
  mf:action [
      sht:dataGraph <path-unused-001-data.ttl> ;
      sht:shapesGraph <path-unused-001-shapes.ttl> ] ;
  mf:result [ a sh:ValidationReport ;
      sh:conforms "false"^^xsd:boolean ;
      sh:result [ a sh:ValidationResult ;
          sh:focusNode ex:j ;
	  sh:value ex:j ;
          sh:resultSeverity sh:Violation ;
          sh:sourceShape ex:s1 ;
          sh:sourceConstraintComponent sh:ClassConstraintComponent ] ] ;
  mf:status sht:approved .
