@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#> .

@prefix ex: <http://example.org/shacl-test/> .

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

<qualified-001> a sht:Validate;
  rdfs:label "Test of qualified parameters allowed in node shapes" ;
  mf:action [ sht:dataGraph <qualified-001-data.ttl> ;
              sht:shapesGraph <qualified-001-shapes.ttl> ] ;
  mf:result [ rdf:type sh:ValidationReport ;
              sh:conforms "false"^^xsd:boolean ;
	      sh:result [ rdf:type sh:ValidationResult ;
 	      		  sh:resultSeverity sh:Violation ;
 			  sh:focusNode ex:i ;
 			  sh:value ex:i ;
 			  sh:sourceShape ex:s1 ;
 			  sh:sourceConstraintComponent sh:ClassConstraintComponent ] ] ;
  mf:status sht:approved .
