{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search term or ingredient"
},
"dietary": {
"type": "string",
"enum": [
"vegan",
"halal",
"gluten_free",
"nut_free",
"keto"
]
}
},
"required": [
"query"
]
}{
"type": "object",
"properties": {
"slug": {
"type": "string",
"description": "Venue URL slug"
}
},
"required": [
"slug"
]
}{
"type": "object",
"properties": {
"players": {
"type": "array",
"items": {
"type": "string"
}
}
}
}