trip_alerts_tool
Retrieve real-time service alerts for CATA bus routes, including route-specific notifications with headers, descriptions, and severity levels.
Instructions
Get current service alerts.
Args: route_id: Optional route ID to filter alerts (if None, returns all)
Returns: List of alerts with route ID, header, description, and severity
Input Schema
Name | Required | Description | Default |
---|---|---|---|
route_id | No |
Input Schema (JSON Schema)
{
"properties": {
"route_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Route Id"
}
},
"type": "object"
}