{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WebVitalsPathBreakdownResult", "title": "WebVitalsPathBreakdownResult", "additionalProperties": false, "properties": { "good": { "items": { "$ref": "#/components/schemas/WebVitalsPathBreakdownResultItem" }, "title": "Good", "type": "array" }, "needs_improvements": { "items": { "$ref": "#/components/schemas/WebVitalsPathBreakdownResultItem" }, "title": "Needs Improvements", "type": "array" }, "poor": { "items": { "$ref": "#/components/schemas/WebVitalsPathBreakdownResultItem" }, "title": "Poor", "type": "array" } }, "required": [ "good", "needs_improvements", "poor" ], "type": "object" }