# Introduction

## Landing page template model

### Example

```json
{
  "landing_page_template": {
    "id": 22,
    "customer_id": 42,
    "type": "bee_page",
    "content": {
        "bee_json": { "bee" : "json" },
        "html": "<html></html>",
        "thumbnail: {
            "url": "https://cdn-thumbnail.com/files",
            "mime_type": "image/png",
            "created_at": "2024-07-15T14:08:43Z",
            "updated_at": "2024-07-15T14:08:43Z"
        }
    },
    "created_at": "2024-07-15T10:01:38.071466Z",
    "updated_at": "2024-07-15T14:08:43.475870Z"
  }
}
```

### Definition

| Key              | Type                                                                              | Optional | Read-only | Description                                                                                                  |
|------------------|-----------------------------------------------------------------------------------|----------|-----------|--------------------------------------------------------------------------------------------------------------|
| id               | integer                                                           | no       | yes       |                                                                                                              |
| customer_id     | integer                                                            | no       | yes        | Customer the record is assigned to                                                                            |
| type           | string                     | no       | no        |                           |
| content             | json                                                            | no      | yes        |                                                                                                              |
| contnent.bee_json            | json                                                            | no      | no        |  bee plugin json                                                                                                            |
| content.html         | string                                                            | no      | yes        |  automatically generated from bee json                                                                     |
| content.thumbnail         | json                                                              | no      | yes        | bee plugin json                                                                                              |
| created_at       | datetime                                                          | no       | yes       | Time of record creation                                                                                      |
| updated_at       | datetime                                                          | no       | yes       | Time of record last update                                                                                    |
                                                       