{ "$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" }