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

    Variable var_dictionaryConst

    var_dictionary: {
        allowUiActions: true;
        allowWebServiceAccess: true;
        attributes: { update_synch: true };
        display: "label";
        extends: "sys_dictionary";
        extensible: true;
        label: "Variables";
        name: "var_dictionary";
        schema: {
            help: Typed<string, { label: "Help"; maxLength: 4000 }>;
            hint: Typed<string, { label: "Hint"; maxLength: 255 }>;
            label: Typed<string, { label: "Label"; maxLength: 50 }>;
            model_id: Typed<
                string
                | Record,
                { dependent: "model_table"; label: "Model ID" },
            >;
            model_table: Typed<
                keyof Tables,
                {
                    attributes: { allow_public: true; base_start: true };
                    label: "Model Table";
                },
            >;
            name: OverrideColumnType;
            order: Typed<
                number,
                {
                    default: 100;
                    label: [
                        {
                            hint: "Top down ordering of variables";
                            label: "Order";
                            plural: "Orders";
                        },
                    ];
                },
            >;
            sys_id: OverrideColumnType;
        };
        textIndex: true;
    } = ...

    Type Declaration

    • ReadonlyallowUiActions: true
    • ReadonlyallowWebServiceAccess: true
    • Readonlyattributes: { update_synch: true }
    • Readonlydisplay: "label"
    • Readonlyextends: "sys_dictionary"
    • Readonlyextensible: true
    • Readonlylabel: "Variables"
    • Readonlyname: "var_dictionary"
    • Readonlyschema: {
          help: Typed<string, { label: "Help"; maxLength: 4000 }>;
          hint: Typed<string, { label: "Hint"; maxLength: 255 }>;
          label: Typed<string, { label: "Label"; maxLength: 50 }>;
          model_id: Typed<
              string
              | Record,
              { dependent: "model_table"; label: "Model ID" },
          >;
          model_table: Typed<
              keyof Tables,
              {
                  attributes: { allow_public: true; base_start: true };
                  label: "Model Table";
              },
          >;
          name: OverrideColumnType;
          order: Typed<
              number,
              {
                  default: 100;
                  label: [
                      {
                          hint: "Top down ordering of variables";
                          label: "Order";
                          plural: "Orders";
                      },
                  ];
              },
          >;
          sys_id: OverrideColumnType;
      }
    • ReadonlytextIndex: true