get_model_schema
Retrieve the detailed schema of a specific model from OpenAPI specifications, enabling efficient analysis of data structures and endpoints without loading entire schemas.
Instructions
Get detailed schema for a specific model
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api | Yes | API name or direct URL | |
model_name | Yes | Name of the model |
Input Schema (JSON Schema)
{
"properties": {
"api": {
"description": "API name or direct URL",
"type": "string"
},
"model_name": {
"description": "Name of the model",
"type": "string"
}
},
"required": [
"api",
"model_name"
],
"type": "object"
}