shacl_validation 0.2.12

RDF data shapes implementation in Rust
Documentation
use std::io::Cursor;

use anyhow::*;
use prefixmap::PrefixMap;
use rudof_rdf::rdf_core::RDFFormat;
use shacl_ir::schema_ir::SchemaIR;
use shacl_validation::shacl_processor::EndpointValidation;
use shacl_validation::shacl_processor::ShaclProcessor as _;
use shacl_validation::shacl_processor::ShaclValidationMode;
use shacl_validation::store::ShaclDataManager;

fn main() -> Result<()> {
    let shacl = r#"
        @prefix ex:  <http://example.org/> .
        @prefix wd:  <http://www.wikidata.org/entity/> .
        @prefix wdt: <http://www.wikidata.org/prop/direct/> .
        @prefix sh:  <http://www.w3.org/ns/shacl#> .
        @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

        ex:WikidataExampleShape
            a sh:NodeShape ;
            sh:targetNode wd:Q80 ;
            sh:property [
                sh:path     wdt:P1477 ;
                sh:minCount 1 ;
                sh:maxCount 1 ;
                sh:datatype xsd:string ;
            ] .
    "#;

    let schema: SchemaIR = ShaclDataManager::load(&mut Cursor::new(shacl), "Test", RDFFormat::Turtle, None)?;

    let mut endpoint_validation = EndpointValidation::new(
        "https://query.wikidata.org/sparql",
        &PrefixMap::default(),
        ShaclValidationMode::Native,
    )?;

    let report = endpoint_validation.validate(&schema)?;

    println!("{report}");

    Ok(())
}