Class EvolutionValidationResult
Result of a dry-run schema evolution validation.
public class EvolutionValidationResult
- Inheritance
-
EvolutionValidationResult
- Inherited Members
Constructors
EvolutionValidationResult()
public EvolutionValidationResult()
Properties
Components
Per-component diff and migration results.
public IReadOnlyList<EvolutionComponentResult> Components { get; init; }
Property Value
Errors
Human-readable messages describing each blocking problem; empty when IsValid is true.
public IReadOnlyList<string> Errors { get; init; }
Property Value
IsValid
True when every component either matches or has a viable migration path; false when any breaking change lacks one.
public bool IsValid { get; init; }