Workday · Schema

CompensationScorecard

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string
descriptor string
name string
effectiveDate string
compensationReviewPeriod object
status string
View JSON Schema on GitHub

JSON Schema

workday-compensationscorecard-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CompensationScorecard",
  "title": "CompensationScorecard",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "descriptor": {
      "type": "string",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "effectiveDate": {
      "type": "string",
      "format": "date",
      "example": "2026-01-15"
    },
    "compensationReviewPeriod": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "status": {
      "type": "string",
      "example": "example_value"
    }
  }
}