@contentauth/c2pa-js
    Preparing search index...

    A map of validation results for a manifest store.

    The map contains the validation results for the active manifest and any ingredient deltas. It is normal for there to be many

    interface ValidationResults {
        activeManifest?: null | StatusCodes;
        ingredientDeltas?: null | IngredientDeltaValidationResult[];
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    activeManifest?: null | StatusCodes

    Validation status codes for the ingredient's active manifest. Present if ingredient is a C2PA asset. Not present if the ingredient is not a C2PA asset.

    ingredientDeltas?: null | IngredientDeltaValidationResult[]

    List of any changes/deltas between the current and previous validation results for each ingredient's manifest. Present if the the ingredient is a C2PA asset.