{
"id": "uuid",
"name": "book_appointment",
"display_name": "Book an appointment",
"category": "calendar",
"description": "Reserve a calendar slot for the caller.",
"schema": {
"type": "object",
"properties": {
"iso_datetime": {"type": "string", "format": "date-time"},
"name": {"type": "string"},
"phone": {"type": "string"}
},
"required": ["iso_datetime", "name", "phone"]
},
"implementation_type": "python",
"implementation_config": {},
"implementation_code": "def main(args, ctx):\n return {'ok': True}",
"tags": ["calendar", "scheduling"],
"is_default": false
}