> For the complete documentation index, see [llms.txt](https://faq.droam.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://faq.droam.com/menu/webhooks/webhook-payload-models/plan-model.md).

# Plan Model

The Plan Model – is a base model for showing platform plan parameters. Model fields are presented in the table (Table 4.6), with an example below (Listing 4.5). There are the following types of this model (Table 4.7).

**Table 4.6 – Fields of Plan Model**&#x20;

<table data-full-width="false"><thead><tr><th width="72">№</th><th width="139">Key </th><th width="142">Type </th><th width="106">Exists </th><th>Description</th></tr></thead><tbody><tr><td>1</td><td>uuid </td><td>uuid v4, string</td><td>required </td><td>Main identifier of plan</td></tr><tr><td>2</td><td>type </td><td>string </td><td>required </td><td>Type of the plan</td></tr><tr><td>3</td><td>name </td><td>string </td><td>required </td><td>Public name of the plan</td></tr><tr><td>4</td><td>operator_title</td><td>string </td><td>optional </td><td>Title of operator with integration, if it exists</td></tr><tr><td>5</td><td>prepaid_refills</td><td>array </td><td>optional </td><td>Available refills for this plan</td></tr></tbody></table>

**Listing 4.5 – Example of Plan Model (JSON)**

```
{
     "uuid":            "271295c0-2019-470d-b7d9-b79bc2686cfd",
     "type":            "prepaid",
     "name":            "Plan Name",
     "operator_title":  "Test Operator (Integration)"
     "prepaid_refills":          [
         {...//Refill Model},
         {...//Refill Model},
         ...other refills
     ]
}
```

**Table 4.7 – Plan Types**

<table><thead><tr><th width="77">№</th><th width="181">Title </th><th>Description </th></tr></thead><tbody><tr><td>1</td><td>Monthly bundle</td><td>Pay after using. One of subscription subtype</td></tr><tr><td>2</td><td>Pay per MB </td><td>There is static price for MB. One of subscription subtype</td></tr><tr><td>3</td><td>Unlimited</td><td>Usage is unlimited. One of subscription subtype</td></tr><tr><td>4</td><td>Dynamic pool</td><td>Pool usage can change. One of subscription subtype</td></tr><tr><td>5</td><td>Static pool</td><td>Pool usage can’t change. One of subscription subtype</td></tr><tr><td>6</td><td>Prepaid</td><td>Need to pay before using</td></tr><tr><td>7</td><td>PAYGO </td><td>One of subscription subtype</td></tr></tbody></table>
