{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WebNotableChangeItem", "title": "WebNotableChangeItem", "additionalProperties": false, "properties": { "current_value": { "title": "Current Value", "type": "number" }, "dimension_type": { "title": "Dimension Type", "type": "string" }, "dimension_value": { "title": "Dimension Value", "type": "string" }, "impact_score": { "title": "Impact Score", "type": "number" }, "metric": { "title": "Metric", "type": "string" }, "percent_change": { "title": "Percent Change", "type": "number" }, "previous_value": { "title": "Previous Value", "type": "number" } }, "required": [ "current_value", "dimension_type", "dimension_value", "impact_score", "metric", "percent_change", "previous_value" ], "type": "object" }