Input schema
{
"type": "object",
"properties": {
"movie_id": {
"type": "string",
"description": "The ID of the movie to select."
},
"date": {
"type": "string",
"description": "The date of the show in YYYY-MM-DD format (e.g., '2026-08-01').",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
},
"time": {
"type": "string",
"description": "The start time of the show in 12-hour format with AM/PM (e.g., '8:30 PM').",
"pattern": "^[1-12]:[0-5][0-9] (AM|PM)$"
},
"tickets": {
"type": "number",
"description": "Number of tickets.",
"default": 1
}
},
"required": [
"movie_id",
"date",
"time"
]
}