Describe a Salesforce object
sf_describe_objectGet field-level metadata for any Salesforce object to plan SOQL queries and record creation. See field names, types, labels, picklist values, and required/createable/updateable flags.
Instructions
Get field-level metadata for an sObject: field names, types, labels, picklist values, and whether each field is required/createable/updateable. Essential before writing SOQL or building a record payload.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sobject | Yes | API name of the object, e.g. "Account" or "My_Object__c". | |
| tooling | No | Describe a Tooling API object instead. Default false. | |
| includePicklists | No | Include picklist values for picklist fields. Default false (keeps output small). |