Workday Financials · Schema

ReportColumn

AccountingCloud ERPFinancial ManagementProcurement

Properties

Name Type Description
name string Column name
label string Column display label
dataType string Data type of the column
View JSON Schema on GitHub

JSON Schema

workday-financials-reportcolumn-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReportColumn",
  "title": "ReportColumn",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Column name"
    },
    "label": {
      "type": "string",
      "description": "Column display label"
    },
    "dataType": {
      "type": "string",
      "enum": [
        "text",
        "numeric",
        "date",
        "boolean",
        "currency"
      ],
      "description": "Data type of the column"
    }
  }
}