Table

EnterpriseERPFinanceHCMIntegrationPayroll

Properties

Name Type Description
id string
descriptor string
displayName string
enableForAnalysis boolean
fields array
View JSON Schema on GitHub

JSON Schema

workday-integration-table-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Table",
  "title": "Table",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "descriptor": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    },
    "enableForAnalysis": {
      "type": "boolean"
    },
    "fields": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "ordinal": {
            "type": "integer"
          },
          "type": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "descriptor": {
                "type": "string"
              }
            }
          },
          "parseFormat": {
            "type": "string"
          },
          "precision": {
            "type": "integer"
          },
          "scale": {
            "type": "integer"
          }
        }
      }
    }
  }
}