Workday · Schema

CompensationPlan

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string The Workday ID of the compensation plan.
descriptor string A display descriptor for the plan.
compensationPlanType string The type of compensation plan (e.g., Salary, Allowance, Bonus).
amount number The compensation amount.
effectiveDate string
View JSON Schema on GitHub

JSON Schema

compensation-compensation-plan-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CompensationPlan",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The Workday ID of the compensation plan."
    },
    "descriptor": {
      "type": "string",
      "description": "A display descriptor for the plan."
    },
    "compensationPlanType": {
      "type": "string",
      "description": "The type of compensation plan (e.g., Salary, Allowance, Bonus)."
    },
    "amount": {
      "type": "number",
      "description": "The compensation amount."
    },
    "effectiveDate": {
      "type": "string"
    }
  }
}