addedInput schema / properties / category
Added value: +{
+ "description": "Canonical category ID or an unambiguous live category alias.",
+ "maxLength": 120,
+ "type": "string"
+}
addedInput schema / properties / cursor
Added value: +{
+ "description": "Opaque next_cursor from a prior search with the same filters.",
+ "maxLength": 500,
+ "minLength": 1,
+ "type": "string"
+}
addedInput schema / properties / enabled
Added value: +{
+ "description": "Filter to enabled or disabled endpoints. Defaults to true; pass \"all\" to include both, ranked enabled-first.",
+ "oneOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "const": "all",
+ "type": "string"
+ }
+ ]
+}
addedInput schema / properties / include_facets
Added value: +{
+ "description": "Include bounded principal-scoped category and pack counts.",
+ "type": "boolean"
+}
addedInput schema / properties / pack
Added value: +{
+ "description": "Canonical curated-pack ID or an unambiguous live pack alias.",
+ "maxLength": 120,
+ "type": "string"
+}
changedInput schema / properties / query / description
Previous value: -"Search phrase."New value: +"Outcome or provider search phrase. Optional when category or pack is supplied."
removedInput schema / required
Removed value: -[
- "query"
-]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "count": {
+ "description": "Results in this page.",
+ "type": "integer"
+ },
+ "query": {
+ "description": "Echo of the search phrase.",
+ "type": "string"
+ },
+ "results": {
+ "description": "Catalog entries with pricing and next step.",
+ "type": "array"
+ }
+ },
+ "type": "object"
+}