{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InsightDetail", "title": "InsightDetail", "properties": { "insightName": { "type": "string", "description": "Name of the Insight for which this notification is generated.

Endpoints -", "readOnly": true, "example": "BILL_NOT_PAID" }, "insightType": { "type": "string", "description": "Identifies whether the insight is generated at an entity-level - per account or per view (OTHER), or if it considers all entities for the user - e.g. all accounts (AGGREGATE).

Endpoints - ", "readOnly": true, "enum": [ "OTHER", "AGGREGATE" ] }, "triggerType": { "type": "string", "description": "triggerType of an insight defines how an Insight was triggered in the system.

Currently following triggerType are supported - Endpoints -", "readOnly": true, "example": "SCHEDULE", "enum": [ "SCHEDULE", "REFRESH", "EVENT" ] }, "eligibleEntity": { "type": "array", "items": { "$ref": "#/components/schemas/EligibleDetail" } } } }