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

  "title": "merge",
  "description": "Takes one or more arrays, and merges them into one array. If arguments aren’t arrays, they get cast to arrays.",
  "type": "object",
  "additionalProperties": false,
  "required": ["merge"],
  "properties": {
    "merge": {
      "$ref": "http://jsonlogic.com/schemas/common/one-or-more-args.json"
    }
  },
  "examples": [
    { "merge": [ [1,2], [3,4] ] },
    { "merge": [ 1, 2, [3,4] ] }
  ]
}
