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

    Type Alias OutputAttribute<T>

    OutputAttribute: OutputAttributeBase & { tableName?: T }

    Output attribute definition Maps to sys_one_extend_definition_attribute with type='output'

    IMPORTANT: When using dataType: 'glide_record', tableName is REQUIRED.

    Type Parameters

    Type Declaration

    • OptionaltableName?: T

      Table name for glide_record type (REQUIRED when using glide_record dataType)

    // Correct usage with glide_record:
    {
    $id: Now.ID['my_skill_related_record_output'],
    name: 'Related Record',
    dataType: 'glide_record',
    tableName: 'incident'
    }