Workday Reporting · Schema

ReportField

Definition of a single report output column

AnalyticsBusiness IntelligenceFinancial ReportingHr DataReporting

Properties

Name Type Description
fieldName string Column field name as it appears in the report output
fieldType string Data type of the field such as Text, Numeric, Date, Boolean, or Currency
isRequired boolean Whether the field is always present in the report output
View JSON Schema on GitHub

JSON Schema

workday-reporting-reportfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReportField",
  "title": "ReportField",
  "type": "object",
  "description": "Definition of a single report output column",
  "properties": {
    "fieldName": {
      "type": "string",
      "description": "Column field name as it appears in the report output"
    },
    "fieldType": {
      "type": "string",
      "description": "Data type of the field such as Text, Numeric, Date, Boolean, or Currency"
    },
    "isRequired": {
      "type": "boolean",
      "description": "Whether the field is always present in the report output"
    }
  }
}