Tool details
| Field | Value |
|---|---|
| Name | list_error_types |
| Group | Errors |
Playground
Input schema
Input schema
{
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "Filter by error category"
}
},
"additionalProperties": false,
"description": "Input schema for the list_error_types tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
Output schema
{
"type": "object",
"properties": {
"errors": {
"type": "array",
"items": {
"type": "object",
"properties": {
"slug": {
"type": "string",
"description": "The slug associated with this tool result."
},
"title": {
"type": "string",
"description": "Short human-readable title returned by the tool."
},
"status": {
"type": "number",
"description": "Lifecycle status for the returned record."
},
"category": {
"type": "string",
"description": "The category associated with this tool result."
},
"suggestion": {
"type": "string",
"description": "The suggestion associated with this tool result."
}
},
"required": [
"slug",
"title",
"status",
"category"
],
"additionalProperties": false,
"description": "One error item associated with this tool result."
},
"description": "List of errors associated with this tool result."
}
},
"required": [
"errors"
],
"additionalProperties": false,
"description": "Structured result returned by the list_error_types tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}