geopackage-ts
    Preparing search index...

    Interface ValidationResult

    The result of a GeoPackage validation operation.

    Validation checks verify that a GeoPackage file conforms to the OGC specification, including required tables, correct application ID, and structural integrity.

    interface ValidationResult {
        errors: string[];
        valid: boolean;
    }
    Index

    Properties

    Properties

    errors: string[]

    An array of human-readable error messages describing each validation failure. Empty when valid is true.

    valid: boolean

    true if the GeoPackage passed all validation checks; false otherwise.