{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Compensation",
"title": "Compensation",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"salary",
"hourly",
"commission",
"bonus",
"equity",
"other",
"unmapped_value"
]
},
"pay_period": {
"type": "string",
"enum": [
"hour",
"day",
"week",
"every_two_weeks",
"month",
"quarter",
"every_six_months",
"year",
"none",
"unmapped_value"
]
},
"pay_frequency": {
"type": "string",
"enum": [
"hourly",
"weekly",
"bi_weekly",
"four_weekly",
"semi_monthly",
"monthly",
"bi_monthly",
"quarterly",
"semi_annually",
"yearly",
"thirteen_monthly",
"pro_rata",
"unmapped_value",
"half_yearly"
]
},
"currency": {
"type": "string"
},
"value": {
"type": "string"
},
"min_value": {
"type": "string"
},
"max_value": {
"type": "string"
}
}
}