Celestine API Documentation - v0.2.0
    Preparing search index...

    Interface ValidationResult

    Result of birth data validation.

    interface ValidationResult {
        valid: boolean;
        errors: ValidationErrorDetail[];
        warnings: string[];
        normalized?: BirthData;
    }
    Index

    Properties

    valid: boolean

    Whether data is valid

    List of validation errors

    warnings: string[]

    List of warnings (non-fatal issues)

    normalized?: BirthData

    Normalized birth data (if valid)