Bindbee · JSON Structure

Bindbee Employee Structure

A normalized employee record from a connected HRIS system.

Type: object Properties: 8
ATSHR IntegrationHRISWorkforce

Employee is a JSON Structure definition published by Bindbee, describing 8 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

id first_name last_name email job_title department employment_status start_date

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "name": "Employee",
  "type": "object",
  "description": "A normalized employee record from a connected HRIS system.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Bindbee employee ID."
    },
    "first_name": {
      "type": "string",
      "description": "Employee first name."
    },
    "last_name": {
      "type": "string",
      "description": "Employee last name."
    },
    "email": {
      "type": "string",
      "description": "Employee work email."
    },
    "job_title": {
      "type": "string",
      "description": "Job title."
    },
    "department": {
      "type": "string",
      "description": "Department name."
    },
    "employment_status": {
      "type": "string",
      "description": "Employment status."
    },
    "start_date": {
      "type": "date",
      "description": "Employment start date."
    }
  }
}