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

    Variable sys_security_attributeConst

    sys_security_attribute: {
        extends: "sys_metadata";
        name: "sys_security_attribute";
        schema: {
            active: Typed<boolean, { default: true }>;
            condition: Typed<string, {}>;
            description: Typed<string, {}>;
            is_dynamic: Typed<boolean, { default: true }>;
            is_localized: Typed<boolean, { default: false }>;
            is_system: Typed<boolean, { default: false }>;
            label: Typed<string, { mandatory: true }>;
            lookup_table: Typed<keyof Tables, {}>;
            lookup_table_column: Typed<string, {}>;
            type: Typed<
                "string"
                | "boolean"
                | "integer"
                | "compound",
                {
                    choices: {
                        boolean: { label: "true | false" };
                        compound: { label: "compound" };
                        integer: { label: "integer" };
                        string: { label: "string" };
                    };
                    default: "string";
                },
            >;
        };
    } = ...

    Type Declaration

    • Readonlyextends: "sys_metadata"
    • Readonlyname: "sys_security_attribute"
    • Readonlyschema: {
          active: Typed<boolean, { default: true }>;
          condition: Typed<string, {}>;
          description: Typed<string, {}>;
          is_dynamic: Typed<boolean, { default: true }>;
          is_localized: Typed<boolean, { default: false }>;
          is_system: Typed<boolean, { default: false }>;
          label: Typed<string, { mandatory: true }>;
          lookup_table: Typed<keyof Tables, {}>;
          lookup_table_column: Typed<string, {}>;
          type: Typed<
              "string"
              | "boolean"
              | "integer"
              | "compound",
              {
                  choices: {
                      boolean: { label: "true | false" };
                      compound: { label: "compound" };
                      integer: { label: "integer" };
                      string: { label: "string" };
                  };
                  default: "string";
              },
          >;
      }