get_table_schema
Retrieve property names and types from a specified table in Azure Table Storage to analyze its structure.
Instructions
Get property names and types from a table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tableName | Yes | Name of the table to analyze |
Input Schema (JSON Schema)
{
"properties": {
"tableName": {
"description": "Name of the table to analyze",
"type": "string"
}
},
"required": [
"tableName"
],
"type": "object"
}