action just_eat_get_restaurants_tenant_restaurant_id_catalogue_availabilities { label: "Get all availabilities" description: "Get all availabilities on the restaurant's menu" provider: just_eat method: GET path: "/restaurants/{tenant}/{restaurantId}/catalogue/availabilities" 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" } }