@servicenow/sdk - v4.7.0
    Preparing search index...
    interface sp_row {
        class_name: Typed<string, { label: "CSS class" }>;
        order: Typed<number, { label: "Order" }>;
        semantic_tag: Typed<
            "main",
            {
                choices: { main: { label: "Main"; sequence: 1 } };
                dropdown: "dropdown_with_none";
                label: "Semantic tag";
            },
        >;
        sp_column: Typed<
            | string
            | ExplicitKey<"sp_column">
            | TableBrand<"sp_column">
            | Record<"sp_column">,
            { cascadeRule: "delete"; label: "Column"; referenceTable: "sp_column" },
        >;
        sp_container: Typed<
            | string
            | ExplicitKey<"sp_container">
            | TableBrand<"sp_container">
            | Record<"sp_container">,
            {
                cascadeRule: "delete";
                label: "Container";
                referenceTable: "sp_container";
            },
        >;
        sys_id: Typed<
            string,
            { columnType: "GUID"; label: "Sys ID"; maxLength: 32; primary: true },
        >;
    }

    Hierarchy (View Summary)

    Index

    Properties

    class_name: Typed<string, { label: "CSS class" }>
    order: Typed<number, { label: "Order" }>
    semantic_tag: Typed<
        "main",
        {
            choices: { main: { label: "Main"; sequence: 1 } };
            dropdown: "dropdown_with_none";
            label: "Semantic tag";
        },
    >
    sp_column: Typed<
        | string
        | ExplicitKey<"sp_column">
        | TableBrand<"sp_column">
        | Record<"sp_column">,
        { cascadeRule: "delete"; label: "Column"; referenceTable: "sp_column" },
    >
    sp_container: Typed<
        | string
        | ExplicitKey<"sp_container">
        | TableBrand<"sp_container">
        | Record<"sp_container">,
        {
            cascadeRule: "delete";
            label: "Container";
            referenceTable: "sp_container";
        },
    >
    sys_id: Typed<
        string,
        { columnType: "GUID"; label: "Sys ID"; maxLength: 32; primary: true },
    >