ScheduledRequestSubmit

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
jobDefinitionName string
jobPackageName string
submissionNotes string
parameterList array
View JSON Schema on GitHub

JSON Schema

oracle-fusion-scheduledrequestsubmit-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScheduledRequestSubmit",
  "title": "ScheduledRequestSubmit",
  "type": "object",
  "required": [
    "jobDefinitionName"
  ],
  "properties": {
    "jobDefinitionName": {
      "type": "string"
    },
    "jobPackageName": {
      "type": "string"
    },
    "submissionNotes": {
      "type": "string"
    },
    "parameterList": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        }
      }
    }
  }
}