{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EntityDetail", "title": "EntityDetail", "properties": { "entityType": { "type": "string", "description": "The entityType identifies which applicableEntity of the insight the configuration will impact." }, "entityId": { "type": "string", "description": "Unique ID which references a specific entityType for which the insight is generated. Endpoints - " }, "container": { "type": "string", "description": "The account's container.

Applicable containers - bank,creditCard,investment,insurance,loan

Endpoints -", "readOnly": true, "example": "creditCard", "enum": [ "bank", "creditCard", "investment", "insurance", "loan", "reward", "bill", "realEstate", "otherAssets", "otherLiabilities" ] }, "link": { "allOf": [ { "$ref": "#/components/schemas/Link" } ], "readOnly": true }, "eligibleInsight": { "type": "array", "items": { "$ref": "#/components/schemas/EligibleInsight" } } } }