@servicenow/sdk - v4.4.1
    Preparing search index...
    interface sysevent_register {
        caller_access: Typed<
            string,
            {
                attributes: { update_exempt: true };
                dropdown: "dropdown_with_none";
                label: "Caller Access";
            },
        >;
        derived_priority: Typed<
            number,
            {
                default: "100";
                label: "Derived priority";
                maxLength: 40;
                readOnly: true;
            },
        >;
        description: Typed<string, { label: "Description"; maxLength: 100 }>;
        event_name: Typed<string, { label: "Event name" }>;
        fired_by: Typed<string, { label: "Fired by"; maxLength: 100 }>;
        priority: Typed<
            number,
            {
                default: "100";
                label: [
                    {
                        hint: "Priority defines the order in which messages will be processed. Lower the value, higher the priority.";
                        label: "Priority";
                        language: "en";
                        plural: "Priorities";
                    },
                ];
            },
        >;
        queue: Typed<
            string,
            {
                label: [
                    {
                        hint: "Queues are registered under Queue Registry page";
                        label: "Queue";
                        language: "en";
                        plural: "Queues";
                        url: "/sysevent_queue_list.do";
                    },
                ];
            },
        >;
        suffix: Typed<string, { label: "Suffix" }>;
        sys_id: Typed<
            string,
            {
                label: [{ label: "Sys ID"; language: "en"; plural: "Sys IDs" }];
                primary: true;
            },
        >;
        table: Typed<
            keyof Tables,
            { attributes: { allow_public: true }; label: "Table" },
        >;
    }

    Hierarchy (View Summary)

    Index

    Properties

    caller_access: Typed<
        string,
        {
            attributes: { update_exempt: true };
            dropdown: "dropdown_with_none";
            label: "Caller Access";
        },
    >
    derived_priority: Typed<
        number,
        {
            default: "100";
            label: "Derived priority";
            maxLength: 40;
            readOnly: true;
        },
    >
    description: Typed<string, { label: "Description"; maxLength: 100 }>
    event_name: Typed<string, { label: "Event name" }>
    fired_by: Typed<string, { label: "Fired by"; maxLength: 100 }>
    priority: Typed<
        number,
        {
            default: "100";
            label: [
                {
                    hint: "Priority defines the order in which messages will be processed. Lower the value, higher the priority.";
                    label: "Priority";
                    language: "en";
                    plural: "Priorities";
                },
            ];
        },
    >
    queue: Typed<
        string,
        {
            label: [
                {
                    hint: "Queues are registered under Queue Registry page";
                    label: "Queue";
                    language: "en";
                    plural: "Queues";
                    url: "/sysevent_queue_list.do";
                },
            ];
        },
    >
    suffix: Typed<string, { label: "Suffix" }>
    sys_id: Typed<
        string,
        {
            label: [{ label: "Sys ID"; language: "en"; plural: "Sys IDs" }];
            primary: true;
        },
    >
    table: Typed<
        keyof Tables,
        { attributes: { allow_public: true }; label: "Table" },
    >