Skip to content

Commit 22bb49c

Browse files
committed
PR feedback
1 parent 62824c5 commit 22bb49c

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93008,11 +93008,11 @@
9300893008
"ruleset_id": {
9300993009
"$ref": "#/components/schemas/_types:Id"
9301093010
},
93011-
"rules_count": {
93011+
"rule_total_count": {
9301293012
"description": "The number of rules associated with this ruleset",
9301393013
"type": "number"
9301493014
},
93015-
"rule_criteria_type_counts": {
93015+
"rule_criteria_types_counts": {
9301693016
"description": "A map of criteria type to the number of rules of that type",
9301793017
"type": "object",
9301893018
"additionalProperties": {
@@ -93022,8 +93022,8 @@
9302293022
},
9302393023
"required": [
9302493024
"ruleset_id",
93025-
"rules_count",
93026-
"rule_criteria_type_counts"
93025+
"rule_total_count",
93026+
"rule_criteria_types_counts"
9302793027
]
9302893028
},
9302993029
"_global.rank_eval:RankEvalRequestItem": {

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/query_ruleset/list/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ export class QueryRulesetListItem {
2828
/**
2929
* The number of rules associated with this ruleset
3030
*/
31-
rules_count: integer
31+
rule_total_count: integer
3232

3333
/**
3434
* A map of criteria type to the number of rules of that type
3535
*/
36-
rule_criteria_type_counts: Dictionary<string, string>
36+
rule_criteria_types_counts: Dictionary<string, string>
3737
}

0 commit comments

Comments
 (0)