@servicenow/sdk - v4.9.0
    Preparing search index...
    interface par_component {
        active: Typed<boolean, { default: true; label: "Active" }>;
        certified: Typed<boolean, { default: false; label: "Certified" }>;
        description: Typed<string, { label: "Description"; maxLength: 1000 }>;
        macroponent: Typed<
            | string
            | ExplicitKey<"sys_ux_macroponent">
            | TableBrand<"sys_ux_macroponent">
            | Record<"sys_ux_macroponent">,
            {
                attributes: { encode_utf8: false };
                cascadeRule: "delete";
                label: "Macroponent";
                referenceTable: "sys_ux_macroponent";
            },
        >;
        name: Typed<
            string,
            {
                label: [
                    {
                        hint: "Name data visualization item";
                        label: "Name";
                        plural: "Names";
                    },
                ];
                maxLength: 100;
            },
        >;
        properties: Typed<
            string,
            {
                label: [
                    {
                        hint: "JSON, configuration of the component";
                        label: "Properties";
                        plural: "Properties";
                    },
                ];
                maxLength: 8000;
            },
        >;
        requested_by: Typed<
            | string
            | ExplicitKey<"sys_user">
            | TableBrand<"sys_user">
            | Record<"sys_user">,
            {
                attributes: { encode_utf8: false };
                cascadeRule: "clear";
                label: "Requested by";
                referenceTable: "sys_user";
            },
        >;
        required_translations: Typed<
            string
            | number,
            {
                attributes: { json_view: true };
                columnType: "json_translations";
                label: [
                    {
                        hint: "JSON Array, holding the translations required by this screen";
                        label: "Required translations";
                        plural: "Required translations";
                    },
                ];
                maxLength: 8000;
            },
        >;
        sys_domain: Typed<
            "global"
            | Record<"domain">,
            {
                default: "global";
                label: [
                    {
                        hint: "Domain to which this component belongs";
                        label: "Domain";
                        plural: "Domains";
                    },
                ];
            },
        >;
        sys_id: Typed<
            string,
            { label: [{ label: "Sys ID"; plural: "Sys IDs" }]; primary: true },
        >;
    }

    Hierarchy (View Summary)

    Index

    Properties

    active: Typed<boolean, { default: true; label: "Active" }>
    certified: Typed<boolean, { default: false; label: "Certified" }>
    description: Typed<string, { label: "Description"; maxLength: 1000 }>
    macroponent: Typed<
        | string
        | ExplicitKey<"sys_ux_macroponent">
        | TableBrand<"sys_ux_macroponent">
        | Record<"sys_ux_macroponent">,
        {
            attributes: { encode_utf8: false };
            cascadeRule: "delete";
            label: "Macroponent";
            referenceTable: "sys_ux_macroponent";
        },
    >
    name: Typed<
        string,
        {
            label: [
                {
                    hint: "Name data visualization item";
                    label: "Name";
                    plural: "Names";
                },
            ];
            maxLength: 100;
        },
    >
    properties: Typed<
        string,
        {
            label: [
                {
                    hint: "JSON, configuration of the component";
                    label: "Properties";
                    plural: "Properties";
                },
            ];
            maxLength: 8000;
        },
    >
    requested_by: Typed<
        | string
        | ExplicitKey<"sys_user">
        | TableBrand<"sys_user">
        | Record<"sys_user">,
        {
            attributes: { encode_utf8: false };
            cascadeRule: "clear";
            label: "Requested by";
            referenceTable: "sys_user";
        },
    >
    required_translations: Typed<
        string
        | number,
        {
            attributes: { json_view: true };
            columnType: "json_translations";
            label: [
                {
                    hint: "JSON Array, holding the translations required by this screen";
                    label: "Required translations";
                    plural: "Required translations";
                },
            ];
            maxLength: 8000;
        },
    >
    sys_domain: Typed<
        "global"
        | Record<"domain">,
        {
            default: "global";
            label: [
                {
                    hint: "Domain to which this component belongs";
                    label: "Domain";
                    plural: "Domains";
                },
            ];
        },
    >
    sys_id: Typed<
        string,
        { label: [{ label: "Sys ID"; plural: "Sys IDs" }]; primary: true },
    >