action just_eat_get_restaurants_tenant_restaurant_id_catalogue_items { label: "Get all menu items" description: "Get all menu items on the restaurant's menu" provider: just_eat method: GET path: "/restaurants/{tenant}/{restaurantId}/catalogue/items" encoding: json input: { type: "object" properties: { after: { type: "string" } limit: { type: "integer" format: "int32" } restaurantId: { type: "string" } tenant: { type: "string" } } required: ["limit", "restaurantId", "tenant"] additionalProperties: false } output: { type: "object" } }