SAP BI Tools · Schema

ScheduleRequest

Request parameters for scheduling a document

AnalyticsBusiness IntelligenceData VisualizationReportingSAP

Properties

Name Type Description
parameters array Report parameters to set before execution
format string The output format for the scheduled instance (e.g., pdf, xlsx)
View JSON Schema on GitHub

JSON Schema

sap-bi-tools-schedulerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScheduleRequest",
  "title": "ScheduleRequest",
  "type": "object",
  "description": "Request parameters for scheduling a document",
  "properties": {
    "parameters": {
      "type": "array",
      "description": "Report parameters to set before execution",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "The parameter name"
          },
          "value": {
            "type": "string",
            "description": "The parameter value"
          }
        }
      }
    },
    "format": {
      "type": "string",
      "description": "The output format for the scheduled instance (e.g., pdf, xlsx)"
    }
  }
}