Skip to content

Commit

Permalink
Add rule_type_counts to QueryRulesetListResponse spec
Browse files Browse the repository at this point in the history
  • Loading branch information
kderusso committed Nov 19, 2024
1 parent cf7d574 commit 62ef764
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion specification/query_rules/list_rulesets/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,12 @@ export class QueryRulesetListItem {
rule_total_count: integer

/**
* A map of criteria type to the number of rules of that type
* A map of criteria type (e.g. exact) to the number of rules of that type
*/
rule_criteria_types_counts: Dictionary<string, integer>

/**
* A map of rule type (e.g. pinned) to the number of rules of that type
*/
rule_type_counts: Dictionary<string, integer>
}

0 comments on commit 62ef764

Please sign in to comment.