action highwaysengland_areas_get { label: "Returns list of areas" provider: highwaysengland method: GET path: "/v{version}/areas" encoding: json input: { type: "object" properties: { version: { type: "string" } } required: ["version"] additionalProperties: false } output: { type: "object" properties: { areas: { type: "array" items: { type: "object" required: ["Name", "Description", "XLongitude", "XLatitude", "YLongitude", "YLatitude"] properties: { Description: { type: "string" } Id: { type: "string" } Name: { type: "string" } XLatitude: { type: "string" } XLongitude: { type: "string" } YLatitude: { type: "string" } YLongitude: { type: "string" } } } } row_count: { type: "integer" format: "int32" } } } }