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

    Output attribute mapping for a single Skill-as-Tool output. Maps to a sys_one_extend_definition_attribute record on the target skill.

    interface SkillToolOutputAttribute {
        definitionAttributeId:
            | string
            | Record<"sys_one_extend_definition_attribute">;
        truncate?: boolean;
    }
    Index

    Properties

    definitionAttributeId: string | Record<"sys_one_extend_definition_attribute">

    sys_id of the target skill's output definition attribute (sys_one_extend_definition_attribute). Accepts a raw sys_id string or a DbRecord reference.

    // Using raw sys_id
    definitionAttributeId: 'abc123def456...'

    // Using DbRecord reference
    definitionAttributeId: Now.Record('sys_one_extend_definition_attribute', 'abc123...')
    truncate?: boolean

    Whether to truncate this output to prevent exceeding token limits

    false