Workday · Schema

Table

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string The Workday ID of the table.
descriptor string
name string The name of the table.
displayName string
description string
fields array
isAccessible boolean
documentCount integer
View JSON Schema on GitHub

JSON Schema

workday-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",
      "description": "The Workday ID of the table.",
      "example": "abc123"
    },
    "descriptor": {
      "type": "string",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "description": "The name of the table.",
      "example": "Example Title"
    },
    "displayName": {
      "type": "string",
      "example": "example_value"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "fields": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DatasetField"
      },
      "example": []
    },
    "isAccessible": {
      "type": "boolean",
      "example": true
    },
    "documentCount": {
      "type": "integer",
      "example": 10
    }
  }
}