bsolo
03/19/2025, 3:56 PM...
"schema": {
"type": "object",
"required": [
"sale_price"
],
"properties": {
"sale_price": "{\n \"type\": \"number\",\n \"nullable\": true\n}"
}
}
...
which throws the following error: "assistantOverrides.analysisPlan.structuredDataPlan.schema.properties.each value in nested property properties must be either object or array"Shubham Bajaj
03/19/2025, 4:24 PMbsolo
03/19/2025, 4:25 PMbsolo
03/19/2025, 4:25 PMbsolo
03/19/2025, 4:25 PMbsolo
03/19/2025, 4:25 PM"bsolo
03/19/2025, 4:26 PMjson
"schema": {
"type": "object",
"properties": {
"sale_amt": {
"type": "string",
"description": "Sale amount that was discussed on the phone"
}
},
"required": [
"sale_amt"
]
}bsolo
03/19/2025, 4:27 PM