get_item_details
Retrieve complete details for any Odoo element including all fields, methods, references, views, and actions. Use for in-depth analysis when quick lookups are insufficient.
Instructions
Get FULL details for a specific Odoo element.
WARNING: This returns ALL information including ALL references, ALL fields, ALL methods, ALL views, etc. for models. Use search_odoo_index() for quick lookups.
Use this ONLY when you specifically need:
All references (inheritance, overrides, usages)
All fields/methods of a model
All views/actions related to a model
Full attribute details
Args: item_type: Type of item (model/field/function/view/menu/action/etc) name: Item name (e.g., 'sale.order' for model, 'partner_id' for field) parent_name: Parent name (required for fields/methods - the model name) module: Module name (optional, helps disambiguate)
Returns: Complete item details with all references and related items
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| module | No | ||
| item_type | Yes | ||
| parent_name | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||