Validation1

  • range
    Type: object · Range
    required
    • min
      Type: integerFormat: int32
      required

      Signed 32-bit integers (commonly used integer type).

    • minOp
      Type: string
      required
    • max
      Type: integerFormat: int32

      Signed 32-bit integers (commonly used integer type).

    • maxOp
      Type: string
  • precision
    Type: object · Precision
    • max
      Type: integerFormat: int32
      required

      Signed 32-bit integers (commonly used integer type).

    • maxOp
      Type: string
      required
    • min
      Type: integerFormat: int32
      required

      Signed 32-bit integers (commonly used integer type).

    • minOp
      Type: string
      required
Examples
{
  "range": {
    "minOp": ">=",
    "min": 0,
    "maxOp": "<",
    "max": 1000
  },
  "precision": {
    "minOp": ">=",
    "min": 0,
    "maxOp": "<=",
    "max": 0
  }
}