{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AIRecordInsightsResponse", "title": "AIRecordInsightsResponse", "type": "object", "properties": { "recordInsights": { "type": "array", "items": { "type": "object", "properties": { "recordId": { "type": "string" }, "insights": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "label": { "type": "string" }, "value": { "type": "number" }, "factors": { "type": "array", "items": { "$ref": "#/components/schemas/PredictionFactor" } } } } } } } } } }