Unified.to · Schema
property_HrisPayslip_deduction
The ID (and optionally name) of the employee deduction (if this detail represents a deduction)
IntegrationsUnified API
Properties
| Name | Type | Description |
|---|---|---|
| amount | number | |
| benefit_id | string | |
| company_id | string | |
| coverage_level | string | |
| created_at | string | |
| end_at | string | |
| frequency | string | |
| id | string | |
| is_active | boolean | |
| notes | string | |
| raw | object | |
| start_at | string | |
| type | string | |
| updated_at | string | |
| user_id | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/property_HrisPayslip_deduction",
"title": "property_HrisPayslip_deduction",
"description": "The ID (and optionally name) of the employee deduction (if this detail represents a deduction)",
"properties": {
"amount": {
"type": "number"
},
"benefit_id": {
"type": "string"
},
"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"
},
"end_at": {
"format": "date-time",
"type": "string"
},
"frequency": {
"enum": [
"ONE_TIME",
"DAY",
"QUARTER",
"YEAR",
"HOUR",
"MONTH",
"WEEK"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
},
"id": {
"type": "string"
},
"is_active": {
"type": "boolean"
},
"notes": {
"type": "string"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"start_at": {
"format": "date-time",
"type": "string"
},
"type": {
"enum": [
"FIXED",
"PERCENTAGE"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
},
"updated_at": {
"format": "date-time",
"type": "string"
},
"user_id": {
"type": "string"
}
},
"type": "object"
}