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

  "title": "min",
  "description": "Return the minimum from a list of values.",

  "type": "object",
  "additionalProperties": false,
  "required": ["min"],
  "properties": {
    "min": {
      "$ref": "http://jsonlogic.com/schemas/common/one-or-more-args.json"
    }
  },
  "examples": [
    { "min": [1,2,3] }
  ]
}
