Workday Studio · Schema

CompensationPlansResponse

CloudDevelopmentEnterpriseFinanceHRIDEIntegration

Properties

Name Type Description
total integer
data array
View JSON Schema on GitHub

JSON Schema

workday-studio-compensationplansresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CompensationPlansResponse",
  "title": "CompensationPlansResponse",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer"
    },
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "descriptor": {
            "type": "string"
          },
          "planType": {
            "type": "string"
          },
          "effectiveDate": {
            "type": "string",
            "format": "date"
          },
          "currency": {
            "type": "string"
          }
        }
      }
    }
  }
}