action highwaysengland_quality_get_overall_data_quality_for_sites { label: "Get Site OverallQuality" provider: highwaysengland method: GET path: "/v{version}/quality/overall" encoding: json input: { type: "object" properties: { end_date: { type: "string" } sites: { type: "string" } start_date: { type: "string" } version: { type: "string" } } required: ["end_date", "sites", "start_date", "version"] additionalProperties: false } output: { type: "object" properties: { data_quality: { type: "integer" format: "int32" } end_date: { type: "string" } row_count: { type: "integer" format: "int32" } sites: { type: "string" } start_date: { type: "string" } } } }