Job

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISoftware-as-a-ServiceSCM

Properties

Name Type Description
jobId integer Job identifier
jobName string Job name
jobType string Job type
description string Job description
View JSON Schema on GitHub

JSON Schema

oracle-fusion-job-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Job",
  "title": "Job",
  "type": "object",
  "properties": {
    "jobId": {
      "type": "integer",
      "description": "Job identifier"
    },
    "jobName": {
      "type": "string",
      "description": "Job name"
    },
    "jobType": {
      "type": "string",
      "description": "Job type",
      "enum": [
        "Rules",
        "Data Map",
        "Cube Refresh",
        "Clear Cube",
        "Refresh Database",
        "Smart Push",
        "Import Data",
        "Export Data",
        "Copy Data"
      ]
    },
    "description": {
      "type": "string",
      "description": "Job description"
    }
  }
}