get_function_schema
Retrieve the schema and parameter details for a specific SQL Server function to understand its structure and usage requirements.
Instructions
Gets the schema and parameters of a specific function
Input Schema
Name | Required | Description | Default |
---|---|---|---|
functionName | Yes | Name of the function | |
schemaName | No | Schema name (default: dbo) | dbo |
Input Schema (JSON Schema)
{
"properties": {
"functionName": {
"description": "Name of the function",
"type": "string"
},
"schemaName": {
"default": "dbo",
"description": "Schema name (default: dbo)",
"type": "string"
}
},
"required": [
"functionName"
],
"type": "object"
}