DataSliceResponse

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
rows array Data rows with headers and values
status integer
View JSON Schema on GitHub

JSON Schema

oracle-fusion-datasliceresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DataSliceResponse",
  "title": "DataSliceResponse",
  "type": "object",
  "properties": {
    "rows": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "headers": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "data": {
            "type": "array",
            "items": {
              "type": "number"
            }
          }
        }
      },
      "description": "Data rows with headers and values"
    },
    "status": {
      "type": "integer"
    }
  }
}