{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "http://jsonlogic.com/schemas/operators/numeric/less.json",

  "title": "<",
  "description": "Less than. You can use a special case of < to test that one value is exclusively between two others.",

  "type": "object",
  "additionalProperties": false,
  "required": ["<"],
  "properties": {
    "<": {
      "$ref": "http://jsonlogic.com/schemas/common/trinary-args.json"
    }
  },
  "examples": [
    { "<": [1, 2] },
    { "<": [1, 2, 3] },
    { "<": [0, {"var":"temp"}, 100] }
  ]
}
