openapi: 3.0.1 info: title: Data2Report API description: API for analyzing data files and generating reports. version: 'v1' servers: - url: https://data2report.calmfield-92dbde07.eastus2.azurecontainerapps.io paths: /api/analyze: post: operationId: analyzeData summary: Analyze an uploaded file requestBody: required: true content: multipart/form-data: schema: type: object properties: file: type: string format: binary responses: "200": description: Analysis result content: application/json: schema: type: object properties: summary: type: string charts: type: array items: type: object /api/chat: post: operationId: chatWithData summary: Chat about the analyzed data requestBody: required: true content: application/json: schema: type: object properties: message: type: string context: type: object responses: "200": description: Chat response content: application/json: schema: type: object properties: reply: type: string