Oracle Essbase · Schema

Oracle Essbase Job

An asynchronous job executed on an Essbase database. Jobs support operations such as data loading, dimension building, calculations, data clearing, Excel import/export, LCM backup/restore, aggregation management, ASO buffer operations, data export, and MDX script execution.

AnalyticsBudgetingBusiness IntelligenceFinancial ConsolidationMulti-Dimensional DatabaseOLAPPlanning

Properties

Name Type Description
job_ID integer Unique job identifier assigned by the server.
appName string Name of the application the job was executed against.
dbName string Name of the database the job was executed against.
jobType string Type of job that was executed.
jobfileName string Name of the script or file associated with the job.
userName string User ID of the person who submitted the job.
startTime integer Job start time in milliseconds since Unix epoch.
endTime integer Job end time in milliseconds since Unix epoch. Null if the job is still running.
statusCode integer Numeric status code indicating job state. 100=In Progress, 200=Completed, 300=Completed with Warnings, 400=Failed.
statusMessage string Human-readable status message describing the current job state.
jobInputInfo object Input parameters that were used to execute the job. Structure varies by job type.
jobOutputInfo object Output and results of the job execution. Structure varies by job type.
links array HATEOAS navigation links.
View JSON Schema on GitHub

JSON Schema

oracle-essbase-job-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "oracle-essbase-job-schema.json",
  "title": "Oracle Essbase Job",
  "description": "An asynchronous job executed on an Essbase database. Jobs support operations such as data loading, dimension building, calculations, data clearing, Excel import/export, LCM backup/restore, aggregation management, ASO buffer operations, data export, and MDX script execution.",
  "type": "object",
  "properties": {
    "job_ID": {
      "type": "integer",
      "description": "Unique job identifier assigned by the server."
    },
    "appName": {
      "type": "string",
      "description": "Name of the application the job was executed against."
    },
    "dbName": {
      "type": "string",
      "description": "Name of the database the job was executed against."
    },
    "jobType": {
      "type": "string",
      "description": "Type of job that was executed."
    },
    "jobfileName": {
      "type": "string",
      "description": "Name of the script or file associated with the job."
    },
    "userName": {
      "type": "string",
      "description": "User ID of the person who submitted the job."
    },
    "startTime": {
      "type": "integer",
      "description": "Job start time in milliseconds since Unix epoch."
    },
    "endTime": {
      "type": "integer",
      "description": "Job end time in milliseconds since Unix epoch. Null if the job is still running."
    },
    "statusCode": {
      "type": "integer",
      "description": "Numeric status code indicating job state. 100=In Progress, 200=Completed, 300=Completed with Warnings, 400=Failed.",
      "enum": [100, 200, 300, 400]
    },
    "statusMessage": {
      "type": "string",
      "description": "Human-readable status message describing the current job state."
    },
    "jobInputInfo": {
      "type": "object",
      "description": "Input parameters that were used to execute the job. Structure varies by job type.",
      "additionalProperties": true
    },
    "jobOutputInfo": {
      "type": "object",
      "description": "Output and results of the job execution. Structure varies by job type.",
      "additionalProperties": true,
      "properties": {
        "recordsProcessed": {
          "type": "integer",
          "description": "Number of records successfully processed (for data load jobs)."
        },
        "recordsRejected": {
          "type": "integer",
          "description": "Number of records rejected during processing (for data load jobs)."
        },
        "errorMessage": {
          "type": "string",
          "description": "Error message if the job failed or had warnings."
        }
      }
    },
    "links": {
      "type": "array",
      "description": "HATEOAS navigation links.",
      "items": {
        "$ref": "#/$defs/Link"
      }
    }
  },
  "$defs": {
    "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": "#/$defs/JobParameters"
        }
      }
    },
    "JobParameters": {
      "type": "object",
      "description": "Job-specific parameters. Required fields depend on the job type.",
      "properties": {
        "file": {
          "type": "string",
          "description": "Source file name for dataload, dimbuild, or mdxScript jobs."
        },
        "rule": {
          "type": "string",
          "description": "Rules file name for dataload or dimbuild jobs."
        },
        "abortOnError": {
          "type": "string",
          "description": "Stop on first error (true/false) for dataload jobs."
        },
        "script": {
          "type": "string",
          "description": "Calculation script name (.csc file) for calc jobs."
        },
        "option": {
          "type": "string",
          "description": "Clear option for clear jobs.",
          "enum": ["allData", "upperLevel", "nonInput", "partialData", "PARTIAL_DATA"]
        },
        "partialDataExpression": {
          "type": "string",
          "description": "MDX expression for partial data clear."
        },
        "zipFileName": {
          "type": "string",
          "description": "Backup zip file name for lcmExport/lcmImport jobs."
        },
        "dataLevel": {
          "type": "string",
          "description": "Data level for export operations.",
          "enum": ["ALL_DATA", "UPPER_LEVEL_BLOCKS", "NON_INPUT_BLOCKS", "LEVEL_ZERO_BLOCKS", "INPUT_LEVEL_DATA_BLOCKS"]
        },
        "restructureOption": {
          "type": "string",
          "description": "Data preservation option for dimension build jobs.",
          "enum": ["PRESERVE_ALL_DATA", "PRESERVE_NO_DATA", "PRESERVE_LEAFLEVEL_DATA", "PRESERVE_INPUT_DATA"]
        },
        "commitOption": {
          "type": "string",
          "description": "Commit option for ASO buffer commit jobs.",
          "enum": ["STORE_DATA", "ADD_DATA", "SUBTRACT_DATA", "OVERRIDE_ALL_DATA", "OVERRIDE_INCREMENTAL_DATA"]
        }
      }
    },
    "Link": {
      "type": "object",
      "description": "HATEOAS navigation link.",
      "properties": {
        "rel": {
          "type": "string",
          "description": "Link relation type."
        },
        "href": {
          "type": "string",
          "format": "uri",
          "description": "Link URL."
        },
        "method": {
          "type": "string",
          "description": "HTTP method for this link."
        },
        "type": {
          "type": "string",
          "description": "Media type of the linked resource."
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/oracle-essbase-job"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.