changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "clarifying_question": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "conversation_id": {
+ "type": "string"
+ },
+ "intent": {
+ "type": "string"
+ },
+ "match_count": {
+ "type": "integer"
+ },
+ "matches": {
+ "items": {
+ "additionalProperties": true,
+ "description": "One purchasable match",
+ "properties": {
+ "condition": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "go_url": {
+ "description": "Tracked link to the product page; prefer this when showing a link",
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "normalized_specs": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "price_cents": {
+ "type": "integer"
+ },
+ "price_currency": {
+ "type": "string"
+ },
+ "score": {
+ "type": "number"
+ },
+ "source": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "description": "Product page",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "reply": {
+ "description": "What to tell the user",
+ "type": "string"
+ },
+ "state": {
+ "description": "completed or input-required",
+ "type": "string"
+ }
+ },
+ "required": [
+ "reply",
+ "state",
+ "conversation_id"
+ ],
+ "type": "object"
+}