changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "description": "UCP catalog search response. Products are read-only discovery results.",
+ "properties": {
+ "messages": {
+ "type": "array"
+ },
+ "pagination": {
+ "additionalProperties": true,
+ "properties": {
+ "cursor": {
+ "type": "string"
+ },
+ "has_next_page": {
+ "type": "boolean"
+ },
+ "total_count": {
+ "type": "integer"
+ }
+ },
+ "type": "object"
+ },
+ "products": {
+ "items": {
+ "additionalProperties": true,
+ "description": "Current machine-consumable Misfit catalog product. Checkout URLs, when present, are handoff metadata only and do not authorize purchase.",
+ "properties": {
+ "categories": {
+ "type": "array"
+ },
+ "description": {
+ "type": "object"
+ },
+ "handle": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "metadata": {
+ "type": "object"
+ },
+ "price_range": {
+ "type": "object"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ },
+ "variants": {
+ "type": "array"
+ }
+ },
+ "required": [
+ "id",
+ "title"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "ucp": {
+ "additionalProperties": true,
+ "properties": {
+ "capabilities": {
+ "type": "object"
+ },
+ "status": {
+ "type": "string"
+ },
+ "version": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "version",
+ "status"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "ucp",
+ "products"
+ ],
+ "type": "object"
+}