get_fields
Retrieve field metadata for any Odoo model, including type, label, help, and attributes. Filter by field name or select specific attributes to return.
Instructions
Get field information for an Odoo model using ORM fields_get().
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | Model name (e.g., 'res.partner') | |
| field_filter | No | Optional filter for field name (e.g., 'name' to find name-related fields) | |
| fields | No | Specific field names to retrieve (None = all fields) | |
| attributes | No | Field attributes to return (None = default attributes including type, string, help, required, readonly, store, selection, comodel_name, inverse_name, domain) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |