Integration App SDK - v1.14.0
    Preparing search index...

    Interface Props<Input, Output>

    The Standard Schema properties interface.

    interface Props<Input = unknown, Output = Input> {
        version: 1;
        vendor: string;
        validate: (value: unknown) => Result<Output> | Promise<Result<Output>>;
        types?: Types<Input, Output>;
    }

    Type Parameters

    • Input = unknown
    • Output = Input
    Index

    Properties

    version: 1

    The version number of the standard.

    vendor: string

    The vendor name of the schema library.

    validate: (value: unknown) => Result<Output> | Promise<Result<Output>>

    Validates unknown input values.

    types?: Types<Input, Output>

    Inferred types associated with the schema.