Workday · Schema

ReportResponse

The report response containing an array of report entries. Column names correspond to the report field definitions.

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
Report_Entry array The array of report data rows.
View JSON Schema on GitHub

JSON Schema

workday-reportresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReportResponse",
  "title": "ReportResponse",
  "type": "object",
  "properties": {
    "Report_Entry": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": true,
        "description": "A report row with column names as keys. The actual fields depend on the report definition."
      },
      "description": "The array of report data rows.",
      "example": []
    }
  },
  "description": "The report response containing an array of report entries. Column names correspond to the report field definitions."
}