Workday Advanced Compensation · Schema
Compensation Grade
A Workday compensation grade with pay range and midpoint information
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique compensation grade identifier |
| name | string | Grade name |
| code | string | Grade code |
| currency | string | Currency code |
| minimumPay | number | Minimum pay for this grade |
| midpointPay | number | Midpoint pay for this grade |
| maximumPay | number | Maximum pay for this grade |
| payFrequency | string | Pay frequency (ANNUAL, HOURLY, etc.) |
| effectiveDate | string | Grade effective date |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/workday-advanced-compensation/refs/heads/main/json-schema/workday-advanced-compensation-compensation-grade-schema.json",
"title": "Compensation Grade",
"description": "A Workday compensation grade with pay range and midpoint information",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique compensation grade identifier"
},
"name": {
"type": "string",
"description": "Grade name"
},
"code": {
"type": "string",
"description": "Grade code"
},
"currency": {
"type": "string",
"description": "Currency code"
},
"minimumPay": {
"type": "number",
"description": "Minimum pay for this grade"
},
"midpointPay": {
"type": "number",
"description": "Midpoint pay for this grade"
},
"maximumPay": {
"type": "number",
"description": "Maximum pay for this grade"
},
"payFrequency": {
"type": "string",
"description": "Pay frequency (ANNUAL, HOURLY, etc.)"
},
"effectiveDate": {
"type": "string",
"format": "date",
"description": "Grade effective date"
}
},
"required": [
"id",
"name",
"code"
]
}