changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "quote": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "basis": {
+ "enum": [
+ "pricing_json_v2",
+ "llm_estimate"
+ ],
+ "type": "string"
+ },
+ "confidence": {
+ "enum": [
+ "exact",
+ "range",
+ "estimate"
+ ],
+ "type": "string"
+ },
+ "currency": {
+ "type": "string"
+ },
+ "disclaimer": {
+ "type": "string"
+ },
+ "high": {
+ "type": "number"
+ },
+ "low": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "low",
+ "high",
+ "currency",
+ "confidence",
+ "basis"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "reason": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "quote"
+ ],
+ "type": "object"
+}