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

AttachedCustomField

Schema of a custom field attached to a resource.

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.AttachedCustomField{
  custom_field: PolarExpress.Schemas.CustomField.t() | nil,
  custom_field_id: String.t() | nil,
  order: integer() | nil,
  required: boolean() | nil
}
```

* `custom_field`
* `custom_field_id` - ID of the custom field. Format: uuid4.
* `order` - Order of the custom field in the resource.
* `required` - Whether the value is required for this custom field.

# `schema_name`

---

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