Boomi Flow Runtime Reference Documentation
    Preparing search index...

    Interface Validation

    Describes a particular validation type that should be applied to a page component

    interface Validation {
        message: string;
        type: "required" | "Minimum" | "Maximum" | "Pattern";
        value: string | number | boolean;
    }
    Index

    Properties

    Properties

    message: string
    type: "required" | "Minimum" | "Maximum" | "Pattern"
    value: string | number | boolean