> ## Documentation Index
> Fetch the complete documentation index at: https://docs.voucherify.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Loyalty Card Object

<div class="prose dark:prose-invert custom-html">
  <h2 id="loyalty-card-object">Loyalty Card Object</h2>

  <table>
    <thead>
      <tr>
        <th>Attributes</th>
        <th>Description</th>
      </tr>
    </thead>

    <tbody>
      <tr>
        <td>
          <p>
            id

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>Assigned by the Voucherify API, identifies the voucher.</p>

          <p>
            <strong>Example:</strong>
            v\_mkZN9v7vjYUadXnHrMza8W5c34fE5KiV
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            code

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>A code that identifies a voucher. Pattern can use all letters of the English alphabet, Arabic numerals, and special characters.</p>

          <p>
            <strong>Example:</strong>
            WVPblOYX
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            campaign

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>A unique campaign name, identifies the voucher's parent campaign.</p>

          <p>
            <strong>Example:</strong>
            Loyalty Card Campaign
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            campaign\_id

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>Assigned by the Voucherify API, identifies the voucher's parent campaign.</p>

          <p>
            <strong>Example:</strong>
            camp\_FNYR4jhqZBM9xTptxDGgeNBV
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            category

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>Tag defining the category that this voucher belongs to.</p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            category\_id

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>Unique category ID assigned by Voucherify.</p>

          <p>
            <strong>Example:</strong>
            cat\_0bb343dee3cdb5ec0c
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            categories

            <br />

            <code>array</code>
          </p>
        </td>

        <td>
          <p>Contains details about the category.</p>
          Array of
          <a href="#category">Category</a>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            type

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>Defines the type of the voucher.</p>

          <p>
            Available values:
            <code>LOYALTY\_CARD</code>
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            discount

            <br />

            <code>object</code>,
            <code>null</code>
          </p>
        </td>

        <td>
          <p>
            Object representing discount parameters. Child attributes are present only if
            <code>type</code>
            is
            <code>DISCOUNT\_VOUCHER</code>.
            Defaults to
            <code>null</code>.
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            gift

            <br />

            <code>object</code>,
            <code>null</code>
          </p>
        </td>

        <td>
          <p>
            Object representing gift parameters. Child attributes are present only if
            <code>type</code>
            is
            <code>GIFT\_VOUCHER</code>.
            Defaults to
            <code>null</code>.
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            loyalty\_card

            <br />

            <code>object</code>
          </p>
        </td>

        <td>
          <p>
            Object representing loyalty card parameters. Child attributes are present only if
            <code>type</code>
            is
            <code>LOYALTY\_CARD</code>.
          </p>

          <table>
            <thead>
              <tr>
                <th>Attributes</th>
                <th>Description</th>
              </tr>
            </thead>

            <tbody>
              <tr>
                <td>
                  <p>
                    points

                    <br />

                    <code>integer</code>
                  </p>
                </td>

                <td>
                  <p>Total number of points added to the loyalty card over its lifespan.</p>

                  <p>
                    <strong>Example:</strong>
                    7000
                  </p>
                </td>
              </tr>

              <tr>
                <td>
                  <p>
                    balance

                    <br />

                    <code>integer</code>
                  </p>
                </td>

                <td>
                  <p>
                    Points available for reward redemption. This is calculated as follows:
                    <code>balance</code>
                    \=
                    <code>points</code>
                    \-
                    <code>expired\_points</code>
                    \-
                    <code>subtracted\_points</code>
                    \-
                    <code>redemption.redeemed\_points</code>.
                  </p>

                  <p>
                    <strong>Example:</strong>
                    6970
                  </p>
                </td>
              </tr>

              <tr>
                <td>
                  <p>
                    next\_expiration\_date

                    <br />

                    <code>string</code>
                  </p>
                </td>

                <td>
                  <p>The next closest date when the next set of points are due to expire.</p>

                  <p>
                    <strong>Example:</strong>
                    2023-05-30
                  </p>
                </td>
              </tr>

              <tr>
                <td>
                  <p>
                    next\_expiration\_points

                    <br />

                    <code>integer</code>
                  </p>
                </td>

                <td>
                  <p>The amount of points that are set to expire next.</p>
                </td>
              </tr>
            </tbody>
          </table>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            start\_date

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>
            Activation timestamp defines when the code starts to be active in ISO 8601 format. Voucher is
            <em>inactive before</em>
            this date.
          </p>

          <p>
            <strong>Example:</strong>
            2021-12-01T00:00:00.000Z
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            expiration\_date

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>
            Expiration timestamp defines when the code expires in ISO 8601 format. Voucher is
            <em>inactive after</em>
            this date.
          </p>

          <p>
            <strong>Example:</strong>
            2021-12-31T00:00:00.000Z
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>validity\_timeframe</p>
        </td>

        <td>
          See:
          <a href="#validity-timeframe">Validity Timeframe</a>
        </td>
      </tr>

      <tr>
        <td>
          <p>validity\_day\_of\_week</p>
        </td>

        <td>
          See:
          <a href="#validity-day-of-week">Validity Day Of Week</a>
        </td>
      </tr>

      <tr>
        <td>
          <p>validity\_hours</p>
        </td>

        <td>
          See:
          <a href="#validity-hours">Validity Hours</a>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            active

            <br />

            <code>boolean</code>
          </p>
        </td>

        <td>
          <p>
            A flag to toggle the voucher on or off. You can disable a voucher even though it's within the active period defined by the
            <code>start\_date</code>
            and
            <code>expiration\_date</code>.
          </p>

          <ul>
            <li>
              <code>true</code>
              indicates an
              <em>active</em>
              voucher
            </li>

            <li>
              <code>false</code>
              indicates an
              <em>inactive</em>
              voucher
            </li>
          </ul>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            additional\_info

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>An optional field to keep any extra textual information about the code such as a code description and details.</p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            metadata

            <br />

            <code>object</code>
          </p>
        </td>

        <td>
          <p>The metadata object stores all custom attributes assigned to the code. A set of key/value pairs that you can attach to a voucher object. It can be useful for storing additional information about the voucher in a structured format.</p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            assets

            <br />

            <code>object</code>
          </p>
        </td>

        <td>
          <p>Stores links to images of QR and barcode that correspond to an encrypted voucher code.</p>

          <table>
            <thead>
              <tr>
                <th>Attributes</th>
                <th>Description</th>
              </tr>
            </thead>

            <tbody>
              <tr>
                <td>
                  <p>
                    qr

                    <br />

                    <code>object</code>
                  </p>
                </td>

                <td>
                  <p>Stores Quick Response (QR) representation of encrypted code.</p>

                  <table>
                    <thead>
                      <tr>
                        <th>Attributes</th>
                        <th>Description</th>
                      </tr>
                    </thead>

                    <tbody>
                      <tr>
                        <td>
                          <p>
                            id

                            <br />

                            <code>string</code>
                          </p>
                        </td>

                        <td>
                          <p>Encrypted voucher code ID.</p>

                          <p>
                            <strong>Example:</strong>
                            U2FsdGVkX19ucFhvVmBVpVYG5KoswTsjSIaqoKg5L9ie4BK+t4pp7U7oFzjGJzj9q/bmuMOj9mEFiVKDMIkSaruKedMvHbKoPX5Sg+BaZk5QwXMf8k/OzSlOEVybpwSq+AiqPoNtjeuqtIgkDyvT6Q==
                          </p>
                        </td>
                      </tr>

                      <tr>
                        <td>
                          <p>
                            url

                            <br />

                            <code>string</code>
                          </p>
                        </td>

                        <td>
                          <p>URL to QR code</p>

                          <p>
                            <em>Optional:</em>
                            Attach query parameters to base URL to customize the image of the encrypted voucher code.
                          </p>

                          <ul>
                            <li>
                              <code>size</code>
                              : integer value from
                              <code>1</code>
                              to
                              <code>100</code>
                            </li>

                            <li>
                              <code>format</code>
                              : string, either
                              <code>png</code>
                              (default) or
                              <code>svg</code>
                            </li>
                          </ul>

                          <p>
                            <strong>Example:</strong>
                            [https://dev.dl.voucherify.io/api/v1/assets/qr/U2FsdGVkX19ucFhvVmBVpVYG5KoswTsjSIaqoKg5L9ie4BK%2Bt4pp7U7oFzjGJzj9q%2FbmuMOj9mEFiVKDMIkSaruKedMvHbKoPX5Sg%2BBaZk5QwXMf8k%2FOzSlOEVybpwSq%2BAiqPoNtjeuqtIgkDyvT6Q%3D%3D](https://dev.dl.voucherify.io/api/v1/assets/qr/U2FsdGVkX19ucFhvVmBVpVYG5KoswTsjSIaqoKg5L9ie4BK%2Bt4pp7U7oFzjGJzj9q%2FbmuMOj9mEFiVKDMIkSaruKedMvHbKoPX5Sg%2BBaZk5QwXMf8k%2FOzSlOEVybpwSq%2BAiqPoNtjeuqtIgkDyvT6Q%3D%3D)
                          </p>
                        </td>
                      </tr>
                    </tbody>
                  </table>
                </td>
              </tr>

              <tr>
                <td>
                  <p>
                    barcode

                    <br />

                    <code>object</code>
                  </p>
                </td>

                <td>
                  <p>Stores barcode representation of encrypted code.</p>

                  <table>
                    <thead>
                      <tr>
                        <th>Attributes</th>
                        <th>Description</th>
                      </tr>
                    </thead>

                    <tbody>
                      <tr>
                        <td>
                          <p>
                            id

                            <br />

                            <code>string</code>
                          </p>
                        </td>

                        <td>
                          <p>Encrypted voucher code ID.</p>

                          <p>
                            <strong>Example:</strong>
                            U2FsdGVkX19eJhGfWwUrH9+tulBkON+AnMktic+N6CVWzZ9+fHVxuVx22WakrzxiWXy0skuvvEHSeZIw9HlgyIJ+kJ1iPdUKpyENuNYJKzoZlO0mmTf6WQM6/pFs61apEn9SJx32ttCF6d3oxKISQQ==
                          </p>
                        </td>
                      </tr>

                      <tr>
                        <td>
                          <p>
                            url

                            <br />

                            <code>string</code>
                          </p>
                        </td>

                        <td>
                          <p>URL to barcode</p>

                          <p>
                            <em>Optional:</em>
                            Attach query parameters to base URL to customize the image of the encrypted voucher code.
                          </p>

                          <ul>
                            <li>
                              <code>size</code>
                              : integer value from
                              <code>1</code>
                              to
                              <code>100</code>
                            </li>

                            <li>
                              <code>format</code>
                              : string, either
                              <code>png</code>
                              (default) or
                              <code>svg</code>
                            </li>
                          </ul>

                          <p>
                            <strong>Example:</strong>
                            [https://dev.dl.voucherify.io/api/v1/assets/barcode/U2FsdGVkX19eJhGfWwUrH9%2BtulBkON%2BAnMktic%2BN6CVWzZ9%2BfHVxuVx22WakrzxiWXy0skuvvEHSeZIw9HlgyIJ%2BkJ1iPdUKpyENuNYJKzoZlO0mmTf6WQM6%2FpFs61apEn9SJx32ttCF6d3oxKISQQ%3D%3D](https://dev.dl.voucherify.io/api/v1/assets/barcode/U2FsdGVkX19eJhGfWwUrH9%2BtulBkON%2BAnMktic%2BN6CVWzZ9%2BfHVxuVx22WakrzxiWXy0skuvvEHSeZIw9HlgyIJ%2BkJ1iPdUKpyENuNYJKzoZlO0mmTf6WQM6%2FpFs61apEn9SJx32ttCF6d3oxKISQQ%3D%3D)
                          </p>
                        </td>
                      </tr>
                    </tbody>
                  </table>
                </td>
              </tr>
            </tbody>
          </table>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            is\_referral\_code

            <br />

            <code>boolean</code>
          </p>
        </td>

        <td>
          <p>
            Flag indicating whether this voucher is a referral code;
            <code>true</code>
            for campaign type
            <code>REFERRAL\_PROGRAM</code>.
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            created\_at

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>Timestamp representing the date and time when the voucher was created. The value is shown in the ISO 8601 format.</p>

          <p>
            <strong>Example:</strong>
            2021-12-22T10:13:06.487Z
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            updated\_at

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>Timestamp representing the date and time when the voucher was last updated in ISO 8601 format.</p>

          <p>
            <strong>Example:</strong>
            2021-12-22T10:14:45.316Z
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            holder\_id

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>Unique customer identifier of the redeemable holder. It equals to the customer ID assigned by Voucherify.</p>

          <p>
            <strong>Example:</strong>
            cust\_eWgXlBBiY6THFRJwX45Iakv4
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            redemption

            <br />

            <code>object</code>
          </p>
        </td>

        <td>
          <p>Stores a summary of redemptions that have been applied to the voucher.</p>

          <table>
            <thead>
              <tr>
                <th>Attributes</th>
                <th>Description</th>
              </tr>
            </thead>

            <tbody>
              <tr>
                <td>
                  <p>
                    quantity

                    <br />

                    <code>integer</code>
                  </p>
                </td>

                <td>
                  <p>
                    How many times a voucher can be redeemed. A
                    <code>null</code>
                    value means unlimited.
                  </p>
                </td>
              </tr>

              <tr>
                <td>
                  <p>
                    redeemed\_quantity

                    <br />

                    <code>integer</code>
                  </p>
                </td>

                <td>
                  <p>How many times a voucher has already been redeemed.</p>

                  <p>
                    <strong>Example:</strong>
                    1
                  </p>
                </td>
              </tr>

              <tr>
                <td>
                  <p>
                    redeemed\_points

                    <br />

                    <code>integer</code>
                  </p>
                </td>

                <td>
                  <p>Total loyalty points redeemed.</p>

                  <p>
                    <strong>Example:</strong>
                    100000
                  </p>
                </td>
              </tr>

              <tr>
                <td>
                  <p>
                    object

                    <br />

                    <code>string</code>
                  </p>
                </td>

                <td>
                  <p>
                    The type of the object represented is by default
                    <code>list</code>.
                    To get this list, you need to make a call to the endpoint returned in the url attribute.
                  </p>
                </td>
              </tr>

              <tr>
                <td>
                  <p>
                    url

                    <br />

                    <code>string</code>
                  </p>
                </td>

                <td>
                  <p>
                    The endpoint where this list of redemptions can be accessed using a
                    <strong>GET</strong>
                    method.
                    <code>/v1/vouchers/{voucher_code}/redemptions</code>
                  </p>

                  <p>
                    <strong>Example:</strong>
                    /v1/vouchers/WVPblOYX/redemptions?page=1\&limit=10
                  </p>
                </td>
              </tr>
            </tbody>
          </table>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            publish

            <br />

            <code>object</code>
          </p>
        </td>

        <td>
          <p>This object stores a summary of publish events: an events counter and an endpoint which can be called to return details of each event. A publication is required for loyalty cards and referral codes. This object gets updated whenever a voucher has been published. Publication means assigning a code to a particular customer. Typically, a publication is made by distributing your codes to your customers, e.g. through Export to MailChimp or publish voucher API method.</p>

          <table>
            <thead>
              <tr>
                <th>Required</th>
                <th>Optional</th>
              </tr>
            </thead>

            <tbody>
              <tr>
                <td>
                  <code>type</code>
                  :
                  <code>LOYALTY\_CARD</code>
                </td>

                <td>
                  <code>type</code>
                  :
                  <code>DISCOUNT\_VOUCHER</code>
                </td>
              </tr>

              <tr>
                <td>
                  <code>is\_referral\_code</code>
                  :
                  <code>true</code>
                </td>

                <td>
                  <code>type</code>
                  :
                  <code>GIFT\_VOUCHER</code>
                </td>
              </tr>
            </tbody>
          </table>

          <table>
            <thead>
              <tr>
                <th>Attributes</th>
                <th>Description</th>
              </tr>
            </thead>

            <tbody>
              <tr>
                <td>
                  <p>
                    object

                    <br />

                    <code>string</code>
                  </p>
                </td>

                <td>
                  <p>
                    The type of the object represented is by default
                    <code>list</code>.
                    To get this list, you need to make a call to the endpoint returned in the
                    <code>url</code>
                    attribute.
                  </p>
                </td>
              </tr>

              <tr>
                <td>
                  <p>
                    count

                    <br />

                    <code>integer</code>
                  </p>
                </td>

                <td>
                  <p>Publication events counter.</p>

                  <p>
                    <strong>Example:</strong>
                    0
                  </p>
                </td>
              </tr>

              <tr>
                <td>
                  <p>
                    url

                    <br />

                    <code>string</code>
                  </p>
                </td>

                <td>
                  <p>
                    The endpoint where this list of publications can be accessed using a
                    <strong>GET</strong>
                    method.
                    <code>/v1/vouchers/{voucher_code}/publications</code>
                  </p>

                  <p>
                    <strong>Example:</strong>
                    /v1/vouchers/WVPblOYX/publications?page=1\&limit=10
                  </p>
                </td>
              </tr>
            </tbody>
          </table>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            object

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>
            The type of the object represented by JSON. Default is
            <code>voucher</code>.
          </p>
        </td>
      </tr>
    </tbody>
  </table>

  <h2 id="category">Category</h2>

  <table>
    <thead>
      <tr>
        <th>Attributes</th>
        <th>Description</th>
      </tr>
    </thead>

    <tbody>
      <tr>
        <td>
          <p>
            id

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>Unique category ID assigned by Voucherify.</p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            name

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>Category name.</p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            hierarchy

            <br />

            <code>integer</code>
          </p>
        </td>

        <td>
          <p>Category hierarchy. Categories with lower hierarchy are processed before categories with higher hierarchy value.</p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            object

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>The type of the object represented by the JSON. This object stores information about the category.</p>

          <p>
            Available values:
            <code>category</code>
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            created\_at

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>Timestamp representing the date and time when the category was created. The value is shown in the ISO 8601 format.</p>

          <p>
            <strong>Example:</strong>
            2022-07-14T10:45:13.156Z
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            updated\_at

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>Timestamp representing the date and time when the category was updated. The value is shown in the ISO 8601 format.</p>

          <p>
            <strong>Example:</strong>
            2022-08-16T10:52:08.094Z
          </p>
        </td>
      </tr>
    </tbody>
  </table>

  <h2 id="validity-timeframe">Validity Timeframe</h2>

  <table>
    <thead>
      <tr>
        <th>Attributes</th>
        <th>Description</th>
      </tr>
    </thead>

    <tbody>
      <tr>
        <td>
          <p>
            duration

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>
            Defines the amount of time an earning rule will be active in ISO 8601 format. For example, an earning rule with a
            <code>duration</code>
            of
            <code>PT1H</code>
            will be valid for a duration of one hour.
          </p>

          <p>
            <strong>Example:</strong>
            PT1H
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            interval

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>
            Defines the intervening time between two time points in ISO 8601 format, expressed as a duration. For example, an earning rule with an
            <code>interval</code>
            of
            <code>P2D</code>
            will be valid every other day.
          </p>

          <p>
            <strong>Example:</strong>
            P2D
          </p>
        </td>
      </tr>
    </tbody>
  </table>

  <h2 id="validity-day-of-week">Validity Day Of Week</h2>
  <p>Integer array corresponding to the particular days of the week in which the voucher is valid.</p>

  <ul>
    <li>
      <code>0</code>
      Sunday
    </li>

    <li>
      <code>1</code>
      Monday
    </li>

    <li>
      <code>2</code>
      Tuesday
    </li>

    <li>
      <code>3</code>
      Wednesday
    </li>

    <li>
      <code>4</code>
      Thursday
    </li>

    <li>
      <code>5</code>
      Friday
    </li>

    <li>
      <code>6</code>
      Saturday
    </li>
  </ul>

  <h2 id="validity-hours">Validity Hours</h2>

  <table>
    <thead>
      <tr>
        <th>Attributes</th>
        <th>Description</th>
      </tr>
    </thead>

    <tbody>
      <tr>
        <td>
          <p>
            daily

            <br />

            <code>array</code>
          </p>
        </td>

        <td>
          <p>Defines the recurring period(s) when the resource is active. The periods should not overlap.</p>
          Array of:

          <table>
            <thead>
              <tr>
                <th>Attributes</th>
                <th>Description</th>
              </tr>
            </thead>

            <tbody>
              <tr>
                <td>
                  <p>
                    start\_time

                    <br />

                    <code>string</code>
                  </p>
                </td>

                <td>
                  <p>
                    Defines the starting hour of validity in the HH:mm format. The resource is
                    <em>inactive before</em>
                    this time.
                  </p>

                  <p>
                    <strong>Example:</strong>
                    12:00
                  </p>
                </td>
              </tr>

              <tr>
                <td>
                  <p>
                    days\_of\_week

                    <br />

                    <code>array</code>
                  </p>
                </td>

                <td>
                  <p>Integer array corresponding to the particular days of the week in which the resource is valid.</p>

                  <ul>
                    <li>
                      <code>0</code>
                      Sunday
                    </li>

                    <li>
                      <code>1</code>
                      Monday
                    </li>

                    <li>
                      <code>2</code>
                      Tuesday
                    </li>

                    <li>
                      <code>3</code>
                      Wednesday
                    </li>

                    <li>
                      <code>4</code>
                      Thursday
                    </li>

                    <li>
                      <code>5</code>
                      Friday
                    </li>

                    <li>
                      <code>6</code>
                      Saturday
                    </li>
                  </ul>
                </td>
              </tr>

              <tr>
                <td>
                  <p>
                    expiration\_time

                    <br />

                    <code>string</code>
                  </p>
                </td>

                <td>
                  <p>
                    Defines the ending hour of validity in the HH:mm format. The resource is
                    <em>inactive after</em>
                    this time.
                  </p>

                  <p>
                    <strong>Example:</strong>
                    14:00
                  </p>
                </td>
              </tr>
            </tbody>
          </table>
        </td>
      </tr>
    </tbody>
  </table>
</div>
