# `PolarExpress.Schemas.CustomFieldUpdateDate`
[🔗](https://github.com/jeffhuen/polar_express/blob/main/lib/polar_express/schemas/custom_field_update_date.ex#L2)

CustomFieldUpdateDate

Schema to update a custom field of type date.

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.CustomFieldUpdateDate{
  metadata:
    %{
      required(String.t()) =&gt; String.t() | integer() | float() | boolean() | nil
    }
    | nil,
  name: String.t() | nil,
  properties: PolarExpress.Schemas.CustomFieldDateProperties.t() | nil,
  slug: String.t() | nil,
  type: String.t() | nil
}
```

* `metadata` - Key-value object allowing you to store additional information.

The key must be a string with a maximum length of **40 characters**.
The value must be either:

* A string with a maximum length of **500 characters**
* An integer
* A floating-point number
* A boolean

You can store up to **50 key-value pairs**.
* `name` - Nullable.
* `properties` - Nullable.
* `slug` - Nullable.
* `type`

# `schema_name`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
