{
"type": "object",
"required": ["status", "model", "currency", "items", "options", "pricing", "totals"],
"properties": {
"status": { "type": "string", "enum": ["ok", "needs_clarification"] },
"model": { "type": "string", "enum": ["Элит", "Кубо", "Меган", "Дестини", "Futur"] },
"currency": { "type": "string", "enum": ["RUB"] },
"items": {
"type": "array",
"items": {
"type": "object",
"required": ["sku", "title", "unit_price", "qty", "line_total"],
"properties": {
"sku": { "type": "string" },
"title": { "type": "string" },
"unit_price": { "type": "integer" },
"qty": { "type": "integer", "minimum": 1 },
"line_total": { "type": "integer" }
}
}
},
"options": {
"type": "object",
"required": ["folding_mechanism", "pillows_45x45"],
"properties": {
"folding_mechanism": { "type": "boolean" },
"pillows_45x45": { "type": "integer", "minimum": 0 }
}
},
"layout": {
"type": "object",
"required": ["preview", "notes"],
"properties": {
"preview": { "type": ["string", "null"] },
"notes": { "type": ["string", "null"] }
}
},
"pricing": {
"type": "object",
"required": ["price_table"],
"properties": {
"price_table": { "type": "object" }
}
},
"totals": {
"type": "object",
"required": ["subtotal", "total"],
"properties": {
"subtotal": { "type": "integer" },
"total": { "type": "integer" }
}
},
"next_questions": {
"type": "array",
"items": { "type": "string" }
}
}
}