Unified.to · Schema

HrisEmployeerelationship

IntegrationsUnified API

Properties

Name Type Description
address object
emails object
end_at string
first_name string
is_beneficiary boolean
is_dependent boolean
last_name string
name string
start_at string
telephones object
type string
View JSON Schema on GitHub

JSON Schema

unified-to-hrisemployeerelationship-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HrisEmployeerelationship",
  "title": "HrisEmployeerelationship",
  "properties": {
    "address": {
      "$ref": "#/components/schemas/property_HrisEmployeerelationship_address"
    },
    "emails": {
      "$ref": "#/components/schemas/property_HrisEmployeerelationship_emails"
    },
    "end_at": {
      "format": "date-time",
      "type": "string"
    },
    "first_name": {
      "type": "string"
    },
    "is_beneficiary": {
      "type": "boolean"
    },
    "is_dependent": {
      "type": "boolean"
    },
    "last_name": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "start_at": {
      "format": "date-time",
      "type": "string"
    },
    "telephones": {
      "$ref": "#/components/schemas/property_HrisEmployeerelationship_telephones"
    },
    "type": {
      "enum": [
        "EMERGENCY",
        "SPOUSE",
        "CHILD",
        "PARENT",
        "SIBLING",
        "FRIEND",
        "OTHER"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    }
  },
  "type": "object"
}