Workday · Schema

BenefitPlan

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string
descriptor string
name string
benefitPlanType string The type of benefit plan (e.g., Medical, Dental, Vision, Life Insurance, 401k).
carrier object
isActive boolean
View JSON Schema on GitHub

JSON Schema

workday-benefitplan-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BenefitPlan",
  "title": "BenefitPlan",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "descriptor": {
      "type": "string",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "benefitPlanType": {
      "type": "string",
      "description": "The type of benefit plan (e.g., Medical, Dental, Vision, Life Insurance, 401k).",
      "example": "example_value"
    },
    "carrier": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "isActive": {
      "type": "boolean",
      "example": true
    }
  }
}