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

  "title": "log",
  "description": "Logs the first value to console, then passes it through unmodified.",
  "type": "object",
  "additionalProperties": false,
  "required": ["log"],
  "properties": {
    "log": {
      "$ref": "http://jsonlogic.com/schemas/common/any.json"
    }
  },
  "examples": [
    { "log": "apple" }
  ]
}
