{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HrisEmployee", "title": "HrisEmployee", "properties": { "address": { "$ref": "#/components/schemas/property_HrisEmployee_address" }, "bio": { "type": "string" }, "company_id": { "type": "string" }, "compensation": { "$ref": "#/components/schemas/property_HrisEmployee_compensation" }, "created_at": { "format": "date-time", "type": "string" }, "currency": { "type": "string" }, "date_of_birth": { "format": "date-time", "type": "string" }, "emails": { "$ref": "#/components/schemas/property_HrisEmployee_emails" }, "employee_number": { "type": "string" }, "employee_roles": { "$ref": "#/components/schemas/property_HrisEmployee_employee_roles" }, "employment_status": { "enum": [ "ACTIVE", "INACTIVE" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "employment_type": { "enum": [ "FULL_TIME", "PART_TIME", "CONTRACTOR", "INTERN", "CONSULTANT", "VOLUNTEER", "CASUAL", "SEASONAL", "FREELANCE", "OTHER" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "first_name": { "type": "string" }, "gender": { "enum": [ "MALE", "FEMALE", "INTERSEX", "TRANS", "NON_BINARY" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "groups": { "$ref": "#/components/schemas/property_HrisEmployee_groups" }, "has_mfa": { "type": "boolean" }, "hired_at": { "format": "date-time", "type": "string" }, "id": { "type": "string" }, "image_url": { "type": "string" }, "language_locale": { "type": "string" }, "last_name": { "type": "string" }, "locations": { "$ref": "#/components/schemas/property_HrisEmployee_locations" }, "manager_id": { "type": "string" }, "marital_status": { "enum": [ "MARRIED", "SINGLE" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "metadata": { "$ref": "#/components/schemas/property_HrisEmployee_metadata" }, "name": { "type": "string" }, "pronouns": { "type": "string" }, "raw": { "additionalProperties": true, "type": "object" }, "relationships": { "$ref": "#/components/schemas/property_HrisEmployee_relationships" }, "salutation": { "type": "string" }, "ssn_sin": { "type": "string" }, "storage_quota_allocated": { "type": "number" }, "storage_quota_available": { "type": "number" }, "storage_quota_used": { "type": "number" }, "telephones": { "$ref": "#/components/schemas/property_HrisEmployee_telephones" }, "terminated_at": { "format": "date-time", "type": "string" }, "termination_reason": { "type": "string" }, "timeoff_days_total": { "type": "number" }, "timeoff_days_used": { "type": "number" }, "timezone": { "type": "string" }, "title": { "type": "string" }, "updated_at": { "format": "date-time", "type": "string" } }, "type": "object" }