SAP Business Intelligence · Schema
Instance
AnalyticsBusiness IntelligenceData VisualizationReportingSAP
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Instance unique identifier |
| name | string | Instance title |
| status | string | Execution status |
| startTime | string | When the instance began running |
| endTime | string | When the instance completed |
| format | string | Output format |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Instance",
"title": "Instance",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Instance unique identifier"
},
"name": {
"type": "string",
"description": "Instance title"
},
"status": {
"type": "string",
"enum": [
"Pending",
"Running",
"Success",
"Failed",
"Paused"
],
"description": "Execution status"
},
"startTime": {
"type": "string",
"format": "date-time",
"description": "When the instance began running"
},
"endTime": {
"type": "string",
"format": "date-time",
"description": "When the instance completed"
},
"format": {
"type": "string",
"description": "Output format"
}
}
}