Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| descriptor | string | |
| name | string | |
| isInactive | boolean | |
| compensationGradeProfile | object | |
| minimumAmount | number | |
| midpointAmount | number | |
| maximumAmount | number | |
| currency | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CompensationGrade",
"title": "CompensationGrade",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "abc123"
},
"descriptor": {
"type": "string",
"example": "example_value"
},
"name": {
"type": "string",
"example": "Example Title"
},
"isInactive": {
"type": "boolean",
"example": true
},
"compensationGradeProfile": {
"$ref": "#/components/schemas/ResourceReference"
},
"minimumAmount": {
"type": "number",
"format": "double",
"example": 42.5
},
"midpointAmount": {
"type": "number",
"format": "double",
"example": 42.5
},
"maximumAmount": {
"type": "number",
"format": "double",
"example": 42.5
},
"currency": {
"$ref": "#/components/schemas/ResourceReference"
}
}
}