@servicenow/sdk - v4.4.1
    Preparing search index...
    interface cmn_cost_center {
        account_number: Typed<string, { label: "Account number" }>;
        code: Typed<string, { label: "Code" }>;
        location: Typed<
            | string
            | Record<"cmn_location">
            | ExplicitKey<"cmn_location">
            | TableBrand<"cmn_location">,
            { label: "Location"; referenceTable: "cmn_location" },
        >;
        manager: Typed<
            | string
            | Record<"sys_user">
            | ExplicitKey<"sys_user">
            | TableBrand<"sys_user">,
            { label: "Manager"; referenceTable: "sys_user" },
        >;
        name: Typed<string, { label: "Name"; maxLength: 100 }>;
        parent: Typed<
            | string
            | Record<"cmn_cost_center">
            | ExplicitKey<"cmn_cost_center">
            | TableBrand<"cmn_cost_center">,
            { label: "Parent"; referenceTable: "cmn_cost_center" },
        >;
        sys_created_by: Typed<
            string,
            { label: [{ label: "Created by"; language: "en"; plural: "Created by" }] },
        >;
        sys_created_on: Typed<
            `${number}-${number}-${number} ${number}:${number}:${number}`,
            { label: [{ label: "Created"; language: "en"; plural: "Created" }] },
        >;
        sys_domain: Typed<
            Record<"domain">
            | "global",
            {
                default: "global";
                label: [
                    {
                        hint: "Domain to which the record belongs";
                        label: "Domain";
                        language: "en";
                        plural: "Domains";
                    },
                ];
            },
        >;
        sys_domain_path: Typed<string, { label: "Domain path" }>;
        sys_id: Typed<
            string,
            {
                label: [{ label: "Sys ID"; language: "en"; plural: "Sys IDs" }];
                primary: true;
            },
        >;
        sys_mod_count: Typed<
            number,
            { label: [{ label: "Updates"; language: "en"; plural: "Updates" }] },
        >;
        sys_updated_by: Typed<
            string,
            { label: [{ label: "Updated by"; language: "en"; plural: "Updated by" }] },
        >;
        sys_updated_on: Typed<
            `${number}-${number}-${number} ${number}:${number}:${number}`,
            { label: [{ label: "Updated"; language: "en"; plural: "Updated" }] },
        >;
        valid_from: Typed<
            `${number}-${number}-${number} ${number}:${number}:${number}`,
            { label: "Valid from" },
        >;
        valid_to: Typed<
            `${number}-${number}-${number} ${number}:${number}:${number}`,
            { label: "Valid to" },
        >;
    }

    Hierarchy (View Summary)

    Index

    Properties

    account_number: Typed<string, { label: "Account number" }>
    code: Typed<string, { label: "Code" }>
    location: Typed<
        | string
        | Record<"cmn_location">
        | ExplicitKey<"cmn_location">
        | TableBrand<"cmn_location">,
        { label: "Location"; referenceTable: "cmn_location" },
    >
    manager: Typed<
        | string
        | Record<"sys_user">
        | ExplicitKey<"sys_user">
        | TableBrand<"sys_user">,
        { label: "Manager"; referenceTable: "sys_user" },
    >
    name: Typed<string, { label: "Name"; maxLength: 100 }>
    parent: Typed<
        | string
        | Record<"cmn_cost_center">
        | ExplicitKey<"cmn_cost_center">
        | TableBrand<"cmn_cost_center">,
        { label: "Parent"; referenceTable: "cmn_cost_center" },
    >
    sys_created_by: Typed<
        string,
        { label: [{ label: "Created by"; language: "en"; plural: "Created by" }] },
    >
    sys_created_on: Typed<
        `${number}-${number}-${number} ${number}:${number}:${number}`,
        { label: [{ label: "Created"; language: "en"; plural: "Created" }] },
    >
    sys_domain: Typed<
        Record<"domain">
        | "global",
        {
            default: "global";
            label: [
                {
                    hint: "Domain to which the record belongs";
                    label: "Domain";
                    language: "en";
                    plural: "Domains";
                },
            ];
        },
    >
    sys_domain_path: Typed<string, { label: "Domain path" }>
    sys_id: Typed<
        string,
        {
            label: [{ label: "Sys ID"; language: "en"; plural: "Sys IDs" }];
            primary: true;
        },
    >
    sys_mod_count: Typed<
        number,
        { label: [{ label: "Updates"; language: "en"; plural: "Updates" }] },
    >
    sys_updated_by: Typed<
        string,
        { label: [{ label: "Updated by"; language: "en"; plural: "Updated by" }] },
    >
    sys_updated_on: Typed<
        `${number}-${number}-${number} ${number}:${number}:${number}`,
        { label: [{ label: "Updated"; language: "en"; plural: "Updated" }] },
    >
    valid_from: Typed<
        `${number}-${number}-${number} ${number}:${number}:${number}`,
        { label: "Valid from" },
    >
    valid_to: Typed<
        `${number}-${number}-${number} ${number}:${number}:${number}`,
        { label: "Valid to" },
    >