@servicenow/sdk - v4.7.0
    Preparing search index...

    Type Alias ToolInputField

    Input field definition for tool inputs

    type ToolInputField = {
        description: string;
        invalidMessage?: string | null;
        mandatory: boolean;
        mappedToColumn?: string;
        name: string;
        referenceConfig?: ReferenceConfig;
        type?: FieldType;
        value?: string;
    }
    Index

    Properties

    description: string

    Description of the input field

    invalidMessage?: string | null

    Optional: Invalid message to display when validation fails

    mandatory: boolean

    Whether the input field is mandatory

    mappedToColumn?: string

    Optional: Column name in the target table to map this input to (for create/update operations)

    name: string

    Name of the input field

    referenceConfig?: ReferenceConfig

    Optional: Reference configuration for reference-type fields

    type?: FieldType

    Optional: Field type (string, reference, integer, etc.)

    value?: string

    Optional: Default value for the input field