{
  "id": "calendar-create-event",
  "name": "create-event",
  "description": "create-event",
  "platform": "calendar",
  "version": "1.0.0",
  "tags": [
    "calendar",
    "recorded"
  ],
  "successCount": 0,
  "failCount": 0,
  "steps": [
    {
      "action": "applescript",
      "script": "tell application \"Calendar\"\n\tset evStart to current date\n\tset evEnd to current date\n\tset hours of evEnd to (hours of evEnd) + 1\n\tmake new event at end of events of calendar \"Home\" with properties {summary:\"New Event\", start date:evStart, end date:evEnd}\n\treturn \"created\"\nend tell",
      "description": "AppleScript: tell application \"Calendar\"\n\tset evStart to current date\n\tset evEnd to current d..."
    }
  ]
}