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