smart-data-analysis
Analyze SAP data patterns, trends, and generate actionable business insights with AI-powered statistical analysis for automated data exploration and visualization.
Instructions
Analyze SAP data patterns, trends, and generate actionable business insights with AI-powered statistical analysis. Provides automated data exploration and visualization recommendations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysisType | Yes | Type of analysis to perform | |
businessContext | No | Business context for the analysis | |
data | Yes | Array of data records to analyze - each record is a key-value object | |
entityType | Yes | Type of SAP entity being analyzed |
Input Schema (JSON Schema)
{
"properties": {
"analysisType": {
"description": "Type of analysis to perform",
"enum": [
"trend",
"anomaly",
"forecast",
"correlation"
],
"type": "string"
},
"businessContext": {
"description": "Business context for the analysis",
"type": "string"
},
"data": {
"description": "Array of data records to analyze - each record is a key-value object",
"items": {
"additionalProperties": true,
"properties": {
"id": {
"description": "Record identifier",
"type": "string"
},
"name": {
"description": "Record name",
"type": "string"
},
"value": {
"description": "Record value",
"type": [
"string",
"number",
"boolean"
]
}
},
"type": "object"
},
"type": "array"
},
"entityType": {
"description": "Type of SAP entity being analyzed",
"type": "string"
}
},
"required": [
"data",
"analysisType",
"entityType"
],
"type": "object"
}