# Introduction

## VenueInfo model

### Example

```json
{
  "venue_info": {
    "description": {
      "en": "Description",
      "pl": "Opis"
    },
    "phone_number": "4740769126",
    "email": "trondheim@example.com",
    "region": "Trøndelag",
    "city": "Trondheim",
    "zip_code": "7018",
    "address": "Mellomila 88",
    "latitude": 63.43220832751197,
    "longitude": 10.3564763599887,
    "social_profiles": {
      "facebook": "https://example.com/facebook",
      "twitter": "https://example.com/twitter"
    },
    "opening_hours": [
      { "type": "weekday", "period": "monday", "hours": { "opens_at": "10:00", "closes_at": "18:00" } },
      { "type": "weekday", "period": "tuesday", "hours": { "opens_at": "10:00", "closes_at": "15:00" } },
      { "type": "weekday", "period": "tuesday", "hours": { "opens_at": "16:00", "closes_at": "18:00" } },
      { "type": "weekday", "period": "wednesday", "hours": { "opens_at": "10:00", "closes_at": "18:00" } },
      { "type": "weekday", "period": "thursday", "hours": { "opens_at": "10:00", "closes_at": "18:00" } },
      { "type": "weekday", "period": "friday", "hours": {"opens_at": "10:00", "closes_at": "18:00" } },
      { "type": "weekday", "period": "saturday", "hours": { "opens_at": "12:00", "closes_at": "15:00" } },
      { "type": "weekday", "period": "sunday", "hours": null },
      { "type": "day", "period": "2023-05-01", "hours": null },
      { "type": "day", "period": "2023-12-22", "hours": { "opens_at": "12:00", "closes_at": "14:00" } },
      { "type": "day", "period": "2023-12-25", "hours": null, "description": "Christmas" }
    ]    
  }
}
```

### Definition

| Key             | Type                                            | Optional | Description
|-----------------|-------------------------------------------------|----------|------------------------------------------------------------------------------------------------------
| description     | string                                          | yes      | Depends on [X-Locale header](doc-341635#x-locale-header)                                          |
| phone_number    | string ([msisdn](doc-341641#msisdn))                | yes      |                                                                                                      |
| email           | string                                          | yes      |                                                                                                      |
| region          | string                                          | yes      |                                                                                                      |
| city            | string                                          | yes      |                                                                                                      |
| zip_code        | string                                          | yes      |                                                                                                      |
| address         | string                                          | yes      |                                                                                                      |
| latitude        | float                                           | yes      |                                                                                                      |
| longitude       | float                                           | yes      |                                                                                                      | 
| social_profiles | object                                          | yes      | Venue's social media URLs. Available keys: `facebook`, `linkedin`, `youtube`, `instagram`, `twitter` |
| opening_hours   | [OpeningHoursItem[]](doc-341959#openinghoursitem-json-model) | yes      |                                                                                                      |

For more information, see [VenueInfo model](doc-341704#venueinfo-model) in Content Management API