StackOne · Schema

StackOne Employee

A normalized employee record from the StackOne Unified HRIS API

IntegrationsiPaaS

Properties

Name Type Description
id string StackOne unified identifier
remote_id string Provider-native identifier
first_name string
last_name string
email string
employment_type string
start_date string
department string
job_title string
manager_id string
avatar_url string
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

stackone-employee-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.stackone.com/schemas/hris/employee",
  "title": "StackOne Employee",
  "description": "A normalized employee record from the StackOne Unified HRIS API",
  "type": "object",
  "properties": {
    "id": { "type": "string", "description": "StackOne unified identifier" },
    "remote_id": { "type": "string", "description": "Provider-native identifier" },
    "first_name": { "type": "string" },
    "last_name": { "type": "string" },
    "email": { "type": "string", "format": "email" },
    "employment_type": { "type": "string" },
    "start_date": { "type": "string", "format": "date" },
    "department": { "type": "string" },
    "job_title": { "type": "string" },
    "manager_id": { "type": "string" },
    "avatar_url": { "type": "string", "format": "uri" },
    "created_at": { "type": "string", "format": "date-time" },
    "updated_at": { "type": "string", "format": "date-time" }
  }
}