Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| descriptor | string | |
| worker | object | |
| currentBasePayAmount | number | |
| proposedBasePayAmount | number | |
| currency | object | |
| percentChange | number | |
| meritAmount | number | |
| promotionAmount | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ScorecardResult",
"title": "ScorecardResult",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "abc123"
},
"descriptor": {
"type": "string",
"example": "example_value"
},
"worker": {
"$ref": "#/components/schemas/ResourceReference"
},
"currentBasePayAmount": {
"type": "number",
"format": "double",
"example": 42.5
},
"proposedBasePayAmount": {
"type": "number",
"format": "double",
"example": 42.5
},
"currency": {
"$ref": "#/components/schemas/ResourceReference"
},
"percentChange": {
"type": "number",
"format": "double",
"example": 42.5
},
"meritAmount": {
"type": "number",
"format": "double",
"example": 42.5
},
"promotionAmount": {
"type": "number",
"format": "double",
"example": 42.5
}
}
}