action just_eat_search_by_postcode { label: "Get restaurants by postcode" description: "Provides details of restaurants that deliver to the specified postcode" provider: just_eat method: GET path: "/restaurants/bypostcode/{postcode}" encoding: json input: { type: "object" properties: { "Accept-Tenant": { type: "string" } Authorization: { type: "string" } brandName: { type: "string" } cuisine: { type: "string" } postcode: { type: "string" } restaurantName: { type: "string" } } required: ["postcode"] additionalProperties: false } output: { type: "object" } }