pmrs 0.0.2

Rust support to process mining functions. Includes a library and a small cli-interface.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub(crate) mod variants;
use std::error::Error;
use crate::objects::ocel::validator::variants::jsonocel::{validate_json, validate_json_verbose};

pub fn validate_ocel(file_path: &str) -> Result<bool, Box<dyn Error>>{
    return validate_json(file_path);
}

pub fn validate_ocel_verbose(file_path: &str) -> Result<Vec<(String, String)>, Box<dyn Error>>{
    return validate_json_verbose(file_path);
}