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

    Variable analytics_visualizationConst

    analytics_visualization: {
        allowWebServiceAccess: true;
        attributes: { update_sync: true };
        audit: true;
        extends: "par_component";
        extensible: true;
        label: "Analytics Visualization";
        name: "analytics_visualization";
        schema: {
            sys_domain_path: Typed<
                Record<"domain">
                | "global",
                { default: "global"; label: "Domain Path" },
            >;
            sys_id: Typed<
                string,
                { label: [{ label: "Sys ID"; plural: "Sys IDs" }]; primary: true },
            >;
            type: Typed<
                string
                | number,
                {
                    attributes: {
                        choice_script: "new VisualizationChoiceTypes().get()";
                        is_searchable_choice: true;
                    };
                    dropdown: "dropdown_without_none";
                    label: "Type";
                    script: "new VisualizationChoiceTypes().get()";
                },
            >;
        };
        textIndex: true;
    } = ...

    Type Declaration

    • ReadonlyallowWebServiceAccess: true
    • Readonlyattributes: { update_sync: true }
    • Readonlyaudit: true
    • Readonlyextends: "par_component"
    • Readonlyextensible: true
    • Readonlylabel: "Analytics Visualization"
    • Readonlyname: "analytics_visualization"
    • Readonlyschema: {
          sys_domain_path: Typed<
              Record<"domain">
              | "global",
              { default: "global"; label: "Domain Path" },
          >;
          sys_id: Typed<
              string,
              { label: [{ label: "Sys ID"; plural: "Sys IDs" }]; primary: true },
          >;
          type: Typed<
              string
              | number,
              {
                  attributes: {
                      choice_script: "new VisualizationChoiceTypes().get()";
                      is_searchable_choice: true;
                  };
                  dropdown: "dropdown_without_none";
                  label: "Type";
                  script: "new VisualizationChoiceTypes().get()";
              },
          >;
      }
    • ReadonlytextIndex: true