Workday Benefits · JSON Structure

Workday Benefits Employee Benefits Structure

A summary of all active benefit enrollments for an employee

Type: object Properties: 5 Required: 4

Workday Benefits Employee Benefits Structure is a JSON Structure definition published by Workday Benefits, describing 5 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

employeeId employeeName enrollments totalEmployeePremium currency

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workday-benefits/refs/heads/main/json-structure/workday-benefits-employee-benefits-structure.json",
  "title": "Employee Benefits",
  "description": "A summary of all active benefit enrollments for an employee",
  "type": "object",
  "properties": {
    "employeeId": {
      "description": "Employee identifier",
      "type": "string"
    },
    "employeeName": {
      "description": "Employee full name",
      "type": "string"
    },
    "enrollments": {
      "description": "Active benefit enrollments",
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "totalEmployeePremium": {
      "description": "Total monthly employee premium",
      "type": "double"
    },
    "currency": {
      "description": "Currency code",
      "type": "string"
    }
  },
  "required": [
    "employeeId",
    "enrollments",
    "totalEmployeePremium",
    "currency"
  ]
}