You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/docs/openapi-v2-files-audit.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1036,9 +1036,9 @@
1036
1036
"name": "resourceType",
1037
1037
"in": "query",
1038
1038
"required": false,
1039
-
"description": "Filter by exact resource type.",
1039
+
"description": "Filter by resource type. Accepts a comma-separated set; members are trimmed and deduplicated, and member order affects neither the result nor the cursor.",
1040
1040
"schema": {
1041
-
"description": "Filter by exact resource type.",
1041
+
"description": "Filter by resource type. Accepts a comma-separated set; members are trimmed and deduplicated, and member order affects neither the result nor the cursor.",
Copy file name to clipboardExpand all lines: apps/docs/openapi-v2-knowledge.json
+17-3Lines changed: 17 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2743,9 +2743,22 @@
2743
2743
},
2744
2744
"operator": {
2745
2745
"default": "eq",
2746
-
"description": "Comparison operator; valid operators depend on the field type.",
2746
+
"description": "Comparison operator; valid operators depend on the field type. Text tags accept eq, neq, contains, not_contains, starts_with, ends_with; number and date tags accept eq, neq, gt, gte, lt, lte, between; boolean tags accept eq, neq. An operator the tag's field type does not implement is rejected, never ignored.",
2747
2747
"examples": ["eq"],
2748
-
"type": "string"
2748
+
"type": "string",
2749
+
"enum": [
2750
+
"eq",
2751
+
"neq",
2752
+
"contains",
2753
+
"not_contains",
2754
+
"starts_with",
2755
+
"ends_with",
2756
+
"gt",
2757
+
"gte",
2758
+
"lt",
2759
+
"lte",
2760
+
"between"
2761
+
]
2749
2762
},
2750
2763
"value": {
2751
2764
"anyOf": [
@@ -2763,7 +2776,7 @@
2763
2776
"examples": ["billing"]
2764
2777
},
2765
2778
"valueTo": {
2766
-
"description": "Upper bound for the `between` operator.",
2779
+
"description": "Upper bound for the `between` operator, and required whenever that operator is used.",
2767
2780
"anyOf": [
2768
2781
{
2769
2782
"type": "string"
@@ -2775,6 +2788,7 @@
2775
2788
}
2776
2789
},
2777
2790
"required": ["tagName", "value"],
2791
+
"additionalProperties": false,
2778
2792
"title": "Knowledge search tag filter",
2779
2793
"description": "A structured tag filter applied to knowledge search."
Copy file name to clipboardExpand all lines: apps/docs/openapi-v2-logs.json
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -133,20 +133,24 @@
133
133
"name": "minCost",
134
134
"in": "query",
135
135
"required": false,
136
-
"description": "Minimum execution cost in USD.",
136
+
"description": "Minimum execution cost in USD, from 0 to 1000000. A run is never charged a negative amount, so a negative bound is rejected rather than treated as a filter that matches every run.",
137
137
"schema": {
138
138
"type": "number",
139
-
"description": "Minimum execution cost in USD."
139
+
"minimum": 0,
140
+
"maximum": 1000000,
141
+
"description": "Minimum execution cost in USD, from 0 to 1000000. A run is never charged a negative amount, so a negative bound is rejected rather than treated as a filter that matches every run."
140
142
}
141
143
},
142
144
{
143
145
"name": "maxCost",
144
146
"in": "query",
145
147
"required": false,
146
-
"description": "Maximum execution cost in USD.",
148
+
"description": "Maximum execution cost in USD, from 0 to 1000000. A run is never charged a negative amount, so a negative bound is rejected rather than treated as a filter that matches every run.",
147
149
"schema": {
148
150
"type": "number",
149
-
"description": "Maximum execution cost in USD."
151
+
"minimum": 0,
152
+
"maximum": 1000000,
153
+
"description": "Maximum execution cost in USD, from 0 to 1000000. A run is never charged a negative amount, so a negative bound is rejected rather than treated as a filter that matches every run."
0 commit comments