action just_eat_get_restaurants_tenant_restaurant_id_catalogue { label: "Get product catalogue" description: "Get details of the restaurant's product catalogue" provider: just_eat method: GET path: "/restaurants/{tenant}/{restaurantId}/catalogue" encoding: json input: { type: "object" properties: { restaurantId: { type: "string" } tenant: { type: "string" } } required: ["restaurantId", "tenant"] additionalProperties: false } output: { type: "object" properties: { currency: { type: "string" description: "The currency of the items on the menu in ISO 4217 format, i.e. GBP, EUR or AUD" } description: { type: "string" description: "A top level description for the menu." } name: { type: "string" description: "The name of the restaurant." } restaurantId: { type: "string" description: "A unique identifier at tenant level for a given restaurant." } } } }