DataSliceImport

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
aggregateEssbaseData boolean Whether to aggregate data
cellNotesOption string Cell notes handling option
dateFormat string Date format for the import
dataGrid object
View JSON Schema on GitHub

JSON Schema

oracle-fusion-datasliceimport-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DataSliceImport",
  "title": "DataSliceImport",
  "type": "object",
  "properties": {
    "aggregateEssbaseData": {
      "type": "boolean",
      "description": "Whether to aggregate data"
    },
    "cellNotesOption": {
      "type": "string",
      "description": "Cell notes handling option"
    },
    "dateFormat": {
      "type": "string",
      "description": "Date format for the import"
    },
    "dataGrid": {
      "type": "object",
      "properties": {
        "pov": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "columns": {
          "type": "array",
          "items": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        },
        "rows": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "headers": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "data": {
                "type": "array",
                "items": {
                  "type": "number"
                }
              }
            }
          }
        }
      }
    }
  }
}