changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "alternatives": {
+ "items": {
+ "$ref": "#/properties/recommendedTool/anyOf/0"
+ },
+ "type": "array"
+ },
+ "clarificationNeeded": {
+ "type": "boolean"
+ },
+ "clarifyingQuestion": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "goal": {
+ "type": "string"
+ },
+ "maxPriceUsd": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "nextStep": {
+ "type": "string"
+ },
+ "paymentRequired": {
+ "type": "boolean"
+ },
+ "recommendedTool": {
+ "anyOf": [
+ {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "paymentRequired",
+ "goal",
+ "maxPriceUsd",
+ "recommendedTool",
+ "alternatives",
+ "clarificationNeeded",
+ "clarifyingQuestion",
+ "nextStep"
+ ],
+ "type": "object"
+}