@servicenow/sdk - v4.9.0
    Preparing search index...

    Variable par_componentConst

    par_component: {
        allowWebServiceAccess: true;
        attributes: { update_synch: true };
        audit: true;
        display: "name";
        extends: "sys_metadata";
        extensible: true;
        label: "Par Component";
        name: "par_component";
        schema: {
            active: Typed<boolean, { default: true; label: "Active" }>;
            certified: Typed<boolean, { default: false; label: "Certified" }>;
            description: Typed<string, { label: "Description"; maxLength: 1000 }>;
            macroponent: Typed<
                | string
                | Record<"sys_ux_macroponent">
                | ExplicitKey<"sys_ux_macroponent">
                | TableBrand<"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
                | Record<"sys_user">
                | ExplicitKey<"sys_user">
                | TableBrand<"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<
                Record<"domain">
                | "global",
                {
                    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 },
            >;
        };
        textIndex: true;
    } = ...

    Type Declaration

    • ReadonlyallowWebServiceAccess: true
    • Readonlyattributes: { update_synch: true }
    • Readonlyaudit: true
    • Readonlydisplay: "name"
    • Readonlyextends: "sys_metadata"
    • Readonlyextensible: true
    • Readonlylabel: "Par Component"
    • Readonlyname: "par_component"
    • Readonlyschema: {
          active: Typed<boolean, { default: true; label: "Active" }>;
          certified: Typed<boolean, { default: false; label: "Certified" }>;
          description: Typed<string, { label: "Description"; maxLength: 1000 }>;
          macroponent: Typed<
              | string
              | Record<"sys_ux_macroponent">
              | ExplicitKey<"sys_ux_macroponent">
              | TableBrand<"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
              | Record<"sys_user">
              | ExplicitKey<"sys_user">
              | TableBrand<"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<
              Record<"domain">
              | "global",
              {
                  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 },
          >;
      }
    • ReadonlytextIndex: true