1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// SPDX-FileCopyrightText: Veredictum contributors
// SPDX-License-Identifier: Apache-2.0
//! CNF 2.0 reference runner — the typed schedule-artifact model, validator,
//! and JSON-Schema emission for the openEHR conformance framework.
//!
//! The conformance oracle is the vendored openEHR CNF component
//! (`specs/openehr/CNF/`); the artifact families this crate models are
//! the machine-readable normative form of the Platform Conformance Test
//! Schedule (case cores, operation bindings, vocabularies incl. the
//! capability matrix, corpus manifest, ambiguity register). Every closed
//! vocabulary is a Rust enum/newtype so illegal states are unrepresentable.
//!
//! [`pipeline`] is the entry point for driving the instrument: one seam per
//! whole operation — validate a catalogue, run it against a system under
//! test, judge the recorded outcomes, render the published assets, measure a
//! class — each returning typed facts rather than console text. The bundled
//! `veredictum` binary is a command-line layer over exactly those seams, so
//! a second consumer drives the same engine and renders its own views.
// Doctests are copy-paste templates: they must use `?`, never unwrap
// (C-QUESTION-MARK, https://rust-lang.github.io/api-guidelines/documentation.html#c-question-mark).