{
  "source": "scheduler.js",
  "method": "stopTimer",
  "input-schema": {
    "type": "object",
    "additionalProperties": false,
    "properties" : {
      "label": {
        "type": "string",
        "description": "Specify the label of the timer that should be stopped.",
        "required": true
      }
    }
  },
  "output-schema": {
    "type": "object",
    "success": {
      "type": "boolean",
      "required": true
    }
  },
  "meta": {
    "name": "stopTimer",
    "description": "Terminate a timer. A timer once stopped cannot be resumed again."
  }
}