Justworks · Schema

Justworks Member

A Justworks member — an employee, contractor, or other workforce participant on the Justworks PEO/HR platform.

PEOPayrollHRHuman ResourcesBenefitsHealth Insurance401(k)Time OffComplianceSmall BusinessEmployer of RecordHRIS

Properties

Name Type Description
id string
company_id string
work_id string
name object
active boolean
employment_location_type string
type string
addresses array
emails array
employment_history array
pay_history array
phones array
current_employment object
current_pay object
current_pay_frequency string
date_added_to_justworks string
date_of_birth string
department object
employment_start_date string
employment_termination_date stringnull
job_title string
manager object
office object
partner_settings object
sex_assigned_at_birth string
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

justworks-member-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/justworks/main/json-schema/justworks-member-schema.json",
  "title": "Justworks Member",
  "description": "A Justworks member — an employee, contractor, or other workforce participant on the Justworks PEO/HR platform.",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "company_id": { "type": "string" },
    "work_id": { "type": "string" },
    "name": {
      "type": "object",
      "properties": {
        "family_name": { "type": "string" },
        "given_name": { "type": "string" },
        "full_preferred_name": { "type": "string" },
        "preferred_name": { "type": "string" },
        "additional_names": {
          "type": "array",
          "items": { "type": "string" }
        }
      }
    },
    "active": { "type": "boolean" },
    "employment_location_type": { "type": "string" },
    "type": { "type": "string" },
    "addresses": { "type": "array", "items": { "type": "object" } },
    "emails": { "type": "array", "items": { "type": "object" } },
    "employment_history": { "type": "array", "items": { "type": "object" } },
    "pay_history": { "type": "array", "items": { "type": "object" } },
    "phones": { "type": "array", "items": { "type": "object" } },
    "current_employment": { "type": "object" },
    "current_pay": { "type": "object" },
    "current_pay_frequency": { "type": "string" },
    "date_added_to_justworks": { "type": "string", "format": "date" },
    "date_of_birth": { "type": "string", "format": "date" },
    "department": { "type": "object" },
    "employment_start_date": { "type": "string", "format": "date" },
    "employment_termination_date": { "type": ["string", "null"], "format": "date" },
    "job_title": { "type": "string" },
    "manager": { "type": "object" },
    "office": { "type": "object" },
    "partner_settings": { "type": "object" },
    "sex_assigned_at_birth": { "type": "string" },
    "created_at": { "type": "string", "format": "date-time" },
    "updated_at": { "type": "string", "format": "date-time" }
  },
  "required": ["id", "company_id", "active"]
}