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