{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HrisBenefit", "title": "HrisBenefit", "description": "Company-wide benefit plans available to employees.", "properties": { "company_id": { "type": "string" }, "coverage_level": { "enum": [ "EMPLOYEE_ONLY", "EMPLOYEE_SPOUSE", "EMPLOYEE_CHILD", "EMPLOYEE_CHILDREN", "EMPLOYEE_FAMILY", "FAMILY", "OTHER" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "created_at": { "format": "date-time", "type": "string" }, "currency": { "type": "string" }, "description": { "type": "string" }, "employer_contribution_amount": { "type": "number" }, "employer_contribution_max_amount": { "type": "number" }, "employer_contribution_type": { "enum": [ "PERCENTAGE", "FIXED" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "frequency": { "enum": [ "ONE_TIME", "DAY", "QUARTER", "YEAR", "HOUR", "MONTH", "WEEK" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "id": { "type": "string" }, "is_active": { "type": "boolean" }, "name": { "type": "string" }, "raw": { "additionalProperties": true, "type": "object" }, "tax": { "enum": [ "PRE_TAX", "POST_TAX", "TAXABLE", "NON_TAXABLE", "TAX" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "type": { "enum": [ "RETIREMENT", "HEALTH", "DENTAL", "VISION", "LIFE", "HSA", "FSA", "SHORT_TERM_DISABILITY", "LONG_TERM_DISABILITY", "WORKERS_COMP", "HOUSING_STIPEND", "EMPLOYER_TAX_CONTRIBUTION", "GARNISHMENT", "LOAN_REPAYMENT", "CHARITABLE_CONTRIBUTION", "OTHER" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "updated_at": { "format": "date-time", "type": "string" } }, "type": "object" }