Expand description
Structural and semantic validation for Redispatch 2.0 documents.
§Layers
- Structural — verifies field constraints derivable from the XSD without cross-field context (identifier lengths, version range, timestamp offsets, participant ID format).
- Semantic — cross-field rules from the BDEW AWT (e.g. an
ACOdocument must contain at least oneActivationTimeSeries).
Modules§
- semantic
- Semantic validation — cross-field rules from the BDEW AWT.
- structural
- Structural validation — XSD-derivable constraints.
Structs§
- Validation
Result - The combined result of validating a document.
- Validation
Warning - A validation warning (non-fatal; document should still be processed).
Enums§
- Validation
Error - A validation error (document is non-conformant and must not be processed).
Functions§
- validate
- Validate a parsed
Document, running both structural and semantic checks. - validate_
structural - Validate the structural integrity of a specific document without a
Documentenum wrapper.