dpcs 0.4.0

Reference implementation of the Data Pipeline Contract Standard (DPCS)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Failure semantics validation phase.

use crate::diagnostics::ValidationReport;
use crate::model::PipelineContract;

/// Validate failure-semantics constraints beyond identity.
///
/// Identifier presence and uniqueness are owned by the Canonical Object Model
/// phase. Scope semantics are deferred to later roadmap releases.
pub fn validate(_contract: &PipelineContract) -> ValidationReport {
    ValidationReport::new()
}