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

  "title": "max",
  "description": "Return the maximum from a list of values.",

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