dpcs 0.3.0

Reference implementation of the Data Pipeline Contract Standard (DPCS)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Extension validation phase.
//!
//! Reserved-field collision checks run in the Canonical Object Model phase.
//! This phase is reserved for future extension-structure validation.

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

/// Validate extension field namespaces.
pub fn validate(_contract: &PipelineContract) -> ValidationReport {
    ValidationReport::new()
}