Oracle Essbase · Schema

JobInput

Input for executing an asynchronous job.

AnalyticsBudgetingBusiness IntelligenceFinancial ConsolidationMulti-Dimensional DatabaseOLAPPlanning

Properties

Name Type Description
application string Application name.
db string Database name.
jobtype string Type of job to execute.
parameters object
View JSON Schema on GitHub

JSON Schema

oracle-essbase-jobinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JobInput",
  "title": "JobInput",
  "type": "object",
  "description": "Input for executing an asynchronous job.",
  "required": [
    "jobtype"
  ],
  "properties": {
    "application": {
      "type": "string",
      "description": "Application name."
    },
    "db": {
      "type": "string",
      "description": "Database name."
    },
    "jobtype": {
      "type": "string",
      "description": "Type of job to execute.",
      "enum": [
        "dataload",
        "dimbuild",
        "calc",
        "clear",
        "importExcel",
        "exportExcel",
        "lcmExport",
        "lcmImport",
        "clearAggregation",
        "buildAggregation",
        "asoBufferDataLoad",
        "asoBufferCommit",
        "exportData",
        "mdxScript"
      ]
    },
    "parameters": {
      "$ref": "#/components/schemas/JobParameters"
    }
  }
}