{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "http://jsonlogic.com/schemas/common/one-or-more-args.json",

  "title": "1 or more args",
  "description": "With 1 or more arguments.",

  "oneOf": [
    {
      "title": "Single Array",
      "description": "An array with 1 or more elements.",
      "type": "array",
      "items": {
        "$ref": "http://jsonlogic.com/schemas/common/any.json"
      }
    },
    {
      "$ref": "http://jsonlogic.com/schemas/common/any-wo-array.json",
      "title": "Single Arg",
      "description": "Note: 1 or more operators can also take a single, non array argument:"
    }
  ]
}
