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

  "title": "%",
  "description": "Module. Finds the remainder after the first argument is divided by the second argument.",

  "type": "object",
  "additionalProperties": false,
  "required": ["%"],
  "properties": {
    "%": {
      "$ref": "http://jsonlogic.com/schemas/common/binary-args.json"
    }
  },
  "examples": [
    { "%": [101, 2] }
  ]
}
