Unified.to · Schema

HrisPayslip

IntegrationsUnified API

Properties

Name Type Description
company_id string
created_at string
currency string
deduction object
details object
end_at string
gross_amount number
id string
net_amount number
paid_at string
payment_type string
raw object
start_at string
updated_at string
user_id string
View JSON Schema on GitHub

JSON Schema

unified-to-hrispayslip-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HrisPayslip",
  "title": "HrisPayslip",
  "properties": {
    "company_id": {
      "type": "string"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "currency": {
      "type": "string"
    },
    "deduction": {
      "$ref": "#/components/schemas/property_HrisPayslip_deduction"
    },
    "details": {
      "$ref": "#/components/schemas/property_HrisPayslip_details"
    },
    "end_at": {
      "format": "date-time",
      "type": "string"
    },
    "gross_amount": {
      "type": "number"
    },
    "id": {
      "type": "string"
    },
    "net_amount": {
      "type": "number"
    },
    "paid_at": {
      "format": "date-time",
      "type": "string"
    },
    "payment_type": {
      "enum": [
        "DIRECT",
        "CHEQUE",
        "CASH"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "start_at": {
      "format": "date-time",
      "type": "string"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    },
    "user_id": {
      "type": "string"
    }
  },
  "required": [
    "raw"
  ],
  "type": "object"
}