interface IssueLimitReportResponseBean {
    entitiesBreachingLimit?: {
        [key: string]: {
            [key: string]: number[];
        };
    };
    issuesApproachingLimit?: {
        [key: string]: {
            [key: string]: number;
        };
    };
    issuesBreachingLimit?: {
        [key: string]: {
            [key: string]: number;
        };
    };
    limits?: {
        [key: string]: number;
    };
}

Properties

entitiesBreachingLimit?: {
    [key: string]: {
        [key: string]: number[];
    };
}

For each field, the ids of the individual entities breaching the limit, grouped by the id or key of the issue they belong to. Fields that hold a single value, such as description and environment, map to an empty list because the issue itself identifies the breaching content

issuesApproachingLimit?: {
    [key: string]: {
        [key: string]: number;
    };
}

A list of ids of issues approaching the limit and their field count

issuesBreachingLimit?: {
    [key: string]: {
        [key: string]: number;
    };
}

A list of ids of issues breaching the limit and their field count

limits?: {
    [key: string]: number;
}

The fields and their defined limits