Variable filterSchemaConst

filterSchema: {
    additionalProperties: false;
    properties: {
        const: {
            type: readonly ["number", "string"];
        };
        enum: {
            items: {
                type: readonly ["number", "string"];
            };
            type: "array";
        };
        exclusiveMaximum: {
            type: readonly ["number", "string"];
        };
        exclusiveMinimum: {
            type: readonly ["number", "string"];
        };
        format: {
            type: "string";
        };
        maxLength: {
            type: "integer";
        };
        maximum: {
            type: readonly ["number", "string"];
        };
        minLength: {
            type: "integer";
        };
        minimum: {
            type: readonly ["number", "string"];
        };
        not: {
            minProperties: 1;
            type: "object";
        };
        pattern: {
            type: "string";
        };
        type: {
            type: "string";
        };
    };
    required: readonly ["type"];
    type: "object";
} = ...

Type declaration

  • Readonly additionalProperties: false
  • Readonly properties: {
        const: {
            type: readonly ["number", "string"];
        };
        enum: {
            items: {
                type: readonly ["number", "string"];
            };
            type: "array";
        };
        exclusiveMaximum: {
            type: readonly ["number", "string"];
        };
        exclusiveMinimum: {
            type: readonly ["number", "string"];
        };
        format: {
            type: "string";
        };
        maxLength: {
            type: "integer";
        };
        maximum: {
            type: readonly ["number", "string"];
        };
        minLength: {
            type: "integer";
        };
        minimum: {
            type: readonly ["number", "string"];
        };
        not: {
            minProperties: 1;
            type: "object";
        };
        pattern: {
            type: "string";
        };
        type: {
            type: "string";
        };
    }
    • Readonly const: {
          type: readonly ["number", "string"];
      }
      • Readonly type: readonly ["number", "string"]
    • Readonly enum: {
          items: {
              type: readonly ["number", "string"];
          };
          type: "array";
      }
      • Readonly items: {
            type: readonly ["number", "string"];
        }
        • Readonly type: readonly ["number", "string"]
      • Readonly type: "array"
    • Readonly exclusiveMaximum: {
          type: readonly ["number", "string"];
      }
      • Readonly type: readonly ["number", "string"]
    • Readonly exclusiveMinimum: {
          type: readonly ["number", "string"];
      }
      • Readonly type: readonly ["number", "string"]
    • Readonly format: {
          type: "string";
      }
      • Readonly type: "string"
    • Readonly maxLength: {
          type: "integer";
      }
      • Readonly type: "integer"
    • Readonly maximum: {
          type: readonly ["number", "string"];
      }
      • Readonly type: readonly ["number", "string"]
    • Readonly minLength: {
          type: "integer";
      }
      • Readonly type: "integer"
    • Readonly minimum: {
          type: readonly ["number", "string"];
      }
      • Readonly type: readonly ["number", "string"]
    • Readonly not: {
          minProperties: 1;
          type: "object";
      }
      • Readonly minProperties: 1
      • Readonly type: "object"
    • Readonly pattern: {
          type: "string";
      }
      • Readonly type: "string"
    • Readonly type: {
          type: "string";
      }
      • Readonly type: "string"
  • Readonly required: readonly ["type"]
  • Readonly type: "object"