get_model_json_schema
Retrieve the JSON schema for a specified Vizro model to understand its structure and requirements. Input the model name (e.g., 'Card', 'Dashboard') to receive the corresponding schema.
Instructions
Get the JSON schema for the specified Vizro model.
Args:
model_name: Name of the Vizro model to get schema for (e.g., 'Card', 'Dashboard', 'Page')
Returns:
JSON schema of the requested Vizro model
Input Schema
Name | Required | Description | Default |
---|---|---|---|
model_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"model_name": {
"title": "Model Name",
"type": "string"
}
},
"required": [
"model_name"
],
"title": "get_model_json_schemaArguments",
"type": "object"
}