# Event Profile
**Source:** [Google Event structured data](https://developers.google.com/search/docs/appearance/structured-data/event)
## Supported Types
- `Event`
## Required Fields
| `name` | Event name |
| `startDate` | Event start date (ISO 8601) |
| `location` | Event venue |
## Nested Requirements: Place (location)
| `address` | Required | Venue address |
## Recommended Fields
| `endDate` | Event end date |
| `description` | Event description |
| `image` | Event image |
| `offers` | Ticket information |
| `organizer` | Event organizer |
| `performer` | Event performer |
## Eligible Example
```json
{
"@type": "Event",
"name": "Widget Conference 2024",
"startDate": "2024-06-15T09:00:00+02:00",
"location": {
"@type": "Place",
"name": "Convention Center",
"address": {
"@type": "PostalAddress",
"streetAddress": "456 Event Ave",
"addressLocality": "Zurich"
}
},
"description": "Annual widget industry conference",
"offers": {
"@type": "Offer",
"price": "99.00",
"priceCurrency": "CHF"
}
}
```