Bulk Event Upload
Upload a JSON file to import multiple events at once. The system will automatically geocode addresses and download images.

Expected JSON Format:

{
  "events": [
    {
      "title": "Event Title",
      "description": "Full event description",
      "eventDate": "2026-07-15",
      "startTime": "19:00",
      "endTime": "21:30",
      "locationText": "Venue Name, Town, MA",
      "latitude": 41.4532,
      "longitude": -70.6678,
      "locationCategory": "Oak Bluffs",
      "categories": [
        "music",
        "outdoor"
      ],
      "privacyLevel": "public",
      "websiteUrl": "https://example.com/event",
      "coverImageUrl": "https://example.com/image.jpg"
    }
  ]
}

Required: title, description, eventDate, locationText
Optional: All other fields. Coordinates will be geocoded if missing.