# Introduction

## Privacy Policy model

Contains information on Privacy Policy as either text that contains the document or an URL to a website that
displays it.


### Example

```json
{
  "privacy_policy": {
    "text": {
      "en": "<h3><strong>Privacy Policy</strong></h3><h4><strong>Introduction</strong></p>",
      "no": "<h3>Personvernerklæring</h3>\n<span><b>Innledning</b></span>"
    },
    "url": null
  }
}
```

### Definition

| Key  | Type    | Description                                  |
|------|---------|----------------------------------------------|
| text | [LocalizedContent](doc-341959#localizedcontent-json-model) | Text (potentially HTML) containing privacy policy text |
| url  | string (URL) | Link to privacy policy URL |

The attributes: `text` and `url` are mutually exclusive. Only one can be present at one time.