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

    Base input attribute properties

    interface InputAttributeBase {
        $id: ExplicitKey;
        dataType: AttributeDataType;
        description?: string;
        mandatory?: boolean;
        name: string;
        testValues?: string;
        truncate?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Now.ID['my_skill_user_query_input']
    

    Data type for the input attribute

    "string"
    
    description?: string

    Description of the input attribute

    mandatory?: boolean

    Whether the input is mandatory

    false
    
    name: string

    Attribute name - the internal name will be generated automatically IMPORTANT: Must not contain underscores (_) or special characters

    testValues?: string

    Test values for the attribute Used for testing and validation purposes

    truncate?: boolean

    Whether to truncate the value NOTE: Only valid for: string, numeric, boolean, record, glide_record NOT supported for: simple_array, json_object, json_array

    false