# CustomFieldAttributes

Attributes for creating and updating a custom field

```json
{
  "label": "",
  "name": "",
  "fieldType": "",
  "parentObject": "",
  "position": 123,
  "size": "",
  "required": true
}
```

| Name         | Type    | Description                                                |
| ------------ | ------- | ---------------------------------------------------------- |
| label        | String  | Display label for the field                                |
| name         | String  | Schema name for the field (camelCase, e.g., churnDate)     |
| fieldType    | String  | Data type: string, integer, date, rich\_text, boolean      |
| parentObject | String  | Object type this field belongs to (e.g., account, contact) |
| position     | Int     | Sort order position                                        |
| size         | String  | Field size: quarter, half, full                            |
| required     | Boolean | Whether the field is required                              |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.bunny.com/developer/api-reference/types/customfieldattributes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
