action highwaysengland_sites_index { label: "Get a list of sites" provider: highwaysengland method: GET path: "/v{version}/sites" encoding: json input: { type: "object" properties: { version: { type: "string" } } required: ["version"] additionalProperties: false } output: { type: "object" properties: { row_count: { type: "integer" format: "int32" } sites: { type: "array" items: { type: "object" properties: { Description: { type: "string" } Id: { type: "string" } Latitude: { type: "number" format: "double" } Longitude: { type: "number" format: "double" } Name: { type: "string" } Status: { type: "string" } } } } } } }