{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HrisCompensation", "title": "HrisCompensation", "properties": { "amount": { "type": "number" }, "currency": { "type": "string" }, "frequency": { "enum": [ "ONE_TIME", "DAY", "QUARTER", "YEAR", "HOUR", "MONTH", "WEEK" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "group_id": { "type": "string" }, "notes": { "type": "string" }, "type": { "enum": [ "SALARY", "BONUS", "STOCK_OPTIONS", "EQUITY", "OTHER" ], "type": "string", "x-speakeasy-unknown-values": "allow" } }, "type": "object" }