Workday · Schema

Dependent

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string
descriptor string
fullName string
relationship object
dateOfBirth string
gender object
View JSON Schema on GitHub

JSON Schema

workday-dependent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Dependent",
  "title": "Dependent",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "descriptor": {
      "type": "string",
      "example": "example_value"
    },
    "fullName": {
      "type": "string",
      "example": "example_value"
    },
    "relationship": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "dateOfBirth": {
      "type": "string",
      "format": "date",
      "example": "2026-01-15"
    },
    "gender": {
      "$ref": "#/components/schemas/ResourceReference"
    }
  }
}