@servicenow/sdk - v4.4.1
    Preparing search index...
    interface sys_app_application {
        active: Typed<
            boolean,
            {
                active: true;
                default: true;
                label: "Active";
                mandatory: false;
                read_only: false;
            },
        >;
        category: Typed<
            | string
            | ExplicitKey<"sys_app_category">
            | TableBrand<"sys_app_category">
            | Record<"sys_app_category">,
            {
                active: true;
                label: "Category";
                mandatory: false;
                read_only: false;
                referenceTable: "sys_app_category";
            },
        >;
        description: Typed<
            string,
            {
                active: true;
                dropdown: "none";
                label: "Description";
                mandatory: false;
                maxLength: 4000;
                read_only: false;
            },
        >;
        device_type: Typed<
            "browser"
            | "any"
            | "mobile",
            {
                active: true;
                choices: {
                    any: { inactive: false; label: "Any"; language: "en" };
                    browser: { inactive: false; label: "Browser"; language: "en" };
                    mobile: { inactive: false; label: "Mobile"; language: "en" };
                };
                default: "browser";
                dropdown: "dropdown_without_none";
                label: "Device type";
                mandatory: false;
                maxLength: 40;
                read_only: false;
            },
        >;
        hint: Typed<
            string,
            { active: true; label: "Hint"; mandatory: false; read_only: false },
        >;
        name: Typed<
            string,
            {
                active: true;
                dropdown: "none";
                label: "Name";
                mandatory: false;
                maxLength: 40;
                read_only: false;
            },
        >;
        order: Typed<
            number,
            { active: true; label: "Order"; mandatory: false; read_only: false },
        >;
        roles: Typed<
            (string | Role)[],
            { active: true; label: "Roles"; mandatory: false; read_only: false },
        >;
        sys_domain: Typed<
            "global"
            | Record<"domain">,
            {
                active: true;
                default: "global";
                label: "Domain";
                mandatory: false;
                read_only: false;
            },
        >;
        sys_domain_path: Typed<
            string,
            {
                active: true;
                default: "/";
                label: "Domain Path";
                mandatory: false;
                read_only: false;
            },
        >;
        sys_id: Typed<
            string
            | number,
            {
                active: true;
                column_type: "GUID";
                label: "Sys ID";
                mandatory: false;
                read_only: false;
            },
        >;
        sys_overrides: Typed<
            | string
            | TableBrand<"sys_app_application">
            | Record<"sys_app_application">
            | ExplicitKey<"sys_app_application">,
            {
                active: true;
                label: "Overrides";
                mandatory: false;
                read_only: false;
                referenceTable: "sys_app_application";
            },
        >;
        title: Typed<
            string,
            { active: true; label: "Title"; mandatory: true; read_only: false },
        >;
        view_name: Typed<
            string,
            {
                active: true;
                dropdown: "none";
                label: "View name";
                mandatory: false;
                maxLength: 40;
                read_only: false;
            },
        >;
    }

    Hierarchy (View Summary)

    Index

    Properties

    active: Typed<
        boolean,
        {
            active: true;
            default: true;
            label: "Active";
            mandatory: false;
            read_only: false;
        },
    >
    category: Typed<
        | string
        | ExplicitKey<"sys_app_category">
        | TableBrand<"sys_app_category">
        | Record<"sys_app_category">,
        {
            active: true;
            label: "Category";
            mandatory: false;
            read_only: false;
            referenceTable: "sys_app_category";
        },
    >
    description: Typed<
        string,
        {
            active: true;
            dropdown: "none";
            label: "Description";
            mandatory: false;
            maxLength: 4000;
            read_only: false;
        },
    >
    device_type: Typed<
        "browser"
        | "any"
        | "mobile",
        {
            active: true;
            choices: {
                any: { inactive: false; label: "Any"; language: "en" };
                browser: { inactive: false; label: "Browser"; language: "en" };
                mobile: { inactive: false; label: "Mobile"; language: "en" };
            };
            default: "browser";
            dropdown: "dropdown_without_none";
            label: "Device type";
            mandatory: false;
            maxLength: 40;
            read_only: false;
        },
    >
    hint: Typed<
        string,
        { active: true; label: "Hint"; mandatory: false; read_only: false },
    >
    name: Typed<
        string,
        {
            active: true;
            dropdown: "none";
            label: "Name";
            mandatory: false;
            maxLength: 40;
            read_only: false;
        },
    >
    order: Typed<
        number,
        { active: true; label: "Order"; mandatory: false; read_only: false },
    >
    roles: Typed<
        (string | Role)[],
        { active: true; label: "Roles"; mandatory: false; read_only: false },
    >
    sys_domain: Typed<
        "global"
        | Record<"domain">,
        {
            active: true;
            default: "global";
            label: "Domain";
            mandatory: false;
            read_only: false;
        },
    >
    sys_domain_path: Typed<
        string,
        {
            active: true;
            default: "/";
            label: "Domain Path";
            mandatory: false;
            read_only: false;
        },
    >
    sys_id: Typed<
        string
        | number,
        {
            active: true;
            column_type: "GUID";
            label: "Sys ID";
            mandatory: false;
            read_only: false;
        },
    >
    sys_overrides: Typed<
        | string
        | TableBrand<"sys_app_application">
        | Record<"sys_app_application">
        | ExplicitKey<"sys_app_application">,
        {
            active: true;
            label: "Overrides";
            mandatory: false;
            read_only: false;
            referenceTable: "sys_app_application";
        },
    >
    title: Typed<
        string,
        { active: true; label: "Title"; mandatory: true; read_only: false },
    >
    view_name: Typed<
        string,
        {
            active: true;
            dropdown: "none";
            label: "View name";
            mandatory: false;
            maxLength: 40;
            read_only: false;
        },
    >