get_field
Retrieve detailed metadata about a specific database column including its data type, description, and field properties to understand column contents and structure.
Instructions
š [SAFE] Get detailed information about a specific field/column including its type, description, and metadata. Use this to understand what a column contains. Risk: None - read-only operation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fieldId | Yes | The ID of the field |
Input Schema (JSON Schema)
{
"properties": {
"fieldId": {
"description": "The ID of the field",
"minimum": 1,
"type": "integer"
}
},
"required": [
"fieldId"
],
"type": "object"
}