Workday · Schema

Dataset

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string The Workday ID of the dataset.
descriptor string
name string The name of the dataset.
displayName string The display name of the dataset.
description string
tags array
fields array
rowCount integer The number of rows in the dataset.
createdOn string
updatedOn string
View JSON Schema on GitHub

JSON Schema

workday-dataset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Dataset",
  "title": "Dataset",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The Workday ID of the dataset.",
      "example": "abc123"
    },
    "descriptor": {
      "type": "string",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "description": "The name of the dataset.",
      "example": "Example Title"
    },
    "displayName": {
      "type": "string",
      "description": "The display name of the dataset.",
      "example": "example_value"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    },
    "fields": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DatasetField"
      },
      "example": []
    },
    "rowCount": {
      "type": "integer",
      "description": "The number of rows in the dataset.",
      "example": 10
    },
    "createdOn": {
      "type": "string",
      "format": "date-time",
      "example": "2026-01-15T10:30:00Z"
    },
    "updatedOn": {
      "type": "string",
      "format": "date-time",
      "example": "2026-01-15T10:30:00Z"
    }
  }
}