iCalendar to JSON Converter Online
iCalendar parsing features:
This tool provides solutions for working with icalendar to json converter data.
Core Features
Recurrence Rules
Parse RRULE into JSON structure
Attendee Extraction
Extract participant information
Time Zone Handling
Convert to UTC or local time
Multi-event Support
Handle calendars with multiple events
Example
Input:
BEGIN:VCALENDAR VERSION:2.0 BEGIN:VEVENT UID:12345 DTSTART;TZID=America/New_York:20230101T090000 DTEND;TZID=America/New_York:20230101T100000 SUMMARY:Team Meeting DESCRIPTION:Quarterly planning LOCATION:Conference Room A ATTENDEE;CN=John Doe:mailto:john@example.com RRULE:FREQ=WEEKLY;COUNT=5 END:VEVENT END:VCALENDAR
Output:
{ "events": [ { "uid": "12345", "start": "2023-01-01T14:00:00Z", "end": "2023-01-01T15:00:00Z", "summary": "Team Meeting", "description": "Quarterly planning", "location": "Conference Room A", "attendees": [ { "name": "John Doe", "email": "john@example.com" } ], "recurrence": { "freq": "WEEKLY", "count": 5, "byday": ["MO"] } } ] }
Related Tools
Categories
iCalendar to JSONCalendar ToolsSchedulingData Transformation.ics FilesMeeting Management
Quick Tips
• Use Ctrl+Enter to format instantly
• Customize formatting options
• Drag and drop files into editor