MENU navbar-image

Introduction

This documentation aims to provide all the information you need to work with our API.

This documentation aims to provide all the information you need to work with our API.

<aside>As you scroll, you'll see code examples for working with the API in different programming languages in the dark area to the right (or as part of the content on mobile).
You can switch the language used with the tabs at the top right (or from the nav menu at the top left on mobile).</aside>

Authenticating requests

To authenticate requests, include an Authorization header with the value "Bearer {JWT_TOKEN}".

All authenticated endpoints are marked with a requires authentication badge in the documentation below.

You can retrieve your token by visiting your dashboard and clicking Generate API token.

Endpoints

GET api/v1/employees

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/employees" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employees"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Call to undefined relationship [passportCountry] on model [YomaConnect\\Common\\Models\\Employee]."
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/employees

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/employees

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/employees" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"b\",
    \"first_name\": \"n\",
    \"last_name\": \"g\",
    \"known_as\": \"z\",
    \"myanmar_name\": \"m\",
    \"slug\": \"architecto\",
    \"gender\": \"other\",
    \"title\": \"n\",
    \"date_of_birth\": \"2026-02-18T20:43:18\",
    \"work_email\": \"ashly64@example.com\",
    \"fcm_token\": \"architecto\",
    \"huawei_token\": \"architecto\",
    \"employee_number\": \"architecto\",
    \"employee_unique_id\": \"architecto\",
    \"nrc\": \"n\",
    \"passport\": \"g\",
    \"phone_code\": \"z\",
    \"phone\": \"miyvdljnikhwaykc\",
    \"personal_email\": \"antonio24@example.net\",
    \"home_address\": \"architecto\",
    \"emergency_contact\": \"architecto\",
    \"emergency_contact_number\": \"architecto\",
    \"nationality_id\": 16,
    \"status_id\": \"a4855dc5-0acb-33c3-b921-f4291f719ca0\",
    \"location_id\": \"c90237e9-ced5-3af6-88ea-84aeaa148878\",
    \"manager_id\": \"a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f\",
    \"section_id\": \"21c4122b-d554-3723-966c-6d723ea5293f\",
    \"contract_id\": \"add3503c-ebff-3875-93af-b8c6a695762b\",
    \"salary\": 1,
    \"currency_code\": \"i\",
    \"employee_attendance_setting_id\": \"architecto\",
    \"daily_working_hour\": 4,
    \"is_payroll_person\": true,
    \"is_partial_payment\": false,
    \"use_shift_attendance\": true,
    \"auto_attendance\": false,
    \"can_apply_ot\": false,
    \"has_spouse\": false,
    \"is_active\": false,
    \"verify_status\": false,
    \"child_count\": 84,
    \"service_join_date\": \"2026-02-18T20:43:18\",
    \"payment_type\": \"architecto\",
    \"notification_count\": 16,
    \"sms_enable\": false
}"
const url = new URL(
    "http://localhost/api/v1/employees"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "name": "b",
    "first_name": "n",
    "last_name": "g",
    "known_as": "z",
    "myanmar_name": "m",
    "slug": "architecto",
    "gender": "other",
    "title": "n",
    "date_of_birth": "2026-02-18T20:43:18",
    "work_email": "ashly64@example.com",
    "fcm_token": "architecto",
    "huawei_token": "architecto",
    "employee_number": "architecto",
    "employee_unique_id": "architecto",
    "nrc": "n",
    "passport": "g",
    "phone_code": "z",
    "phone": "miyvdljnikhwaykc",
    "personal_email": "antonio24@example.net",
    "home_address": "architecto",
    "emergency_contact": "architecto",
    "emergency_contact_number": "architecto",
    "nationality_id": 16,
    "status_id": "a4855dc5-0acb-33c3-b921-f4291f719ca0",
    "location_id": "c90237e9-ced5-3af6-88ea-84aeaa148878",
    "manager_id": "a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f",
    "section_id": "21c4122b-d554-3723-966c-6d723ea5293f",
    "contract_id": "add3503c-ebff-3875-93af-b8c6a695762b",
    "salary": 1,
    "currency_code": "i",
    "employee_attendance_setting_id": "architecto",
    "daily_working_hour": 4,
    "is_payroll_person": true,
    "is_partial_payment": false,
    "use_shift_attendance": true,
    "auto_attendance": false,
    "can_apply_ot": false,
    "has_spouse": false,
    "is_active": false,
    "verify_status": false,
    "child_count": 84,
    "service_join_date": "2026-02-18T20:43:18",
    "payment_type": "architecto",
    "notification_count": 16,
    "sms_enable": false
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/employees

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

Must not be greater than 255 characters. Example: b

first_name   string     

Must not be greater than 255 characters. Example: n

last_name   string     

Must not be greater than 255 characters. Example: g

known_as   string  optional    

Must not be greater than 255 characters. Example: z

myanmar_name   string  optional    

Must not be greater than 255 characters. Example: m

slug   string     

Example: architecto

gender   string     

Example: other

Must be one of:
  • male
  • female
  • other
title   string  optional    

Must not be greater than 255 characters. Example: n

date_of_birth   string  optional    

Must be a valid date. Example: 2026-02-18T20:43:18

work_email   string     

Must be a valid email address. Example: ashly64@example.com

fcm_token   string     

Example: architecto

huawei_token   string  optional    

Example: architecto

employee_number   string     

Example: architecto

employee_unique_id   string     

Example: architecto

nrc   string  optional    

Must not be greater than 255 characters. Example: n

passport   string  optional    

Must not be greater than 255 characters. Example: g

phone_code   string     

Must not be greater than 5 characters. Example: z

phone   string     

Must not be greater than 20 characters. Example: miyvdljnikhwaykc

personal_email   string  optional    

Must be a valid email address. Example: antonio24@example.net

home_address   string  optional    

Example: architecto

emergency_contact   string  optional    

Example: architecto

emergency_contact_number   string  optional    

Example: architecto

nationality_id   integer  optional    

Example: 16

status_id   string  optional    

Must be a valid UUID. The id of an existing record in the statuses table. Example: a4855dc5-0acb-33c3-b921-f4291f719ca0

location_id   string  optional    

Must be a valid UUID. Example: c90237e9-ced5-3af6-88ea-84aeaa148878

manager_id   string  optional    

Must be a valid UUID. The id of an existing record in the employees table. Example: a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f

section_id   string  optional    

Must be a valid UUID. Example: 21c4122b-d554-3723-966c-6d723ea5293f

contract_id   string  optional    

Must be a valid UUID. Example: add3503c-ebff-3875-93af-b8c6a695762b

salary   number  optional    

Must be between 0 and 99999999999.99. Example: 1

currency_code   string     

Must not be greater than 3 characters. Example: i

employee_attendance_setting_id   string     

Example: architecto

daily_working_hour   integer     

Must be at least 1. Must not be greater than 24. Example: 4

is_payroll_person   boolean  optional    

Example: true

is_partial_payment   boolean  optional    

Example: false

use_shift_attendance   boolean  optional    

Example: true

auto_attendance   boolean  optional    

Example: false

policy_id   string  optional    
can_apply_ot   boolean  optional    

Example: false

has_spouse   boolean  optional    

Example: false

is_active   boolean  optional    

Example: false

verify_status   boolean  optional    

Example: false

child_count   integer  optional    

Must be at least 0. Example: 84

service_join_date   string  optional    

Must be a valid date. Example: 2026-02-18T20:43:18

payment_type   string  optional    

Example: architecto

notification_count   integer  optional    

Example: 16

sms_enable   boolean  optional    

Example: false

GET api/v1/employees/nrc-codes

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/employees/nrc-codes" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employees/nrc-codes"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "NRC codes retrieved",
    "data": {
        "codes": [
            "AHGAYA",
            "BAMANA",
            "DAPHAYA",
            "HAPANA",
            "KAMANA",
            "KAMATA",
            "KAPATA",
            "KHABADA",
            "KHAPHANA",
            "LAGANA",
            "MAKANA",
            "MAKATA",
            "MAKHABA",
            "MALANA",
            "MAMANA",
            "MATANA",
            "MANYANA",
            "NAMANA",
            "PANADA",
            "PATAAH",
            "PAWANA",
            "SABATA",
            "SADANA",
            "SALANA",
            "SAPABA",
            "TANANA",
            "YABAYA",
            "YAKANA",
            "BALAKHA",
            "DAMASA",
            "LAKANA",
            "MASANA",
            "PHASANA",
            "PHAYASA",
            "YATANA",
            "YATHANA",
            "BAAHNA",
            "BAGALA",
            "BATHASA",
            "KADANA",
            "KAKAYA",
            "KAMAMA",
            "KASAKA",
            "LABANA",
            "LATHANA",
            "MAWATA",
            "PAKANA",
            "SAKALA",
            "THATAKA",
            "WALAMA",
            "YAYATHA",
            "HAKHANA",
            "HTATALA",
            "KAKHANA",
            "KAPALA",
            "MATAPA",
            "PALAWA",
            "PHALANA",
            "SAMANA",
            "TATAHTA",
            "TATANA",
            "TAZANA",
            "YAKHADA",
            "YAZANA",
            "AHTANA",
            "AHYATA",
            "BATALA",
            "DAHANA",
            "DAPAYA",
            "HAMALA",
            "HTAKHANA",
            "HTAPAKHA",
            "KABALA",
            "KALAHTA",
            "KALANA",
            "KALATA",
            "KALAWA",
            "KANANA",
            "KATHANA",
            "KHAOUNA",
            "KHAOUTA",
            "KHAPANA",
            "KHATANA",
            "LAHANA",
            "LAYANA",
            "MAPALA",
            "MATHANA",
            "MAYANA",
            "NAYANA",
            "PALABA",
            "PALANA",
            "PASANA",
            "SAKANA",
            "SALAKA",
            "SAMAYA",
            "TASANA",
            "WALANA",
            "WATHANA",
            "YABANA",
            "YAMAPA",
            "BAPANA",
            "HTAWANA",
            "KALAAH",
            "KASANA",
            "KAYAYA",
            "KHAMAKA",
            "LALANA",
            "MAAHNA",
            "MAAHYA",
            "PAKAMA",
            "PALATA",
            "TATHAYA",
            "THAYAKHA",
            "YAPHANA",
            "AHPHANA",
            "DAOUNA",
            "HTATAPA",
            "KAKANA",
            "KAPAKA",
            "KATAKHA",
            "KAWANA",
            "NATALA",
            "NYALAPA",
            "PAKHANA",
            "PAKHATA",
            "PAMANA",
            "PATANA",
            "PATATA",
            "PHAMANA",
            "TANGANA",
            "THAKANA",
            "THANAPA",
            "THAWATA",
            "WAMANA",
            "YATAYA",
            "ZAKANA",
            "AHLANA",
            "GAGANA",
            "HTALANA",
            "KAHTANA",
            "KHAMANA",
            "MABANA",
            "NGAPHANA",
            "PAKHAKA",
            "PAPHANA",
            "SAPAWA",
            "SAPHANA",
            "SATAYA",
            "TATAKA",
            "THAYANA",
            "YANAKHA",
            "YASAKA",
            "AHMAYA",
            "AHMAZA",
            "DAKHATHA",
            "KHAAHZA",
            "KHAMASA",
            "LAWANA",
            "MAHAMA",
            "MAHTALA",
            "MANAMA",
            "MANATA",
            "MATAYA",
            "MAYAMA",
            "NAHTAKA",
            "NGATHAYA",
            "NGAZANA",
            "NYAOUNA",
            "OUTATHA",
            "PABANA",
            "PABATHA",
            "PAKAKHA",
            "PAOULA",
            "PATHAKA",
            "SAKATA",
            "TAKANA",
            "TAKATA",
            "TATAOU",
            "TATHANA",
            "THAPAKA",
            "THASANA",
            "WATANA",
            "YAMATHA",
            "ZABATHA",
            "ZAYATHA",
            "BALANA",
            "KHASANA",
            "KHAZANA",
            "LAMANA",
            "LAYAYA",
            "MADANA",
            "MALAMA",
            "THAHTANA",
            "THAPHAYA",
            "YAMANA",
            "AHMANA",
            "BATHATA",
            "GAMANA",
            "KAPHANA",
            "KATALA",
            "KATANA",
            "MAAHTA",
            "MAOUNA",
            "MAPATA",
            "PANAKA",
            "SATANA",
            "TAPAWA",
            "THATANA",
            "YATHATA",
            "AHSANA",
            "BAHANA",
            "BATAHTA",
            "DAGAMA",
            "DAGANA",
            "DAGASA",
            "DAGATA",
            "DAGAYA",
            "DALANA",
            "DAPANA",
            "KAKAKA",
            "KAKHAKA",
            "KAMAYA",
            "KHAYANA",
            "LAMATA",
            "LATHAYA",
            "MAGADA",
            "MAGATA",
            "MAYAKA",
            "OUKAMA",
            "OUKATA",
            "PABATA",
            "PAZATA",
            "HSAKAKHA",
            "SAKHANA",
            "SAMAHA",
            "TAMANA",
            "TATATA",
            "THAGAKA",
            "THAKATA",
            "THAKHANA",
            "THALANA",
            "YAPATHA",
            "HAMANA",
            "HAPATA",
            "KAHANA",
            "KALADA",
            "KHALANA",
            "KHAYAHA",
            "LAKHANA",
            "LAKHATA",
            "MAHAYA",
            "MAHTANA",
            "MAHTATA",
            "MAKAHTA",
            "MAKHANA",
            "MAKHATA",
            "MALATA",
            "MAMAHTA",
            "MAMATA",
            "MANANA",
            "MANGANA",
            "MAPANA",
            "MAPHANA",
            "MAPHATA",
            "MASATA",
            "MATATA",
            "MAYAHTA",
            "MAYATA",
            "NAKHANA",
            "NAKHATA",
            "NAMATA",
            "NAPHANA",
            "NASANA",
            "NATANA",
            "NATAYA",
            "NYAYANA",
            "PAPAKA",
            "PASATA",
            "PATAYA",
            "PAYANA",
            "PHAKHANA",
            "SASANA",
            "TAKHALA",
            "TALANA",
            "TAMANYA",
            "TAYANA",
            "THANANA",
            "YANGANA",
            "YASANA",
            "AHGAPA",
            "AHMATA",
            "BAKALA",
            "DADAYA",
            "DANAPHA",
            "HAKAKA",
            "HATHATA",
            "KAKAHTA",
            "KAPANA",
            "LAPATA",
            "MAAHPA",
            "MAMAKA",
            "NGAPATA",
            "NGASANA",
            "NGATHAKHA",
            "NYATANA",
            "PASALA",
            "PATHANA",
            "PATHAYA",
            "PHAPANA",
            "THAPANA",
            "WAKHAMA",
            "YATHAYA",
            "ZALANA",
            "PHAKANA",
            "SABANA",
            "PHAAHNA",
            "HSAMAYA",
            "HSALAKA",
            "YATHAKA",
            "NGAYAKA",
            "TANATHA",
            "KATATA",
            "PATALA",
            "PATASA",
            "AUTATHA",
            "KAKHAMA",
            "PANATA",
            "SAKAKHA",
            "AHPANA",
            "AHTHAYA",
            "HAHANA",
            "MAHSATA",
            "YANYANA",
            "PATHAAH"
        ]
    }
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/employees/nrc-codes

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/employees/phone-codes

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/employees/phone-codes" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employees/phone-codes"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Phone codes retrieved",
    "data": [
        {
            "dial_code": "+93",
            "code": "AF"
        },
        {
            "dial_code": "+358",
            "code": "AX"
        },
        {
            "dial_code": "+355",
            "code": "AL"
        },
        {
            "dial_code": "+213",
            "code": "DZ"
        },
        {
            "dial_code": "+1684",
            "code": "AS"
        },
        {
            "dial_code": "+376",
            "code": "AD"
        },
        {
            "dial_code": "+244",
            "code": "AO"
        },
        {
            "dial_code": "+1264",
            "code": "AI"
        },
        {
            "dial_code": "+672",
            "code": "AQ"
        },
        {
            "dial_code": "+1268",
            "code": "AG"
        },
        {
            "dial_code": "+54",
            "code": "AR"
        },
        {
            "dial_code": "+374",
            "code": "AM"
        },
        {
            "dial_code": "+297",
            "code": "AW"
        },
        {
            "dial_code": "+61",
            "code": "AU"
        },
        {
            "dial_code": "+43",
            "code": "AT"
        },
        {
            "dial_code": "+994",
            "code": "AZ"
        },
        {
            "dial_code": "+1242",
            "code": "BS"
        },
        {
            "dial_code": "+973",
            "code": "BH"
        },
        {
            "dial_code": "+880",
            "code": "BD"
        },
        {
            "dial_code": "+1246",
            "code": "BB"
        },
        {
            "dial_code": "+375",
            "code": "BY"
        },
        {
            "dial_code": "+32",
            "code": "BE"
        },
        {
            "dial_code": "+501",
            "code": "BZ"
        },
        {
            "dial_code": "+229",
            "code": "BJ"
        },
        {
            "dial_code": "+1441",
            "code": "BM"
        },
        {
            "dial_code": "+975",
            "code": "BT"
        },
        {
            "dial_code": "+591",
            "code": "BO"
        },
        {
            "dial_code": "+387",
            "code": "BA"
        },
        {
            "dial_code": "+267",
            "code": "BW"
        },
        {
            "dial_code": "+55",
            "code": "BR"
        },
        {
            "dial_code": "+246",
            "code": "IO"
        },
        {
            "dial_code": "+673",
            "code": "BN"
        },
        {
            "dial_code": "+359",
            "code": "BG"
        },
        {
            "dial_code": "+226",
            "code": "BF"
        },
        {
            "dial_code": "+257",
            "code": "BI"
        },
        {
            "dial_code": "+855",
            "code": "KH"
        },
        {
            "dial_code": "+237",
            "code": "CM"
        },
        {
            "dial_code": "+1",
            "code": "CA"
        },
        {
            "dial_code": "+238",
            "code": "CV"
        },
        {
            "dial_code": "+ 345",
            "code": "KY"
        },
        {
            "dial_code": "+236",
            "code": "CF"
        },
        {
            "dial_code": "+235",
            "code": "TD"
        },
        {
            "dial_code": "+56",
            "code": "CL"
        },
        {
            "dial_code": "+86",
            "code": "CN"
        },
        {
            "dial_code": "+61",
            "code": "CX"
        },
        {
            "dial_code": "+61",
            "code": "CC"
        },
        {
            "dial_code": "+57",
            "code": "CO"
        },
        {
            "dial_code": "+269",
            "code": "KM"
        },
        {
            "dial_code": "+242",
            "code": "CG"
        },
        {
            "dial_code": "+243",
            "code": "CD"
        },
        {
            "dial_code": "+682",
            "code": "CK"
        },
        {
            "dial_code": "+506",
            "code": "CR"
        },
        {
            "dial_code": "+225",
            "code": "CI"
        },
        {
            "dial_code": "+385",
            "code": "HR"
        },
        {
            "dial_code": "+53",
            "code": "CU"
        },
        {
            "dial_code": "+357",
            "code": "CY"
        },
        {
            "dial_code": "+420",
            "code": "CZ"
        },
        {
            "dial_code": "+45",
            "code": "DK"
        },
        {
            "dial_code": "+253",
            "code": "DJ"
        },
        {
            "dial_code": "+1767",
            "code": "DM"
        },
        {
            "dial_code": "+1849",
            "code": "DO"
        },
        {
            "dial_code": "+593",
            "code": "EC"
        },
        {
            "dial_code": "+20",
            "code": "EG"
        },
        {
            "dial_code": "+503",
            "code": "SV"
        },
        {
            "dial_code": "+240",
            "code": "GQ"
        },
        {
            "dial_code": "+291",
            "code": "ER"
        },
        {
            "dial_code": "+372",
            "code": "EE"
        },
        {
            "dial_code": "+251",
            "code": "ET"
        },
        {
            "dial_code": "+500",
            "code": "FK"
        },
        {
            "dial_code": "+298",
            "code": "FO"
        },
        {
            "dial_code": "+679",
            "code": "FJ"
        },
        {
            "dial_code": "+358",
            "code": "FI"
        },
        {
            "dial_code": "+33",
            "code": "FR"
        },
        {
            "dial_code": "+594",
            "code": "GF"
        },
        {
            "dial_code": "+689",
            "code": "PF"
        },
        {
            "dial_code": "+241",
            "code": "GA"
        },
        {
            "dial_code": "+220",
            "code": "GM"
        },
        {
            "dial_code": "+995",
            "code": "GE"
        },
        {
            "dial_code": "+49",
            "code": "DE"
        },
        {
            "dial_code": "+233",
            "code": "GH"
        },
        {
            "dial_code": "+350",
            "code": "GI"
        },
        {
            "dial_code": "+30",
            "code": "GR"
        },
        {
            "dial_code": "+299",
            "code": "GL"
        },
        {
            "dial_code": "+1473",
            "code": "GD"
        },
        {
            "dial_code": "+590",
            "code": "GP"
        },
        {
            "dial_code": "+1671",
            "code": "GU"
        },
        {
            "dial_code": "+502",
            "code": "GT"
        },
        {
            "dial_code": "+44",
            "code": "GG"
        },
        {
            "dial_code": "+224",
            "code": "GN"
        },
        {
            "dial_code": "+245",
            "code": "GW"
        },
        {
            "dial_code": "+595",
            "code": "GY"
        },
        {
            "dial_code": "+509",
            "code": "HT"
        },
        {
            "dial_code": "+379",
            "code": "VA"
        },
        {
            "dial_code": "+504",
            "code": "HN"
        },
        {
            "dial_code": "+852",
            "code": "HK"
        },
        {
            "dial_code": "+36",
            "code": "HU"
        },
        {
            "dial_code": "+354",
            "code": "IS"
        },
        {
            "dial_code": "+91",
            "code": "IN"
        },
        {
            "dial_code": "+62",
            "code": "ID"
        },
        {
            "dial_code": "+98",
            "code": "IR"
        },
        {
            "dial_code": "+964",
            "code": "IQ"
        },
        {
            "dial_code": "+353",
            "code": "IE"
        },
        {
            "dial_code": "+44",
            "code": "IM"
        },
        {
            "dial_code": "+972",
            "code": "IL"
        },
        {
            "dial_code": "+39",
            "code": "IT"
        },
        {
            "dial_code": "+1876",
            "code": "JM"
        },
        {
            "dial_code": "+81",
            "code": "JP"
        },
        {
            "dial_code": "+44",
            "code": "JE"
        },
        {
            "dial_code": "+962",
            "code": "JO"
        },
        {
            "dial_code": "+77",
            "code": "KZ"
        },
        {
            "dial_code": "+254",
            "code": "KE"
        },
        {
            "dial_code": "+686",
            "code": "KI"
        },
        {
            "dial_code": "+850",
            "code": "KP"
        },
        {
            "dial_code": "+82",
            "code": "KR"
        },
        {
            "dial_code": "+965",
            "code": "KW"
        },
        {
            "dial_code": "+996",
            "code": "KG"
        },
        {
            "dial_code": "+856",
            "code": "LA"
        },
        {
            "dial_code": "+371",
            "code": "LV"
        },
        {
            "dial_code": "+961",
            "code": "LB"
        },
        {
            "dial_code": "+266",
            "code": "LS"
        },
        {
            "dial_code": "+231",
            "code": "LR"
        },
        {
            "dial_code": "+218",
            "code": "LY"
        },
        {
            "dial_code": "+423",
            "code": "LI"
        },
        {
            "dial_code": "+370",
            "code": "LT"
        },
        {
            "dial_code": "+352",
            "code": "LU"
        },
        {
            "dial_code": "+853",
            "code": "MO"
        },
        {
            "dial_code": "+389",
            "code": "MK"
        },
        {
            "dial_code": "+261",
            "code": "MG"
        },
        {
            "dial_code": "+265",
            "code": "MW"
        },
        {
            "dial_code": "+60",
            "code": "MY"
        },
        {
            "dial_code": "+960",
            "code": "MV"
        },
        {
            "dial_code": "+223",
            "code": "ML"
        },
        {
            "dial_code": "+356",
            "code": "MT"
        },
        {
            "dial_code": "+692",
            "code": "MH"
        },
        {
            "dial_code": "+596",
            "code": "MQ"
        },
        {
            "dial_code": "+222",
            "code": "MR"
        },
        {
            "dial_code": "+230",
            "code": "MU"
        },
        {
            "dial_code": "+262",
            "code": "YT"
        },
        {
            "dial_code": "+52",
            "code": "MX"
        },
        {
            "dial_code": "+691",
            "code": "FM"
        },
        {
            "dial_code": "+373",
            "code": "MD"
        },
        {
            "dial_code": "+377",
            "code": "MC"
        },
        {
            "dial_code": "+976",
            "code": "MN"
        },
        {
            "dial_code": "+382",
            "code": "ME"
        },
        {
            "dial_code": "+1664",
            "code": "MS"
        },
        {
            "dial_code": "+212",
            "code": "MA"
        },
        {
            "dial_code": "+258",
            "code": "MZ"
        },
        {
            "dial_code": "+95",
            "code": "MM"
        },
        {
            "dial_code": "+264",
            "code": "NA"
        },
        {
            "dial_code": "+674",
            "code": "NR"
        },
        {
            "dial_code": "+977",
            "code": "NP"
        },
        {
            "dial_code": "+31",
            "code": "NL"
        },
        {
            "dial_code": "+599",
            "code": "AN"
        },
        {
            "dial_code": "+687",
            "code": "NC"
        },
        {
            "dial_code": "+64",
            "code": "NZ"
        },
        {
            "dial_code": "+505",
            "code": "NI"
        },
        {
            "dial_code": "+227",
            "code": "NE"
        },
        {
            "dial_code": "+234",
            "code": "NG"
        },
        {
            "dial_code": "+683",
            "code": "NU"
        },
        {
            "dial_code": "+672",
            "code": "NF"
        },
        {
            "dial_code": "+1670",
            "code": "MP"
        },
        {
            "dial_code": "+47",
            "code": "NO"
        },
        {
            "dial_code": "+968",
            "code": "OM"
        },
        {
            "dial_code": "+92",
            "code": "PK"
        },
        {
            "dial_code": "+680",
            "code": "PW"
        },
        {
            "dial_code": "+970",
            "code": "PS"
        },
        {
            "dial_code": "+507",
            "code": "PA"
        },
        {
            "dial_code": "+675",
            "code": "PG"
        },
        {
            "dial_code": "+595",
            "code": "PY"
        },
        {
            "dial_code": "+51",
            "code": "PE"
        },
        {
            "dial_code": "+63",
            "code": "PH"
        },
        {
            "dial_code": "+872",
            "code": "PN"
        },
        {
            "dial_code": "+48",
            "code": "PL"
        },
        {
            "dial_code": "+351",
            "code": "PT"
        },
        {
            "dial_code": "+1939",
            "code": "PR"
        },
        {
            "dial_code": "+974",
            "code": "QA"
        },
        {
            "dial_code": "+40",
            "code": "RO"
        },
        {
            "dial_code": "+7",
            "code": "RU"
        },
        {
            "dial_code": "+250",
            "code": "RW"
        },
        {
            "dial_code": "+262",
            "code": "RE"
        },
        {
            "dial_code": "+590",
            "code": "BL"
        },
        {
            "dial_code": "+290",
            "code": "SH"
        },
        {
            "dial_code": "+1869",
            "code": "KN"
        },
        {
            "dial_code": "+1758",
            "code": "LC"
        },
        {
            "dial_code": "+590",
            "code": "MF"
        },
        {
            "dial_code": "+508",
            "code": "PM"
        },
        {
            "dial_code": "+1784",
            "code": "VC"
        },
        {
            "dial_code": "+685",
            "code": "WS"
        },
        {
            "dial_code": "+378",
            "code": "SM"
        },
        {
            "dial_code": "+239",
            "code": "ST"
        },
        {
            "dial_code": "+966",
            "code": "SA"
        },
        {
            "dial_code": "+221",
            "code": "SN"
        },
        {
            "dial_code": "+381",
            "code": "RS"
        },
        {
            "dial_code": "+248",
            "code": "SC"
        },
        {
            "dial_code": "+232",
            "code": "SL"
        },
        {
            "dial_code": "+65",
            "code": "SG"
        },
        {
            "dial_code": "+421",
            "code": "SK"
        },
        {
            "dial_code": "+386",
            "code": "SI"
        },
        {
            "dial_code": "+677",
            "code": "SB"
        },
        {
            "dial_code": "+252",
            "code": "SO"
        },
        {
            "dial_code": "+27",
            "code": "ZA"
        },
        {
            "dial_code": "+211",
            "code": "SS"
        },
        {
            "dial_code": "+500",
            "code": "GS"
        },
        {
            "dial_code": "+34",
            "code": "ES"
        },
        {
            "dial_code": "+94",
            "code": "LK"
        },
        {
            "dial_code": "+249",
            "code": "SD"
        },
        {
            "dial_code": "+597",
            "code": "SR"
        },
        {
            "dial_code": "+47",
            "code": "SJ"
        },
        {
            "dial_code": "+268",
            "code": "SZ"
        },
        {
            "dial_code": "+46",
            "code": "SE"
        },
        {
            "dial_code": "+41",
            "code": "CH"
        },
        {
            "dial_code": "+963",
            "code": "SY"
        },
        {
            "dial_code": "+886",
            "code": "TW"
        },
        {
            "dial_code": "+992",
            "code": "TJ"
        },
        {
            "dial_code": "+255",
            "code": "TZ"
        },
        {
            "dial_code": "+66",
            "code": "TH"
        },
        {
            "dial_code": "+670",
            "code": "TL"
        },
        {
            "dial_code": "+228",
            "code": "TG"
        },
        {
            "dial_code": "+690",
            "code": "TK"
        },
        {
            "dial_code": "+676",
            "code": "TO"
        },
        {
            "dial_code": "+1868",
            "code": "TT"
        },
        {
            "dial_code": "+216",
            "code": "TN"
        },
        {
            "dial_code": "+90",
            "code": "TR"
        },
        {
            "dial_code": "+993",
            "code": "TM"
        },
        {
            "dial_code": "+1649",
            "code": "TC"
        },
        {
            "dial_code": "+688",
            "code": "TV"
        },
        {
            "dial_code": "+256",
            "code": "UG"
        },
        {
            "dial_code": "+380",
            "code": "UA"
        },
        {
            "dial_code": "+971",
            "code": "AE"
        },
        {
            "dial_code": "+44",
            "code": "GB"
        },
        {
            "dial_code": "+1",
            "code": "US"
        },
        {
            "dial_code": "+598",
            "code": "UY"
        },
        {
            "dial_code": "+998",
            "code": "UZ"
        },
        {
            "dial_code": "+678",
            "code": "VU"
        },
        {
            "dial_code": "+58",
            "code": "VE"
        },
        {
            "dial_code": "+84",
            "code": "VN"
        },
        {
            "dial_code": "+1284",
            "code": "VG"
        },
        {
            "dial_code": "+1340",
            "code": "VI"
        },
        {
            "dial_code": "+681",
            "code": "WF"
        },
        {
            "dial_code": "+967",
            "code": "YE"
        },
        {
            "dial_code": "+260",
            "code": "ZM"
        },
        {
            "dial_code": "+263",
            "code": "ZW"
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/employees/phone-codes

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/employees/managers

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/employees/managers" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employees/managers"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Managers retrieved",
    "data": [
        {
            "id": "843e6280-bf71-11e9-9489-d7bf3defe876",
            "name": "Yoma Connect",
            "employee_unique_id": "9010002"
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/employees/managers

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/employees/{id}

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/employees/BcECdBDA-CdED-bFEA-CbCE-BcCdeBfbbebc" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employees/BcECdBDA-CdED-bFEA-CbCE-BcCdeBfbbebc"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "The requested resource was not found."
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/employees/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the employee. Example: BcECdBDA-CdED-bFEA-CbCE-BcCdeBfbbebc

PUT api/v1/employees/{id}

requires authentication

Example request:
curl --request PUT \
    "http://localhost/api/v1/employees/BcECdBDA-CdED-bFEA-CbCE-BcCdeBfbbebc" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"title\": \"architecto\",
    \"name\": \"n\",
    \"myanmar_name\": \"g\",
    \"phone\": \"architecto\",
    \"phone_code\": \"architecto\",
    \"passport\": \"n\",
    \"old_nrc\": \"g\",
    \"gender\": \"architecto\",
    \"attendance_setting_type_id\": \"a4855dc5-0acb-33c3-b921-f4291f719ca0\",
    \"profile_image_id\": \"c90237e9-ced5-3af6-88ea-84aeaa148878\",
    \"nationality_id\": \"architecto\",
    \"date_of_birth\": \"1998-03-14\",
    \"marital_status\": \"architecto\",
    \"status_id\": \"architecto\",
    \"policy_id\": \"architecto\",
    \"add_unused_days_to_next_year\": \"architecto\",
    \"home_address\": \"architecto\",
    \"permanent_address\": \"architecto\",
    \"father_name\": \"architecto\",
    \"notice_period\": \"architecto\",
    \"position_id\": \"architecto\",
    \"division_id\": \"a4855dc5-0acb-33c3-b921-f4291f719ca0\",
    \"entity_id\": \"c90237e9-ced5-3af6-88ea-84aeaa148878\",
    \"department_id\": \"a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f\",
    \"location_id\": \"21c4122b-d554-3723-966c-6d723ea5293f\",
    \"work_location_id\": \"add3503c-ebff-3875-93af-b8c6a695762b\",
    \"work_township_id\": \"c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a\",
    \"password\": \"xwmi\\/#iw\\/kXaz\",
    \"known_as\": \"v\",
    \"personal_email\": \"leo34@example.net\",
    \"work_email\": \"pfritsch@example.com\",
    \"employee_number\": \"c\",
    \"device_id\": \"architecto\",
    \"emergency_contact\": \"architecto\",
    \"emergency_contact_number\": \"architecto\",
    \"contract_id\": \"a4855dc5-0acb-33c3-b921-f4291f719ca0\",
    \"service_join_date\": \"2026-02-18\",
    \"asset_id\": \"c90237e9-ced5-3af6-88ea-84aeaa148878\",
    \"daily_schedule_start\": \"iyvdlj\",
    \"daily_schedule_end\": \"nikhwa\",
    \"requires_approval_employee_id\": \"10b3f4c6-2aaf-32e1-a52d-6bf43d9ddd70\",
    \"annual_leave\": 16,
    \"casual_leave\": 16,
    \"medical_leave\": 16,
    \"auto_attendance\": false,
    \"verify_status\": false,
    \"sms_enable\": false,
    \"spouse_name\": \"n\",
    \"government_ec_status\": false,
    \"government_ec_commenced_date\": \"2026-02-18\",
    \"policy_start_date\": \"2026-02-18\",
    \"last_rejoin_date\": \"2026-02-18\",
    \"emergency_contact_relationship\": \"g\",
    \"emergency_contact_number_code\": \"zmiyvd\",
    \"passport_expiration\": \"2026-02-18\",
    \"visa_id\": \"l\",
    \"visa_expire\": \"2026-02-18\",
    \"work_phone_code\": \"jnikhw\",
    \"work_phone\": \"a\",
    \"job_description_code\": \"y\",
    \"entity_job_grade_id\": \"e2398df3-051c-3810-a269-3a15e327b316\",
    \"yoma_grp_job_grade_id\": \"a232abbe-3006-3f67-bed4-124abab91dce\",
    \"show_entity_job_grade\": false,
    \"show_yoma_grp_job_grade\": false,
    \"use_shift_attendance\": false,
    \"shift_duration_id\": \"bfc53181-d647-36b2-9080-f9c2b76006f4\",
    \"phh_employee_number\": \"p\",
    \"phh_fte\": \"w\",
    \"phh_staff_category\": \"l\",
    \"phh_hrn\": \"v\",
    \"blood_type\": \"q\",
    \"phh_clinical_experience_start_year\": \"2026\",
    \"phh_medical_license_expiry_date\": \"2026-02-18\",
    \"section_id\": \"c68e0767-6220-31fb-a489-61093ff79529\",
    \"manager_id\": \"fa253524-dd6a-3fdb-a788-0cabcf134db7\",
    \"owner_id\": \"665a39c0-48af-31f1-a546-aa4f41372488\"
}"
const url = new URL(
    "http://localhost/api/v1/employees/BcECdBDA-CdED-bFEA-CbCE-BcCdeBfbbebc"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "title": "architecto",
    "name": "n",
    "myanmar_name": "g",
    "phone": "architecto",
    "phone_code": "architecto",
    "passport": "n",
    "old_nrc": "g",
    "gender": "architecto",
    "attendance_setting_type_id": "a4855dc5-0acb-33c3-b921-f4291f719ca0",
    "profile_image_id": "c90237e9-ced5-3af6-88ea-84aeaa148878",
    "nationality_id": "architecto",
    "date_of_birth": "1998-03-14",
    "marital_status": "architecto",
    "status_id": "architecto",
    "policy_id": "architecto",
    "add_unused_days_to_next_year": "architecto",
    "home_address": "architecto",
    "permanent_address": "architecto",
    "father_name": "architecto",
    "notice_period": "architecto",
    "position_id": "architecto",
    "division_id": "a4855dc5-0acb-33c3-b921-f4291f719ca0",
    "entity_id": "c90237e9-ced5-3af6-88ea-84aeaa148878",
    "department_id": "a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f",
    "location_id": "21c4122b-d554-3723-966c-6d723ea5293f",
    "work_location_id": "add3503c-ebff-3875-93af-b8c6a695762b",
    "work_township_id": "c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a",
    "password": "xwmi\/#iw\/kXaz",
    "known_as": "v",
    "personal_email": "leo34@example.net",
    "work_email": "pfritsch@example.com",
    "employee_number": "c",
    "device_id": "architecto",
    "emergency_contact": "architecto",
    "emergency_contact_number": "architecto",
    "contract_id": "a4855dc5-0acb-33c3-b921-f4291f719ca0",
    "service_join_date": "2026-02-18",
    "asset_id": "c90237e9-ced5-3af6-88ea-84aeaa148878",
    "daily_schedule_start": "iyvdlj",
    "daily_schedule_end": "nikhwa",
    "requires_approval_employee_id": "10b3f4c6-2aaf-32e1-a52d-6bf43d9ddd70",
    "annual_leave": 16,
    "casual_leave": 16,
    "medical_leave": 16,
    "auto_attendance": false,
    "verify_status": false,
    "sms_enable": false,
    "spouse_name": "n",
    "government_ec_status": false,
    "government_ec_commenced_date": "2026-02-18",
    "policy_start_date": "2026-02-18",
    "last_rejoin_date": "2026-02-18",
    "emergency_contact_relationship": "g",
    "emergency_contact_number_code": "zmiyvd",
    "passport_expiration": "2026-02-18",
    "visa_id": "l",
    "visa_expire": "2026-02-18",
    "work_phone_code": "jnikhw",
    "work_phone": "a",
    "job_description_code": "y",
    "entity_job_grade_id": "e2398df3-051c-3810-a269-3a15e327b316",
    "yoma_grp_job_grade_id": "a232abbe-3006-3f67-bed4-124abab91dce",
    "show_entity_job_grade": false,
    "show_yoma_grp_job_grade": false,
    "use_shift_attendance": false,
    "shift_duration_id": "bfc53181-d647-36b2-9080-f9c2b76006f4",
    "phh_employee_number": "p",
    "phh_fte": "w",
    "phh_staff_category": "l",
    "phh_hrn": "v",
    "blood_type": "q",
    "phh_clinical_experience_start_year": "2026",
    "phh_medical_license_expiry_date": "2026-02-18",
    "section_id": "c68e0767-6220-31fb-a489-61093ff79529",
    "manager_id": "fa253524-dd6a-3fdb-a788-0cabcf134db7",
    "owner_id": "665a39c0-48af-31f1-a546-aa4f41372488"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

PUT api/v1/employees/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the employee. Example: BcECdBDA-CdED-bFEA-CbCE-BcCdeBfbbebc

Body Parameters

title   string     

Example: architecto

name   string     

Must not be greater than 255 characters. Example: n

myanmar_name   string  optional    

Must not be greater than 255 characters. Example: g

phone   string     

Example: architecto

phone_code   string     

Example: architecto

nrc   string  optional    
passport   string  optional    

Must not be greater than 255 characters. Example: n

old_nrc   string  optional    

Must not be greater than 255 characters. Example: g

tba   string  optional    

This field is required when none of nrc, old_nrc, and passport are present.

gender   string     

Example: architecto

attendance_setting_type_id   string  optional    

Must be a valid UUID. Example: a4855dc5-0acb-33c3-b921-f4291f719ca0

profile_image_id   string  optional    

Must be a valid UUID. Example: c90237e9-ced5-3af6-88ea-84aeaa148878

profile_default   string  optional    
nationality_id   string     

Example: architecto

date_of_birth   string     

Must not be greater than 50 characters. Must be a date before 18 years ago. Example: 1998-03-14

marital_status   string     

Example: architecto

status_id   string     

Example: architecto

policy_id   string     

Example: architecto

add_unused_days_to_next_year   string     

Example: architecto

home_address   string     

Example: architecto

permanent_address   string     

Example: architecto

father_name   string     

Example: architecto

notice_period   string     

Example: architecto

position_id   string     

Example: architecto

division_id   string     

Must be a valid UUID. Example: a4855dc5-0acb-33c3-b921-f4291f719ca0

entity_id   string     

Must be a valid UUID. Example: c90237e9-ced5-3af6-88ea-84aeaa148878

department_id   string     

Must be a valid UUID. Example: a1a0a47d-e8c3-3cf0-8e6e-c1ff9dca5d1f

location_id   string  optional    

Must be a valid UUID. Example: 21c4122b-d554-3723-966c-6d723ea5293f

work_location_id   string  optional    

Must be a valid UUID. Example: add3503c-ebff-3875-93af-b8c6a695762b

work_township_id   string  optional    

Must be a valid UUID. Example: c3b6b42e-3a0f-3935-b28d-cb767f8a2a0a

township_id   string  optional    
permanent_township_id   string  optional    
password   string  optional    

Must be at least 6 characters. Example: xwmi/#iw/kXaz

known_as   string  optional    

Must not be greater than 255 characters. Example: v

personal_email   string  optional    

Must be a valid email address. Must not be greater than 255 characters. Example: leo34@example.net

work_email   string     

Must be a valid email address. Must not be greater than 255 characters. Example: pfritsch@example.com

employee_number   string  optional    

Must not be greater than 255 characters. Example: c

device_id   string  optional    

Example: architecto

emergency_contact   string  optional    

Example: architecto

emergency_contact_number   string  optional    

Example: architecto

contract_id   string  optional    

Must be a valid UUID. Example: a4855dc5-0acb-33c3-b921-f4291f719ca0

service_join_date   string  optional    

Must be a valid date in the format Y-m-d. Example: 2026-02-18

asset_id   string  optional    

Must be a valid UUID. Example: c90237e9-ced5-3af6-88ea-84aeaa148878

daily_schedule_start   string  optional    

Must not be greater than 10 characters. Example: iyvdlj

daily_schedule_end   string  optional    

Must not be greater than 10 characters. Example: nikhwa

can_apply_ot   string  optional    
daily_working_hour   string  optional    
global_wave_id   string  optional    
due_leave   string  optional    
requires_approval_employee_id   string  optional    

Must be a valid UUID. Example: 10b3f4c6-2aaf-32e1-a52d-6bf43d9ddd70

annual_leave   integer  optional    

Example: 16

casual_leave   integer  optional    

Example: 16

medical_leave   integer  optional    

Example: 16

auto_attendance   boolean  optional    

Example: false

verify_status   boolean  optional    

Example: false

sms_enable   boolean  optional    

Example: false

no_of_children   string  optional    
spouse_name   string  optional    

Must not be greater than 255 characters. Example: n

government_ec_status   boolean  optional    

Example: false

government_ec_commenced_date   string  optional    

Must be a valid date in the format Y-m-d. Example: 2026-02-18

probation_period   string  optional    
policy_start_date   string  optional    

Must be a valid date in the format Y-m-d. Example: 2026-02-18

last_rejoin_date   string  optional    

Must be a valid date in the format Y-m-d. Example: 2026-02-18

emergency_contact_relationship   string  optional    

Must not be greater than 255 characters. Example: g

emergency_contact_number_code   string  optional    

Must not be greater than 10 characters. Example: zmiyvd

passport_country   string  optional    
passport_expiration   string  optional    

Must be a valid date in the format Y-m-d. Example: 2026-02-18

visa_id   string  optional    

Must not be greater than 255 characters. Example: l

visa_expire   string  optional    

Must be a valid date in the format Y-m-d. Example: 2026-02-18

work_phone_code   string  optional    

Must not be greater than 10 characters. Example: jnikhw

work_phone   string  optional    

Must not be greater than 255 characters. Example: a

job_description_code   string  optional    

Must not be greater than 255 characters. Example: y

entity_job_grade_id   string  optional    

Must be a valid UUID. Example: e2398df3-051c-3810-a269-3a15e327b316

yoma_grp_job_grade_id   string  optional    

Must be a valid UUID. Example: a232abbe-3006-3f67-bed4-124abab91dce

show_entity_job_grade   boolean  optional    

Example: false

show_yoma_grp_job_grade   boolean  optional    

Example: false

use_shift_attendance   boolean  optional    

Example: false

shift_duration_id   string  optional    

Must be a valid UUID. Example: bfc53181-d647-36b2-9080-f9c2b76006f4

ssb_company_name   string  optional    
ssb_company_no   string  optional    
phh_employee_number   string  optional    

Must not be greater than 255 characters. Example: p

phh_fte   string  optional    

Must not be greater than 255 characters. Example: w

phh_staff_category   string  optional    

Must not be greater than 255 characters. Example: l

phh_hrn   string  optional    

Must not be greater than 255 characters. Example: v

blood_type   string  optional    

Must not be greater than 255 characters. Example: q

phh_clinical_experience_start_year   string  optional    

Must be a valid date in the format Y. Example: 2026

phh_medical_license_expiry_date   string  optional    

Must be a valid date in the format Y-m-d. Example: 2026-02-18

status   string  optional    
section_id   string  optional    

Must be a valid UUID. Example: c68e0767-6220-31fb-a489-61093ff79529

manager_id   string  optional    

Must be a valid UUID. The id of an existing record in the employees table. Example: fa253524-dd6a-3fdb-a788-0cabcf134db7

owner_id   string  optional    

Must be a valid UUID. Example: 665a39c0-48af-31f1-a546-aa4f41372488

is_active   string  optional    

DELETE api/v1/employees/{id}

requires authentication

Example request:
curl --request DELETE \
    "http://localhost/api/v1/employees/BcECdBDA-CdED-bFEA-CbCE-BcCdeBfbbebc" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employees/BcECdBDA-CdED-bFEA-CbCE-BcCdeBfbbebc"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

DELETE api/v1/employees/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the employee. Example: BcECdBDA-CdED-bFEA-CbCE-BcCdeBfbbebc

GET api/v1/employees/{slug}

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/employees/b8w:-1g):-yy):-s4:-4y" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employees/b8w:-1g):-yy):-s4:-4y"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "The requested resource was not found."
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/employees/{slug}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

slug   string     

The slug of the employee. Example: b8w:-1g):-yy):-s4:-4y

POST api/v1/employees/profile-image/delete/{id}

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/employees/profile-image/delete/BcECdBDA-CdED-bFEA-CbCE-BcCdeBfbbebc" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employees/profile-image/delete/BcECdBDA-CdED-bFEA-CbCE-BcCdeBfbbebc"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/employees/profile-image/delete/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the delete. Example: BcECdBDA-CdED-bFEA-CbCE-BcCdeBfbbebc

POST api/v1/employees/profile-image/upload

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/employees/profile-image/upload" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employees/profile-image/upload"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/employees/profile-image/upload

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/employees/import

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/employees/import" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "file=@/private/var/folders/vz/jwk7y6w553z0j9jj1l69bq600000gn/T/php4b9lpp31efa92OKQ6kE" 
const url = new URL(
    "http://localhost/api/v1/employees/import"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('file', document.querySelector('input[name="file"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/employees/import

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

file   file     

Must be a file. Must not be greater than 10240 kilobytes. Example: /private/var/folders/vz/jwk7y6w553z0j9jj1l69bq600000gn/T/php4b9lpp31efa92OKQ6kE

POST api/v1/employees/import-update

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/employees/import-update" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "file=@/private/var/folders/vz/jwk7y6w553z0j9jj1l69bq600000gn/T/phpgh9dp9jlh9b69HJ5k52" 
const url = new URL(
    "http://localhost/api/v1/employees/import-update"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('file', document.querySelector('input[name="file"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/employees/import-update

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

file   file     

Must be a file. Must not be greater than 10240 kilobytes. Example: /private/var/folders/vz/jwk7y6w553z0j9jj1l69bq600000gn/T/phpgh9dp9jlh9b69HJ5k52

POST api/v1/employees/import-additional-info

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/employees/import-additional-info" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "file=@/private/var/folders/vz/jwk7y6w553z0j9jj1l69bq600000gn/T/php7ndlmf1f2n599cllCkJ" 
const url = new URL(
    "http://localhost/api/v1/employees/import-additional-info"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('file', document.querySelector('input[name="file"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/employees/import-additional-info

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

file   file     

Must be a file. Must not be greater than 10240 kilobytes. Example: /private/var/folders/vz/jwk7y6w553z0j9jj1l69bq600000gn/T/php7ndlmf1f2n599cllCkJ

POST api/v1/employees/terminate/file-upload

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/employees/terminate/file-upload" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"type\": \"architecto\",
    \"name\": \"n\",
    \"employee_id\": \"6b72fe4a-5b40-307c-bc24-f79acf9a1bb9\",
    \"employee_unique_id\": \"architecto\",
    \"file\": \"architecto\"
}"
const url = new URL(
    "http://localhost/api/v1/employees/terminate/file-upload"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "type": "architecto",
    "name": "n",
    "employee_id": "6b72fe4a-5b40-307c-bc24-f79acf9a1bb9",
    "employee_unique_id": "architecto",
    "file": "architecto"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/employees/terminate/file-upload

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

type   string  optional    

Example: architecto

name   string     

Must not be greater than 255 characters. Example: n

employee_id   string     

Must be a valid UUID. The id of an existing record in the employees table. Example: 6b72fe4a-5b40-307c-bc24-f79acf9a1bb9

employee_unique_id   string     

Example: architecto

file   string     

Example: architecto

GET api/v1/employees/export

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/employees/export" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"start_date\": \"2026-02-18\",
    \"end_date\": \"2052-03-13\",
    \"location\": [
        \"architecto\"
    ],
    \"department\": [
        \"architecto\"
    ],
    \"position\": [
        \"architecto\"
    ],
    \"status\": [
        \"Probation\"
    ],
    \"search\": \"n\",
    \"format\": \"pdf\",
    \"employees\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "http://localhost/api/v1/employees/export"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "start_date": "2026-02-18",
    "end_date": "2052-03-13",
    "location": [
        "architecto"
    ],
    "department": [
        "architecto"
    ],
    "position": [
        "architecto"
    ],
    "status": [
        "Probation"
    ],
    "search": "n",
    "format": "pdf",
    "employees": [
        "architecto"
    ]
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "The requested resource was not found."
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/employees/export

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

start_date   string  optional    

Must be a valid date in the format Y-m-d. Example: 2026-02-18

end_date   string  optional    

Must be a valid date in the format Y-m-d. Must be a date after or equal to start_date. Example: 2052-03-13

location   string[]  optional    
department   string[]  optional    
position   string[]  optional    
status   string[]  optional    
Must be one of:
  • Active
  • Inactive
  • Terminated
  • Probation
search   string  optional    

Must not be greater than 100 characters. Example: n

format   string  optional    

Example: pdf

Must be one of:
  • xlsx
  • csv
  • pdf
employees   string[]  optional    

The id of an existing record in the employees table.

POST api/v1/auth/login

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/auth/login" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/auth/login"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/auth/login

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/auth/verify/nrc

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/auth/verify/nrc" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/auth/verify/nrc"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/auth/verify/nrc

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/auth/logout

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/auth/logout" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/auth/logout"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/auth/logout

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/auth/me

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/auth/me" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/auth/me"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Unauthorized"
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/auth/me

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/auth/token/refresh

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/auth/token/refresh" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/auth/token/refresh"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/auth/token/refresh

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/auth/password/change

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/auth/password/change" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/auth/password/change"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/auth/password/change

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/auth/password/forget

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/auth/password/forget" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/auth/password/forget"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/auth/password/forget

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/auth/otp/request

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/auth/otp/request" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/auth/otp/request"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/auth/otp/request

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/auth/otp/get-token

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/auth/otp/get-token" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/auth/otp/get-token"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/auth/otp/get-token

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/auth/otp/verify

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/auth/otp/verify" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/auth/otp/verify"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/auth/otp/verify

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/auth/biometrics/login

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/auth/biometrics/login" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/auth/biometrics/login"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/auth/biometrics/login

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/auth/biometrics/register

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/auth/biometrics/register" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/auth/biometrics/register"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/auth/biometrics/register

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

DELETE api/v1/auth/biometrics/{id}

requires authentication

Example request:
curl --request DELETE \
    "http://localhost/api/v1/auth/biometrics/architecto" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/auth/biometrics/architecto"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

DELETE api/v1/auth/biometrics/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the biometric. Example: architecto

GET api/v1/auth/biometrics/{id}

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/auth/biometrics/architecto" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/auth/biometrics/architecto"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Unauthorized"
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/auth/biometrics/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the biometric. Example: architecto

GET api/v1/setting-payrolls/currencies

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/setting-payrolls/currencies" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/setting-payrolls/currencies"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Unauthorized"
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/setting-payrolls/currencies

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/locations

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/locations" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/locations"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Locations retrieved successfully",
    "data": [
        {
            "id": "83cd68a0-bf71-11e9-9ee4-7f14a6a99e5f",
            "name": "Better HR",
            "google_map_address": "Kyaung St, Yangon, Myanmar (Burma)",
            "lat": 16.805028,
            "lng": 96.137724,
            "employees_count": 1
        },
        {
            "id": "baff79c0-c28b-11e9-9a56-137f81984afc",
            "name": "The Campus",
            "google_map_address": "1 Office Park, Rain Tree Drive,, Pun Hlaing Estate, Hlaing Thayar Township, Yangon 11401, Myanmar (Burma)",
            "lat": 16.839421,
            "lng": 96.104135,
            "employees_count": 1226
        },
        {
            "id": "9ff7c3c0-218a-11ea-a880-0ffca283c480",
            "name": "KFC HO",
            "google_map_address": "Unnamed Road, Yangon, Myanmar (Burma)",
            "lat": 16.817203,
            "lng": 96.131519,
            "employees_count": 36
        },
        {
            "id": "b071f6e0-218a-11ea-a6b9-17b062de5e40",
            "name": "YKKO HO",
            "google_map_address": "S Race Course St, Yangon, Myanmar (Burma)",
            "lat": 16.815002,
            "lng": 96.170387,
            "employees_count": 1
        },
        {
            "id": "aeb3a920-3d06-11ea-97fc-cddb1a30ee88",
            "name": "KFC-26 (Pyay)",
            "google_map_address": "Pyay Road, Pye, Myanmar (Burma)",
            "lat": 18.819789,
            "lng": 95.215937,
            "employees_count": 0
        },
        {
            "id": "aeb4af50-3d06-11ea-a277-ed9cce3a2336",
            "name": "KFC-27 (Kyaikhtee Yoe)",
            "google_map_address": "Kin Pun Sakhan, Myanmar (Burma)",
            "lat": 17.399749,
            "lng": 97.078392,
            "employees_count": 0
        },
        {
            "id": "aeb58380-3d06-11ea-84b5-5b7503b658e9",
            "name": "KFC-28 (Insein)",
            "google_map_address": "W35W+GQ4, Yangon, Myanmar (Burma)",
            "lat": 16.9085,
            "lng": 96.096954,
            "employees_count": 62
        },
        {
            "id": "aeb65b60-3d06-11ea-a3a3-4524b3e2945f",
            "name": "KFC-29 (YGN - Pathein)",
            "google_map_address": "2H58+6V4, Myanmar (Burma)",
            "lat": 17.008022,
            "lng": 95.567188,
            "employees_count": 30
        },
        {
            "id": "aeb72840-3d06-11ea-9803-e759f55cb9b2",
            "name": "KFC-30 (73 Street MDY)",
            "google_map_address": "Adipadili Rd, Mandalay, Myanmar (Burma)",
            "lat": 21.974088,
            "lng": 96.095389,
            "employees_count": 0
        },
        {
            "id": "aeb806a0-3d06-11ea-b42d-89f16eee7fba",
            "name": "KFC-31 (Kandawgyi)",
            "google_map_address": "Coner Of Kan Yeik Thar Road & U Aung Myat Road, ရန်ကုန်, Myanmar (Burma)",
            "lat": 16.791818,
            "lng": 96.169658,
            "employees_count": 0
        },
        {
            "id": "aeb8cfc0-3d06-11ea-93cf-bfd559ea6f91",
            "name": "KFC-32 (MICT)",
            "google_map_address": "MICT Park Main Building, Yangon, Myanmar (Burma)",
            "lat": 16.84964,
            "lng": 96.129215,
            "employees_count": 33
        },
        {
            "id": "aeb99ff0-3d06-11ea-bfa1-d5b0a485394d",
            "name": "KFC-33 (China Town)",
            "google_map_address": "Maha Bandula Road, Yangon, Myanmar (Burma)",
            "lat": 16.773915,
            "lng": 96.172043,
            "employees_count": 9
        },
        {
            "id": "aeba7840-3d06-11ea-8ab6-f5c5f7e0f4e2",
            "name": "KFC-34 (KyeeMyinDaing)",
            "google_map_address": "446 A, Corner of Lower Kyeemyint Daing Road and, U Lu Ni St, ရန်ကုန်, Myanmar (Burma)",
            "lat": 16.79535,
            "lng": 96.126281,
            "employees_count": 47
        },
        {
            "id": "aebb4650-3d06-11ea-917c-e137988d429f",
            "name": "KFC - 35 (Lashio)",
            "google_map_address": "Theinni Road, WQQ2+C87, လားရှိုး, Myanmar (Burma)",
            "lat": 22.938549,
            "lng": 97.750793,
            "employees_count": 56
        },
        {
            "id": "aebc0c10-3d06-11ea-9106-99fbf84476c7",
            "name": "KFC-01 (BoGyokeZay)",
            "google_map_address": "No. 375 Bo Gyoke Rd, Yangon, Myanmar (Burma)",
            "lat": 16.779254,
            "lng": 96.157142,
            "employees_count": 22
        },
        {
            "id": "aebce540-3d06-11ea-b628-b1383429d145",
            "name": "KFC-02 (Junction Square)",
            "google_map_address": "Ward 7, Beteen Pyay Road and Kyun Taw Rod, Karmaryut Tsp Near Seik Pyo Yay Bus Stop, Yangon, Myanmar (Burma)",
            "lat": 16.817121,
            "lng": 96.130712,
            "employees_count": 58
        },
        {
            "id": "aebdb700-3d06-11ea-83a5-69168bcdb0a8",
            "name": "KFC-03 (Myanmar Plaza)",
            "google_map_address": "No. 192 Kabar Aye Pagoda Rd, Yangon 11201, Myanmar (Burma)",
            "lat": 16.82808,
            "lng": 96.155022,
            "employees_count": 81
        },
        {
            "id": "aebe9720-3d06-11ea-bee1-bd09c90c20b8",
            "name": "KFC-04 (Dagon Center 2)",
            "google_map_address": "262-264 Pyay Road A 06-02/03, ရန်ကုန် 11111, Myanmar (Burma)",
            "lat": 16.804542,
            "lng": 96.13748,
            "employees_count": 62
        },
        {
            "id": "aebf6c80-3d06-11ea-8286-23196fc181ac",
            "name": "KFC-05(International)",
            "google_map_address": "W43P+36Q, ရန်ကုန်လေဆိပ်လမ်း, Yangon, Myanmar (Burma)",
            "lat": 16.902716,
            "lng": 96.13562,
            "employees_count": 37
        },
        {
            "id": "aec04680-3d06-11ea-85eb-b9076f87f50c",
            "name": "KFC-06 (Capital)",
            "google_map_address": "14E Min Nandar Rd, Yangon, Myanmar (Burma)",
            "lat": 16.802862,
            "lng": 96.195611,
            "employees_count": 78
        },
        {
            "id": "aec115b0-3d06-11ea-bfe9-c5a03b7af6a4",
            "name": "KFC -07 (Hledan)",
            "google_map_address": "No.8 Hledan Rd, Yangon, Myanmar (Burma)",
            "lat": 16.826373,
            "lng": 96.129046,
            "employees_count": 67
        },
        {
            "id": "aec1f020-3d06-11ea-b52f-a15c5ac3b279",
            "name": "KFC-08 (Domestics Airport)",
            "google_map_address": "V4XJ+GW9 Yangon Domestic Airport, Twp,, ရန်ကုန်, Myanmar (Burma)",
            "lat": 16.897913,
            "lng": 96.131916,
            "employees_count": 21
        },
        {
            "id": "aec37fa0-3d06-11ea-be0f-fd48879e89ea",
            "name": "KFC-09 (Star City)",
            "google_map_address": "Tower A-4, Star City ဝင်း, Thanlyin Tsp, Yangon, Myanmar (Burma)",
            "lat": 16.774374,
            "lng": 96.226445,
            "employees_count": 46
        },
        {
            "id": "aec4ca30-3d06-11ea-abf3-43acfb1f63fb",
            "name": "KFC -10 (Junction Mawtin)",
            "google_map_address": "Anawrahta Rd, Yangon, Myanmar (Burma)",
            "lat": 16.777769,
            "lng": 96.141877,
            "employees_count": 32
        },
        {
            "id": "aec5b220-3d06-11ea-bcb3-c7e59b5d3dd6",
            "name": "KFC-11 (Junction City)",
            "google_map_address": "Room 301, 3rd Floor, Junction City Mall, Bo Gyoke Rd, Yangon, Myanmar (Burma)",
            "lat": 16.77928,
            "lng": 96.154501,
            "employees_count": 49
        },
        {
            "id": "aec69600-3d06-11ea-af24-b106a35f2643",
            "name": "KFC-12 (Wai Zan Yan Tar) Orange",
            "google_map_address": "Wai Za Yan Tar Rd, Yangon, Myanmar (Burma)",
            "lat": 16.83128,
            "lng": 96.179018,
            "employees_count": 0
        },
        {
            "id": "aec78920-3d06-11ea-93d5-b7cb3c8aa1b3",
            "name": "KFC -13 (78 Plaza Mandalay)",
            "google_map_address": "34 1, Mandalay, Myanmar (Burma)",
            "lat": 21.971039,
            "lng": 96.086351,
            "employees_count": 46
        },
        {
            "id": "aec874e0-3d06-11ea-bc9b-19c2dcdc93ec",
            "name": "KFC-14 (The Move MDY)",
            "google_map_address": "Mandalay, Myanmar (Burma)",
            "lat": 21.941143,
            "lng": 96.093184,
            "employees_count": 48
        },
        {
            "id": "aec94190-3d06-11ea-880b-995d7317784e",
            "name": "KFC - 15 (Taunggyi)",
            "google_map_address": "206 Ye Htwet Oo St, Taunggyi, Myanmar (Burma)",
            "lat": 20.783313,
            "lng": 97.036658,
            "employees_count": 91
        },
        {
            "id": "aeca1d20-3d06-11ea-99d2-1b0301cef562",
            "name": "KFC-16 (HlaingTharyar SuperOne)",
            "google_map_address": "Yangon, Myanmar (Burma)",
            "lat": 16.862003,
            "lng": 96.06997,
            "employees_count": 7
        },
        {
            "id": "aecaf800-3d06-11ea-97fb-170f674ccfa0",
            "name": "KFC-17 (76 Mile)",
            "google_map_address": "Yangon - Mandalay Expy, Myo Chaung, Myanmar (Burma)",
            "lat": 17.971615,
            "lng": 96.484481,
            "employees_count": 48
        },
        {
            "id": "aecbce80-3d06-11ea-a4f4-e79d6cb12bf1",
            "name": "KFC-18 (SanPya)",
            "google_map_address": "917 Lay Daungkan Rd, Yangon, Myanmar (Burma)",
            "lat": 16.83942,
            "lng": 96.201828,
            "employees_count": 80
        },
        {
            "id": "aeccb0b0-3d06-11ea-bbbb-b13ed73bfb00",
            "name": "KFC-19 (Bago)",
            "google_map_address": "114 Zay Pine 19th St, Pegu, Myanmar (Burma)",
            "lat": 17.335311,
            "lng": 96.480383,
            "employees_count": 42
        },
        {
            "id": "aece93e0-3d06-11ea-a61c-5920d1a4f307",
            "name": "KFC-20 (Aung Mingalar)",
            "google_map_address": "I-A3, 8 Dagon Street, Yangon, Myanmar (Burma)",
            "lat": 16.932062,
            "lng": 96.158482,
            "employees_count": 19
        },
        {
            "id": "aecf9e80-3d06-11ea-8446-d7d8373e712f",
            "name": "KFC -21 (Kantharyar)",
            "google_map_address": "Kan Thar Yar Park, Khaymar Thi Rd, Yangon, Myanmar (Burma)",
            "lat": 16.912715,
            "lng": 96.166419,
            "employees_count": 57
        },
        {
            "id": "aed0a9b0-3d06-11ea-995b-e702006e4746",
            "name": "KFC-22 (Parami SeinGayHar)",
            "google_map_address": "ပါရမီလမ်း, Yangon, Myanmar (Burma)",
            "lat": 16.857291,
            "lng": 96.121627,
            "employees_count": 67
        },
        {
            "id": "aed1efe0-3d06-11ea-8051-51697d932c2b",
            "name": "KFC-23 (Tamwe)",
            "google_map_address": "R55G+8FG, Yangon, Myanmar (Burma)",
            "lat": 16.808321,
            "lng": 96.176197,
            "employees_count": 73
        },
        {
            "id": "aed2f310-3d06-11ea-bc09-3310c68e50cc",
            "name": "KFC-24 (Central Point MDY)",
            "google_map_address": "62 Manaw Hari St, Mandalay, Myanmar (Burma)",
            "lat": 21.934008,
            "lng": 96.111218,
            "employees_count": 35
        },
        {
            "id": "aed471f0-3d06-11ea-855a-e5b289efb9ea",
            "name": "KFC-26 (Monywar)",
            "google_map_address": "446J+WX5, Monywa, Myanmar (Burma)",
            "lat": 22.112264,
            "lng": 95.13249,
            "employees_count": 1
        },
        {
            "id": "aed56b30-3d06-11ea-8c84-7f79fdc57e45",
            "name": "KFC-36 (NorthDagon)",
            "google_map_address": "Yangon Pinlon Rd, Yangon 11421, Myanmar (Burma)",
            "lat": 16.86726,
            "lng": 96.184964,
            "employees_count": 43
        },
        {
            "id": "aed6b3e0-3d06-11ea-9605-771445d4cdf3",
            "name": "KFC-37 (San Chaung)",
            "google_map_address": "136 Shin Saw Pu, Yangon, Myanmar (Burma)",
            "lat": 16.799969,
            "lng": 96.135872,
            "employees_count": 0
        },
        {
            "id": "aed7c9a0-3d06-11ea-aa7b-07d7e785f65a",
            "name": "KFC-38 (South Dagon)",
            "google_map_address": "V62H+QJ8, Yangon, Myanmar (Burma)",
            "lat": 16.85191,
            "lng": 96.229077,
            "employees_count": 42
        },
        {
            "id": "aed8ab80-3d06-11ea-a422-5b348d15c021",
            "name": "KFC-39 (The Secretariat)",
            "google_map_address": "291 Bo Aung Kyaw St &, အနော်ရထာလမ်း, ရန်ကုန်, Myanmar (Burma)",
            "lat": 16.776334,
            "lng": 96.164877,
            "employees_count": 28
        },
        {
            "id": "b75e52a0-42a4-11ea-8c25-e355df3013f1",
            "name": "Pun Hlaing Clinic (BAS)",
            "google_map_address": "No 238/240 Bo Gyoke Rd, Yangon",
            "lat": 16.779322,
            "lng": 96.165044,
            "employees_count": 0
        },
        {
            "id": "54d76260-42a5-11ea-b3f7-db1016cca699",
            "name": "Pun Hlaing Hospital - Hlaing Tharyar",
            "google_map_address": "Pun Hlaing Ave, Yangon, Myanmar (Burma)",
            "lat": 16.840756,
            "lng": 96.089106,
            "employees_count": 506
        },
        {
            "id": "ceba0360-42a5-11ea-b630-49f2a7c4b439",
            "name": "Memories Head Office",
            "google_map_address": "The Campus, Pun Hlaing Estate, Hlaing Thar Yar Township",
            "lat": 16.839742,
            "lng": 96.104115,
            "employees_count": 0
        },
        {
            "id": "df7be850-42a5-11ea-b705-3ddca6b963b0",
            "name": "AWEI METTA",
            "google_map_address": "undefined",
            "lat": 16.8409,
            "lng": 96.096635,
            "employees_count": 104
        },
        {
            "id": "f5645a60-42a5-11ea-abb2-41f32e1f98c3",
            "name": "Memories Sanchaung",
            "google_map_address": "Swiss Business Office Center, No (36-38)A, 1st Floor, Sanchaung Street, မြေနုလမ်း, ရန်ကုန်, Myanmar (Burma)",
            "lat": 16.808999,
            "lng": 96.137735,
            "employees_count": 0
        },
        {
            "id": "28ab8110-42a6-11ea-9c83-2177239ab60e",
            "name": "Keinnara Loikaw",
            "google_map_address": "U Khun Li Street, Loikaw, Kayah State",
            "lat": 19.693754,
            "lng": 97.208813,
            "employees_count": 0
        },
        {
            "id": "342b4010-42a6-11ea-b268-1fad7af8fabc",
            "name": "Keinnara Hpa-an",
            "google_map_address": "Footprint of Mount Zwe Ka Bin, Hpa-An, Kayin State",
            "lat": 16.827828,
            "lng": 97.65919,
            "employees_count": 0
        },
        {
            "id": "444272e0-42a6-11ea-9124-a92f4d0c6e4b",
            "name": "Hotel Suggati",
            "google_map_address": "No. 58, Strand Road, Pabedan Township, Mawlamyaing, Mon State",
            "lat": 16.470703,
            "lng": 97.621373,
            "employees_count": 0
        },
        {
            "id": "6669c820-42a6-11ea-9185-7d0560b0cc12",
            "name": "AWEI PIL",
            "google_map_address": "North Bay, Kyun Pila Kyun Pila, Myanmar (Burma)",
            "lat": 10.590722,
            "lng": 98.017217,
            "employees_count": 0
        },
        {
            "id": "be3326c0-4317-11ea-9b37-93562a76d751",
            "name": "Awei Metta Hotel",
            "google_map_address": "Pun Hlaing Estate",
            "lat": 16.841087,
            "lng": 96.09679,
            "employees_count": 0
        },
        {
            "id": "be3406b0-4317-11ea-998c-e545943784f6",
            "name": "Memories Travels (Memories Sanchaung)",
            "google_map_address": "SBOC Office Tower, May Nu Street, Sanchaung Township (Yangon Office)",
            "lat": 16.809071,
            "lng": 96.137714,
            "employees_count": 0
        },
        {
            "id": "be34e720-4317-11ea-b7d1-5146b5a30f0b",
            "name": "Shwe Lay Tagun Travels & Tours (BOB/BOI) 1",
            "google_map_address": "SBOC Office Tower, May Nu Street, Sanchaung Township (Yangon Office)",
            "lat": 16.809071,
            "lng": 96.137715,
            "employees_count": 0
        },
        {
            "id": "be35bac0-4317-11ea-9e27-b76ef5c3bacf",
            "name": "Shwe Lay Tagun Travels & Tours (BOB/BOI) 2",
            "google_map_address": "No.3 , Region Zay Ywa Waddyh Qtr, Nyaung U Township, Bagan.",
            "lat": 20.659295,
            "lng": 96.926226,
            "employees_count": 0
        },
        {
            "id": "be369fc0-4317-11ea-a7dc-2bca04f9744c",
            "name": "Shwe Lay Tagun Travels & Tours (BOB/BOI) 3",
            "google_map_address": "No. (57), Phaung Daw Side Road, Win Quarters, Nyaung Shwe, Inle",
            "lat": 20.65919,
            "lng": 96.924839,
            "employees_count": 0
        },
        {
            "id": "be3a3c20-4317-11ea-8359-93ea75f505d7",
            "name": "Awei Pila Resort",
            "google_map_address": "Pila Island, Mergui Archipeligo, Kawthaung, Tanintharyi Region",
            "lat": 10.558332,
            "lng": 97.975627,
            "employees_count": 1
        },
        {
            "id": "c1162a40-4ee6-11ea-bde3-a77cd091f76b",
            "name": "Successful Goals Trading Ltd.",
            "google_map_address": "The campus",
            "lat": 16.839433,
            "lng": 96.104136,
            "employees_count": 0
        },
        {
            "id": "c1171770-4ee6-11ea-bd20-03f8cf48d3d0",
            "name": "Yoma German Motors Ltd. (Yangon)",
            "google_map_address": "No.(88), Corner of Waizayantar Road & Yadanar Road, South Okkalapa Tsp, Yangon",
            "lat": 16.837769,
            "lng": 96.185945,
            "employees_count": 0
        },
        {
            "id": "c117f430-4ee6-11ea-b91f-b9b2915161fb",
            "name": "Yoma German Motors Ltd. (Mandalay)",
            "google_map_address": "No.23, 35th Street and Between 65th & 66th Street, Pyi Gyi Myat Shin Qtr, Chan Aye Thar San Township,Mandalay, Myanmar.",
            "lat": 21.968222,
            "lng": 96.106944,
            "employees_count": 0
        },
        {
            "id": "c118de40-4ee6-11ea-8e92-99c94ed34ca7",
            "name": "Yoma German Motors Ltd. & SGG Motors Services Ltd. (Mandalay)",
            "google_map_address": "No.23, 35th Street and Between 65th & 66th Street, Pyi Gyi Myat Shin Qtr, Chan Aye Thar San Township,Mandalay, Myanmar.",
            "lat": 21.968222,
            "lng": 96.106944,
            "employees_count": 0
        },
        {
            "id": "c119ae20-4ee6-11ea-b60c-21dc0f0ea48e",
            "name": "SGG Motor Services Ltd. (Mandalay)",
            "google_map_address": "No.23, 35th Street and Between 65th & 66th Street, Pyi Gyi Myat Shin Qtr, Chan Aye Thar San Township,Mandalay, Myanmar.",
            "lat": 21.968222,
            "lng": 96.106944,
            "employees_count": 0
        },
        {
            "id": "c57dfd60-4ee6-11ea-8de4-ddda447bcd70",
            "name": "Yangon Airport",
            "google_map_address": "Yangon internation Airport Road, Season Hotel Building",
            "lat": 16.902774,
            "lng": 96.135262,
            "employees_count": 0
        },
        {
            "id": "c57ec760-4ee6-11ea-85fc-3bef3c1ff52c",
            "name": "Yangon Airport Carparking (Infront of T2)",
            "google_map_address": "Yangon internation Airport Road, Airport Carparking (Infront of Terminal 2)",
            "lat": 16.902774,
            "lng": 96.135262,
            "employees_count": 0
        },
        {
            "id": "c57f9840-4ee6-11ea-9ed3-8d2e0491dc5a",
            "name": "Strand Square",
            "google_map_address": "No933/39), KBZ Bank Building ,Coner of Bank Street & Mahabandoola Road, Kyauktada Tsp , Yangon Myanmar",
            "lat": 16.771056,
            "lng": 96.159882,
            "employees_count": 0
        },
        {
            "id": "c5806a00-4ee6-11ea-b27d-7f189687ca35",
            "name": "Star City",
            "google_map_address": "Wing-B, Building A-1, Star City Development",
            "lat": 16.773961,
            "lng": 96.226362,
            "employees_count": 1240
        },
        {
            "id": "c5821910-4ee6-11ea-860c-7fc38c1ce76e",
            "name": "People's Park",
            "google_map_address": "U WiSaRa Road, Dagon Township, Yangon.",
            "lat": 16.806145,
            "lng": 96.147476,
            "employees_count": 0
        },
        {
            "id": "c582e790-4ee6-11ea-bcf4-fd3450385863",
            "name": "MICT Park",
            "google_map_address": "Myanmar ICT Park, Hlaing Township, Yangon",
            "lat": 16.849712,
            "lng": 96.129215,
            "employees_count": 0
        },
        {
            "id": "c583bc20-4ee6-11ea-805b-91539b72ccc0",
            "name": "Kospa",
            "google_map_address": "No 3 Main Road, Kontala Baung , HtaukKyunt Tsp , Yangon Myanmar",
            "lat": 17.033196,
            "lng": 96.153193,
            "employees_count": 0
        },
        {
            "id": "c5848b60-4ee6-11ea-ad2f-779fa992a30d",
            "name": "GEMS Condo",
            "google_map_address": "No113,Thazin Street, Hlaing Tsp, GEMS Garden Condo Compound, Yangon.",
            "lat": 16.843138,
            "lng": 96.127434,
            "employees_count": 0
        },
        {
            "id": "c58567b0-4ee6-11ea-ac8a-d5bf51307fb2",
            "name": "FMI Yard",
            "google_map_address": "No. 1091-D, Conner of Shwe Mar Lar Street & Gandamar street, FMI City, Hlaingtharyar Tsp, Yangon",
            "lat": 16.856485,
            "lng": 96.085586,
            "employees_count": 1
        },
        {
            "id": "c5863db0-4ee6-11ea-9893-8b9ce53ddea8",
            "name": "FMI Recreation",
            "google_map_address": "FMI City Recreation Center , Hlaing Tharyar Tsp",
            "lat": 16.856485,
            "lng": 96.085587,
            "employees_count": 0
        },
        {
            "id": "c5872880-4ee6-11ea-acdb-1ffe45217d60",
            "name": "Times Link",
            "google_map_address": "No.456 A-B, Conner of Dhamazaydi Road and Link Road, Bahan Tsp, Yangon",
            "lat": 16.856485,
            "lng": 96.085587,
            "employees_count": 0
        },
        {
            "id": "c5880570-4ee6-11ea-be13-6b98dbaf42cd",
            "name": "Capital Hypermarket(Tharkayta)",
            "google_map_address": "No 14 E, Minnandar Road ,Daw Bon Tsp , Yangon Myanmar",
            "lat": 16.802867,
            "lng": 96.195611,
            "employees_count": 0
        },
        {
            "id": "c588dca0-4ee6-11ea-a028-e96ebf574464",
            "name": "Autonova",
            "google_map_address": "No(92) Corner of Myamarlar St & Myanma Gone Yi St , Tharkayta Industrial Zone, Yangon",
            "lat": 16.807996,
            "lng": 96.199771,
            "employees_count": 0
        },
        {
            "id": "c589c750-4ee6-11ea-b8dc-ddb2a8d33eca",
            "name": "Dawei Airport",
            "google_map_address": "Dawei Airport",
            "lat": 14.100014,
            "lng": 98.202092,
            "employees_count": 0
        },
        {
            "id": "c58ab320-4ee6-11ea-bf3c-8f19175178d9",
            "name": "Taunggyi",
            "google_map_address": "No. 442, Chan Thar Quarter, TaungGyi ",
            "lat": 20.76915,
            "lng": 97.035662,
            "employees_count": 114
        },
        {
            "id": "c58b7aa0-4ee6-11ea-86c3-95375ccffc04",
            "name": "Heho",
            "google_map_address": "Heho Airport",
            "lat": 20.741054,
            "lng": 96.794211,
            "employees_count": 3
        },
        {
            "id": "c58c5310-4ee6-11ea-870f-99c3a30db18d",
            "name": "Pit & Go (ShweKyar Pin)",
            "google_map_address": "Pit & Go Workshop ,Shwe Pyi Taw win Road, Shwe Kyar Pin Ward, Nay Pyi Taw",
            "lat": 19.727467,
            "lng": 96.138968,
            "employees_count": 0
        },
        {
            "id": "c58d24e0-4ee6-11ea-b4f6-f7a758cd8893",
            "name": "NPW Airport",
            "google_map_address": "Nay Pyi Taw International Airport, Leway Tsp",
            "lat": 19.61494,
            "lng": 96.213004,
            "employees_count": 0
        },
        {
            "id": "c58dec20-4ee6-11ea-9e82-0545818d09fb",
            "name": "Capital Hyper Mart",
            "google_map_address": "Yazathingaha Road , Detkhinathiri Tsp, Nay Pyi Taw",
            "lat": 19.709805,
            "lng": 96.112376,
            "employees_count": 0
        },
        {
            "id": "c58eb550-4ee6-11ea-b49d-99b7ae458e89",
            "name": "MDY City (Chan Mya Tharsi)",
            "google_map_address": "No. 22 C, 78th Street, Chan Myay Thar Si Tsp, Mandalay",
            "lat": 21.941087,
            "lng": 96.087194,
            "employees_count": 0
        },
        {
            "id": "c58f7960-4ee6-11ea-ab06-c7ce8d306a02",
            "name": "Mandalay Airport",
            "google_map_address": "Mandalay Tataroo Airport",
            "lat": 21.705649,
            "lng": 95.970831,
            "employees_count": 0
        },
        {
            "id": "c5904350-4ee6-11ea-b729-6357ee3581ca",
            "name": "Myitkyina Airport",
            "google_map_address": "Myitkyina Airport",
            "lat": 25.394614,
            "lng": 97.384073,
            "employees_count": 0
        },
        {
            "id": "c5911ad0-4ee6-11ea-a47a-41f94d5f55c1",
            "name": "Lashio Airport",
            "google_map_address": "Lashio Airport",
            "lat": 22.971697,
            "lng": 97.753089,
            "employees_count": 0
        },
        {
            "id": "c591ea30-4ee6-11ea-846a-c9bcdbbdb4a6",
            "name": "Bagan Airport",
            "google_map_address": "No.43, Aung Myaye Thar Quarter, Naung Oo",
            "lat": 21.173157,
            "lng": 94.92025,
            "employees_count": 0
        },
        {
            "id": "c592c6a0-4ee6-11ea-ac3d-fde2b2bf4da2",
            "name": "Thilawa",
            "google_map_address": "Plot 27, Yaw Ahtwinwin U Phoe Hlaing Street, Thilawa Industry Zone, Thanlyin Township, Yangon",
            "lat": 16.676238,
            "lng": 96.294823,
            "employees_count": 220
        },
        {
            "id": "c88496d0-4ee6-11ea-b939-0bb6e2826d3a",
            "name": "Yoma HE HO",
            "google_map_address": "No.1159, FMI City Gate-2, Yangon -Pathein Main Road, Hlaing Thar Yar Township, Yangon Division",
            "lat": 16.854847,
            "lng": 96.089605,
            "employees_count": 1
        },
        {
            "id": "c8857af0-4ee6-11ea-af8d-b5c7fe410a82",
            "name": "Yoma HE MDY",
            "google_map_address": "No. (H-9), Phoe Yazar Road, (70)Corner, Pyi Gyi Takon Township, Mandalay Division.",
            "lat": 21.891859,
            "lng": 96.095369,
            "employees_count": 0
        },
        {
            "id": "c8866da0-4ee6-11ea-a1fd-1501821eeeaf",
            "name": "Yoma HE NayPyiTaw",
            "google_map_address": "No. (3050), Yar Za Htar Ni Road, Aung Tharyar Quarter, Pobbathiri Township, Nay Pyi Taw Division",
            "lat": 19.762089,
            "lng": 96.22261,
            "employees_count": 1
        },
        {
            "id": "c8874520-4ee6-11ea-aff7-4fb76c2652a7",
            "name": "Yoma HE Pathein",
            "google_map_address": "No. (39), Yangon-Pathein Main Road, Near Myattoe Junction, No. (15) Ward, Pathein Township, Ayeyarwaddy Division",
            "lat": 16.800895,
            "lng": 94.760108,
            "employees_count": 0
        },
        {
            "id": "c8881d70-4ee6-11ea-8ab2-5554be08d1ee",
            "name": "Yoma HE Hinthada",
            "google_map_address": "No.(139) ,Yaw Thar Kone Village,Own Kone Yat,Net Maw Street,Hinthada-Pathein Main Road, Hinthada Township, Ayeyarwaddy Division",
            "lat": 17.619727,
            "lng": 95.443367,
            "employees_count": 0
        },
        {
            "id": "c888efe0-4ee6-11ea-a70e-55021a864210",
            "name": "Yoma HE NaungCho",
            "google_map_address": "Mandalay- Lashio Main Road, Bant Bwe Village, Naung Cho Township, Shan (Northern) State",
            "lat": 22.1848,
            "lng": 96.6444,
            "employees_count": 0
        },
        {
            "id": "c889d910-4ee6-11ea-b82b-6f67a5a369d0",
            "name": "Yoma HE Heho",
            "google_map_address": "Heho Near Catholic Church,Heho New Town,Nan Kone Quarter,Heho Hiway Main Road, Heho Township, Shan (South) State",
            "lat": 20.763233,
            "lng": 96.920934,
            "employees_count": 2
        },
        {
            "id": "c88ac0a0-4ee6-11ea-8276-87714f402fae",
            "name": "Yoma HE Pakokku",
            "google_map_address": "No. (15), Mya Kan Thar Main Road, Near Ayeyarwaddy Bridge (Pakko- ku) , Pakokku Township, Magway Division",
            "lat": 20.72366,
            "lng": 96.81127,
            "employees_count": 1
        },
        {
            "id": "c88b9aa0-4ee6-11ea-8c91-d9d573271174",
            "name": "Yoma HE Pyay",
            "google_map_address": "Pyay-Aung Lan Road, Jute Manu- facturing Factory Ward (Gone Sha- w Win), Pyay District , Bago Division",
            "lat": 18.823553,
            "lng": 95.253392,
            "employees_count": 1
        },
        {
            "id": "c88c7150-4ee6-11ea-a0ff-7f88711d3480",
            "name": "Yoma HE Magway",
            "google_map_address": "No. (194/241), Thukita Street, Bet- ween (4th & 5th) Street, Aung Say Ta Nar Quarter, Magwe Township",
            "lat": 20.139154,
            "lng": 94.949367,
            "employees_count": 1
        },
        {
            "id": "c88d6770-4ee6-11ea-9071-67ca5ef01e14",
            "name": "Yoma HE ShweBo",
            "google_map_address": "No. (10), Shwe Bo Industrial Zone, Shwe Tharaphyu and Shwe Marlar Street, Thapay Nyo Street, Shwe Bo Township, Sagaing Division",
            "lat": 22.577001,
            "lng": 95.72033,
            "employees_count": 0
        },
        {
            "id": "c88e6080-4ee6-11ea-a3bd-4127f375537b",
            "name": "Yoma HE Loikaw",
            "google_map_address": "No.(236),Kandarawaddy Street,PanKann Quarter,Loikaw Township,Kayah Sate",
            "lat": 19.634196,
            "lng": 97.205719,
            "employees_count": 0
        },
        {
            "id": "c88f30d0-4ee6-11ea-96f1-67ac5159389e",
            "name": "Yoma HE Kalay",
            "google_map_address": "No (44),Holding No (162),Lanmataw Street,Chan Myae Aung Si Quarter,Kalay Township,Sagaing Division",
            "lat": 23.193127,
            "lng": 94.024496,
            "employees_count": 0
        },
        {
            "id": "7d1a60e0-5391-11ea-abe5-f9dd16814251",
            "name": "Pun Hlaing Hospital - Mandalay",
            "google_map_address": "97 Adipadili Rd, Mandalay",
            "lat": 21.974168,
            "lng": 96.09558,
            "employees_count": 239
        },
        {
            "id": "7d1b7330-5391-11ea-8ce2-0bbb7139deed",
            "name": "Pun Hlaing Hospital - Taunggyi",
            "google_map_address": "Pya Tait Street, Nyaung Swe, Taunggyi",
            "lat": 20.663111,
            "lng": 96.931717,
            "employees_count": 269
        },
        {
            "id": "da59ddf0-5875-11ea-9ef8-19f1fe69b9b0",
            "name": "KOSPA Mingaladon",
            "google_map_address": "No 3 Rd, Yangon, Myanmar (Burma)",
            "lat": 17.026572,
            "lng": 96.144427,
            "employees_count": 239
        },
        {
            "id": "1ed6e520-5876-11ea-bbed-ad7607daf9d7",
            "name": "KOSPA Thanlyin",
            "google_map_address": "Lot -B.8 Zone A Thilawa SEZ 11921, သန်လျင်",
            "lat": 16.672968,
            "lng": 96.273718,
            "employees_count": 12
        },
        {
            "id": "5bf68300-5876-11ea-83ba-d9646bfd45ca",
            "name": "KOSPA Mandalay",
            "google_map_address": "Yangon - Mandalay Rd, မန္တလေး, Myanmar (Burma)",
            "lat": 21.872621,
            "lng": 96.108211,
            "employees_count": 3
        },
        {
            "id": "941af600-588a-11ea-b528-278cac12938f",
            "name": "Pun Hlaing Clinic (HTY)",
            "google_map_address": "Pun Hlaing Ave, Yangon, Myanmar (Burma)",
            "lat": 16.838776,
            "lng": 96.090218,
            "employees_count": 0
        },
        {
            "id": "8b3dbcc0-5ef2-11ea-9adb-2df150b54a58",
            "name": "Memories Sanchaung",
            "google_map_address": "No. 36-38 (A), Ground Floor, Grand Myay Nu Condo, Myay Nu Street, Sanchaung, Town, ရန်ကုန်, Myanmar (Burma)",
            "lat": 16.808999,
            "lng": 96.137735,
            "employees_count": 12
        },
        {
            "id": "a1b87140-5ef2-11ea-84d5-89ebc8b2925e",
            "name": "Memories Awei Pila",
            "google_map_address": "Kyun Pila Island, Myanmar (Burma)",
            "lat": 10.558303,
            "lng": 97.975634,
            "employees_count": 11
        },
        {
            "id": "e84756c0-5ef2-11ea-877c-310174f0f3ff",
            "name": "Memories Kawthaung",
            "google_map_address": "Kawthoung, Myanmar (Burma)",
            "lat": 9.995811,
            "lng": 98.552875,
            "employees_count": 2
        },
        {
            "id": "5434e950-5ef3-11ea-bcdc-393f1e5bf25d",
            "name": "Memories Loikaw",
            "google_map_address": "u khun li street, Loikaw, Myanmar (Burma)",
            "lat": 19.694596,
            "lng": 97.209303,
            "employees_count": 5
        },
        {
            "id": "88072d80-5ef3-11ea-bc23-e19c151f572e",
            "name": "Memories Kayin state,Hpa An",
            "google_map_address": "Zwe Ka Bin Mountain, Myanmar (Burma)",
            "lat": 16.829635,
            "lng": 97.667019,
            "employees_count": 8
        },
        {
            "id": "a61686c0-5ef3-11ea-9f16-ad498f7911d8",
            "name": "Memories Nyaung Ou(Bagan)",
            "google_map_address": "No.3 , Region Zay Ywa Waddyh Qtr, Nyaung U Township, Bagan.",
            "lat": null,
            "lng": null,
            "employees_count": 9
        },
        {
            "id": "bfb41af0-5ef3-11ea-9981-81113a5f8158",
            "name": "Memories SM Mawlamyaing Hotel Ltd.",
            "google_map_address": "Between lower Main Road and Strand Road, Phat Tan Quarter,, မော်လမြိုင်, Myanmar (Burma)",
            "lat": 16.497186,
            "lng": 97.618651,
            "employees_count": 7
        },
        {
            "id": "092c2510-5ef4-11ea-9322-7bdbbcc14d6c",
            "name": "Memories Nyaung Shwe(Inle)",
            "google_map_address": "Taunggyi, Myanmar (Burma)",
            "lat": 20.493331,
            "lng": 96.885176,
            "employees_count": 4
        },
        {
            "id": "66cdf4e0-5ef4-11ea-9486-e18af1962d37",
            "name": "Memories Head Office",
            "google_map_address": "1 Office Park, Rain Tree Drive,, Pun Hlaing Estate, Hlaing Thayar Township, Yangon 11401, Myanmar (Burma)",
            "lat": 16.839421,
            "lng": 96.104135,
            "employees_count": 0
        },
        {
            "id": "70c404f0-5ef4-11ea-8443-eba989a214f7",
            "name": "Awei Metta Hotel",
            "google_map_address": "ရန်ကုန် 11401, Myanmar (Burma)",
            "lat": 16.84091,
            "lng": 96.096585,
            "employees_count": 0
        },
        {
            "id": "820e21c0-5ef4-11ea-9ce5-d964360df3da",
            "name": "YL Hlaing Tharyar",
            "google_map_address": "1 Office Park, Rain Tree Drive,, Pun Hlaing Estate, Hlaing Thayar Township, Yangon 11401, Myanmar (Burma)",
            "lat": 16.839421,
            "lng": 96.104135,
            "employees_count": 55
        },
        {
            "id": "f9f78100-62c1-11ea-94e4-9189129def82",
            "name": "YL Thanlyin (Star City)",
            "google_map_address": "Thanlyin, Myanmar (Burma)",
            "lat": 16.776623,
            "lng": 96.228733,
            "employees_count": 16
        },
        {
            "id": "ef433a40-6366-11ea-a907-45db73295ca0",
            "name": "LS - Golden Valley",
            "google_map_address": "16.818014, 96.154155",
            "lat": 16.817979,
            "lng": 96.154164,
            "employees_count": 6
        },
        {
            "id": "78f83ec0-636a-11ea-a64f-b7d8eeb11702",
            "name": "AA Myanmar Plaza",
            "google_map_address": "No. 192 Kabar Aye Pagoda Rd, Yangon 11201, Myanmar (Burma)",
            "lat": 16.82808,
            "lng": 96.155022,
            "employees_count": 1
        },
        {
            "id": "87f77660-636a-11ea-8e91-1535eb1bdaa8",
            "name": "AA Junction City",
            "google_map_address": "Corner of, Bo Gyoke Rd, Yangon, Myanmar (Burma)",
            "lat": 16.779083,
            "lng": 96.154321,
            "employees_count": 0
        },
        {
            "id": "478b4100-6764-11ea-b024-815b1baec264",
            "name": "YL Pun Hlaing Estate",
            "google_map_address": "Pun Hlaing Ave, Yangon, Myanmar (Burma)",
            "lat": 16.83643,
            "lng": 96.091923,
            "employees_count": 1
        },
        {
            "id": "8e6baec0-6764-11ea-958f-edcd4f2e89f9",
            "name": "YL Taunggyi",
            "google_map_address": "Taunggyi, Myanmar (Burma)",
            "lat": 20.788757,
            "lng": 97.033714,
            "employees_count": 0
        },
        {
            "id": "b3c13930-6764-11ea-b46f-a93bc7ebaa36",
            "name": "YL Thanlyin",
            "google_map_address": "Thanlyin, Myanmar (Burma)",
            "lat": 16.758754,
            "lng": 96.248215,
            "employees_count": 1
        },
        {
            "id": "ef386b40-6764-11ea-8978-b321be2ca0a3",
            "name": "YL Pun Hlaing",
            "google_map_address": "The Campus, 1 Office Park, Rain Tree Drive, Yangon 11401, Myanmar (Burma)",
            "lat": 16.839339,
            "lng": 96.104152,
            "employees_count": 1
        },
        {
            "id": "4db28c90-6765-11ea-ac5d-a13e4ad077a0",
            "name": "YL Pabedan",
            "google_map_address": "Pabedan Township, Yangon, Myanmar (Burma)",
            "lat": 16.77765,
            "lng": 96.156675,
            "employees_count": 9
        },
        {
            "id": "8ffcdd10-6765-11ea-8f99-afd71e257d08",
            "name": "YL Kabaraye Sales Gallery",
            "google_map_address": "Kabarayr Pagoda Road, Kada Ward,, ပေါင်, Myanmar (Burma)",
            "lat": 16.6201,
            "lng": 97.458216,
            "employees_count": 2
        },
        {
            "id": "eef30cd0-69ba-11ea-b2e3-db4e38ed716e",
            "name": "YB Myanmar Plaza",
            "google_map_address": "Myanmar plaza office tower, ရန်ကုန်, Myanmar (Burma)",
            "lat": 16.827534,
            "lng": 96.15527,
            "employees_count": 2
        },
        {
            "id": "ec85e720-69cd-11ea-84ab-59474dda6199",
            "name": "Wave Money Office",
            "google_map_address": "Uniteam Marine Building No. 84, Pann Hlaing St, Yangon, Myanmar (Burma)",
            "lat": 16.797779,
            "lng": 96.13028,
            "employees_count": 1
        },
        {
            "id": "e59a34a0-6c15-11ea-ab47-8126f3a4e9ae",
            "name": "YM Mandalay",
            "google_map_address": "Mandalay, Myanmar (Burma)",
            "lat": 21.958828,
            "lng": 96.089103,
            "employees_count": 0
        },
        {
            "id": "52552350-6d7d-11ea-9b5c-b90a740bc8b1",
            "name": "Yoma Micro Power Mandalay",
            "google_map_address": "Mandalay, Myanmar (Burma)",
            "lat": 21.958828,
            "lng": 96.089103,
            "employees_count": 29
        },
        {
            "id": "696c5db0-6d7d-11ea-af3d-ebddfc04bad2",
            "name": "YHE/HINO Head Office",
            "google_map_address": "Hlaingthaya Township, Yangon, Myanmar (Burma)",
            "lat": 16.854879,
            "lng": 96.089622,
            "employees_count": 56
        },
        {
            "id": "7dee7e80-6d7d-11ea-9388-01d3bb9006c5",
            "name": "Yoma Micro Power Magway",
            "google_map_address": "Magway, Myanmar (Burma)",
            "lat": 20.154431,
            "lng": 94.94548,
            "employees_count": 35
        },
        {
            "id": "93aff670-6d7d-11ea-9d86-2f09d6f9f2d5",
            "name": "Yoma Micro Power Sagaing",
            "google_map_address": "Sagaing, Myanmar (Burma)",
            "lat": 21.91597,
            "lng": 95.962111,
            "employees_count": 56
        },
        {
            "id": "e4f34ce0-6d7d-11ea-b724-bbec98b01543",
            "name": "Yoma Micro Power naypyitaw",
            "google_map_address": "Naypyitaw, Myanmar (Burma)",
            "lat": 19.763306,
            "lng": 96.07851,
            "employees_count": 1
        },
        {
            "id": "713a09b0-6d7e-11ea-b011-fb6adec5a6ab",
            "name": "Yoma Micro Power Myanmar",
            "google_map_address": "Myanmar (Burma)",
            "lat": 21.916221,
            "lng": 95.955974,
            "employees_count": 4
        },
        {
            "id": "826dd250-6d7e-11ea-8993-390ab2edf56b",
            "name": "Yoma Micro Power Yangon Warehouse",
            "google_map_address": "Yangon, Myanmar (Burma)",
            "lat": 16.840939,
            "lng": 96.173526,
            "employees_count": 5
        },
        {
            "id": "b0ab60a0-6d7e-11ea-af9e-1127481940ea",
            "name": "Yoma Micro Power",
            "google_map_address": "1 Office Park, Rain Tree Drive,, Pun Hlaing Estate, Hlaing Thayar Township, Yangon 11401, Myanmar (Burma)",
            "lat": 16.839421,
            "lng": 96.104135,
            "employees_count": 2
        },
        {
            "id": "d3dc6e90-6d7e-11ea-b854-edf4fff77737",
            "name": "Yoma Micro Power Dagon Myothit (East)",
            "google_map_address": "East Dagon Township, Yangon, Myanmar (Burma)",
            "lat": 16.933335,
            "lng": 96.301343,
            "employees_count": 0
        },
        {
            "id": "017ae460-6d7f-11ea-9443-93be9f29db4e",
            "name": "Yoma Micro Power Mandalay Office",
            "google_map_address": "Mandalay, Myanmar (Burma)",
            "lat": 21.958828,
            "lng": 96.089103,
            "employees_count": 6
        },
        {
            "id": "27c65880-6d7f-11ea-a649-f5cbd44bf4fd",
            "name": "Yoma Micro Power Yangon",
            "google_map_address": "Yangon, Myanmar (Burma)",
            "lat": 16.840939,
            "lng": 96.173526,
            "employees_count": 0
        },
        {
            "id": "af3d6060-98c3-11ea-8a35-77ea9583c575",
            "name": "KFC-40 (Thanlyin - Myoma Market)",
            "google_map_address": "Thanlyin, Myanmar (Burma)",
            "lat": 16.765019,
            "lng": 96.24559,
            "employees_count": 0
        },
        {
            "id": "c034a8f0-98c3-11ea-aed1-8de4b70b2f1d",
            "name": "KFC-41 (Insein-2)",
            "google_map_address": "14 Hlaing River Rd, Yangon, Myanmar (Burma)",
            "lat": 16.885778,
            "lng": 96.099874,
            "employees_count": 34
        },
        {
            "id": "cef748b0-98c3-11ea-8457-e17cd4261086",
            "name": "KFC-42 (Great Wall, Mdy)",
            "google_map_address": "1, မန္တလေး, Myanmar (Burma)",
            "lat": 21.972734,
            "lng": 96.087072,
            "employees_count": 0
        },
        {
            "id": "de4bf260-98c3-11ea-ad2a-a143c2ad1f67",
            "name": "KFC-43 (Thanlyin - City Mart)",
            "google_map_address": "Aung Chan Thar Bus Stop, Kyaik Khauk Pagoda Rd, Syriam, Myanmar (Burma)",
            "lat": 16.742818,
            "lng": 96.266272,
            "employees_count": 26
        },
        {
            "id": "ec700350-98c3-11ea-b095-b57476331bdd",
            "name": "KFC-44 (South Okkalapa)",
            "google_map_address": "16.852417, 96.175624",
            "lat": null,
            "lng": null,
            "employees_count": 48
        },
        {
            "id": "11468bd0-98c4-11ea-9f58-1d20b1ee180a",
            "name": "KFC-45 (10th Miles)",
            "google_map_address": "Sel Maing Kone, ပြည်လမ်း, ရန်ကုန်, Myanmar (Burma)",
            "lat": 16.888547,
            "lng": 96.129508,
            "employees_count": 0
        },
        {
            "id": "21800120-98c4-11ea-8dfa-277bf265afae",
            "name": "KFC-46 (Shwepyithar)",
            "google_map_address": "16.957028, 96.076156",
            "lat": null,
            "lng": null,
            "employees_count": 32
        },
        {
            "id": "33f40260-98c4-11ea-8ef6-8bd145098c3d",
            "name": "KFC - 47 (Naypyitaw)",
            "google_map_address": "P476+W9R, Naypyidaw, Myanmar (Burma)",
            "lat": 19.714852,
            "lng": 96.110875,
            "employees_count": 24
        },
        {
            "id": "ec180db0-b78e-11ea-aee3-7926d1faf145",
            "name": "AA Junction Square",
            "google_map_address": "Ward 7, Beteen Pyay Road and Kyun Taw Rod, Karmaryut Tsp Near Seik Pyo Yay Bus Stop, Yangon, Myanmar (Burma)",
            "lat": 16.817121,
            "lng": 96.130712,
            "employees_count": 0
        },
        {
            "id": "6fb1bd90-b9c3-11ea-8836-4d226ddc0224",
            "name": "Yoma F&B Office",
            "google_map_address": "14/14 B, Kanbawza Street, Golden Valley (1), Bahan Tsp, Yangon.",
            "lat": null,
            "lng": null,
            "employees_count": 3
        },
        {
            "id": "a387daf0-e3cb-11ea-a56c-d94c3be15307",
            "name": "Singapore",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 16
        },
        {
            "id": "a3a19100-e3cb-11ea-96c5-b34c86ae5b58",
            "name": "Pun Hlaing Estate",
            "google_map_address": "R3PR+GR5, Pun Hlaing Ave, Yangon, Myanmar (Burma)",
            "lat": 16.836267,
            "lng": 96.092098,
            "employees_count": 1421
        },
        {
            "id": "a3c2f270-e3cb-11ea-b635-dd51dd8324bd",
            "name": "Pathein",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 74
        },
        {
            "id": "a3cd4e20-e3cb-11ea-bdfd-f93be1244d0e",
            "name": "Pabedan",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 323
        },
        {
            "id": "a403a640-e3cb-11ea-abf7-736843e6dbd7",
            "name": "Bahan",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 119
        },
        {
            "id": "a4285480-e3cb-11ea-a137-f719fc3e6cf3",
            "name": "Thanlyin",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 69
        },
        {
            "id": "a4680e00-e3cb-11ea-8949-b9f757b6d28c",
            "name": "Hlaingtharya",
            "google_map_address": "No.1159, FMI City Gate-2, Yangon -Pathein Main Road, Hlaing Thar Yar Township, Yangon Division",
            "lat": 0,
            "lng": 0,
            "employees_count": 205
        },
        {
            "id": "a4b2f740-e3cb-11ea-a23d-7bd7df51a879",
            "name": "Pyigyitagon",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 25
        },
        {
            "id": "a4ef9b60-e3cb-11ea-8d52-b959b6f1f162",
            "name": "South Okkalapa",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 148
        },
        {
            "id": "a5eac0f0-e3cb-11ea-ac4f-d1db1159b7ca",
            "name": "Chanayethazan",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 96
        },
        {
            "id": "a60edfd0-e3cb-11ea-b476-e16feda71b67",
            "name": "Mahaaungmyay",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 10
        },
        {
            "id": "a67c02c0-e3cb-11ea-9b3e-ef7f512e2507",
            "name": "Bago",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 73
        },
        {
            "id": "a9693950-e3cb-11ea-8111-2d5b7e80c519",
            "name": "Pillar island",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 57
        },
        {
            "id": "ab3ac9b0-e3cb-11ea-a519-1fe76b47845e",
            "name": "Mingaladon",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 232
        },
        {
            "id": "acfcf2f0-e3cb-11ea-8bfe-fdf71bc30fda",
            "name": "Lewe",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 4
        },
        {
            "id": "ad42dad0-e3cb-11ea-b419-29cd209305cb",
            "name": "Chanmyathazi",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 45
        },
        {
            "id": "ad79e5f0-e3cb-11ea-af5e-bf882058a29c",
            "name": "Dawei",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 2
        },
        {
            "id": "adc26e00-e3cb-11ea-b1da-bd810ecc2f19",
            "name": "Magway",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 14
        },
        {
            "id": "e0b2a980-e3cb-11ea-b379-63e89049e5c5",
            "name": "Kale",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 14
        },
        {
            "id": "e0d1b8f0-e3cb-11ea-be47-8fb7712aa40e",
            "name": "Shwebo",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 11
        },
        {
            "id": "e119ce00-e3cb-11ea-b6b2-c71044f1c370",
            "name": "Hinthada",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 6
        },
        {
            "id": "e1404fd0-e3cb-11ea-8ff0-0de03c761327",
            "name": "Pyimana",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 9
        },
        {
            "id": "e1a183f0-e3cb-11ea-86b3-d5b3bc7f5b7f",
            "name": "Pyay",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 25
        },
        {
            "id": "e26094e0-e3cb-11ea-90ae-5955e3517d77",
            "name": "Nawnghkio",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 8
        },
        {
            "id": "e2aaa160-e3cb-11ea-a760-6be10ad3411b",
            "name": "Pakokku",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 8
        },
        {
            "id": "e4ce57c0-e3cb-11ea-9a0d-83fea256e41a",
            "name": "Loikaw",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 45
        },
        {
            "id": "e50da6b0-e3cb-11ea-a907-abe18efff8f6",
            "name": "Kamayut",
            "google_map_address": "Pyay Rd, Yangon, Myanmar (Burma)",
            "lat": 16.818365,
            "lng": 96.132994,
            "employees_count": 219
        },
        {
            "id": "e52f3b10-e3cb-11ea-a6fb-3336dd6963c8",
            "name": "Lanmadaw",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 49
        },
        {
            "id": "e5598ed0-e3cb-11ea-ac88-01aea32e325d",
            "name": "North Okkalapa",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 39
        },
        {
            "id": "e574dea0-e3cb-11ea-9e61-af56b51f46a4",
            "name": "Sanchaung",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 39
        },
        {
            "id": "e57fe5c0-e3cb-11ea-933a-d782c849fa31",
            "name": "Tamwe",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 15
        },
        {
            "id": "e58c1b20-e3cb-11ea-aa06-e3f04aa44833",
            "name": "Hlaing",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 58
        },
        {
            "id": "e5c5f160-e3cb-11ea-82ac-1fcce838d8fd",
            "name": "Pobbathiri",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 22
        },
        {
            "id": "e5cfe180-e3cb-11ea-ad6d-91f4ffef98b3",
            "name": "Thaketa",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 35
        },
        {
            "id": "e5e93540-e3cb-11ea-aaa0-0f1c9c179a7f",
            "name": "Botahtaung",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 22
        },
        {
            "id": "e6132260-e3cb-11ea-82c1-edeecfca96d0",
            "name": "Dagon Myothit (South)",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 32
        },
        {
            "id": "e649fd20-e3cb-11ea-8f98-7708807d5e87",
            "name": "Dagon Myothit (East)",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 11
        },
        {
            "id": "e65a9d40-e3cb-11ea-af82-95b4b7c0eba0",
            "name": "Insein",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 63
        },
        {
            "id": "e69b4fb0-e3cb-11ea-bf4b-afde1cb21a0a",
            "name": "Mingalartaungnyunt",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 8
        },
        {
            "id": "e74a2a40-e3cb-11ea-b166-e373519f295d",
            "name": "Kyeemyindaing",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 24
        },
        {
            "id": "e81c8850-e3cb-11ea-95cc-67145b6344d2",
            "name": "Lashio",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 56
        },
        {
            "id": "e83b3c40-e3cb-11ea-9f96-2dd2af97772b",
            "name": "Monywa",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 10
        },
        {
            "id": "e8f43470-e3cb-11ea-b010-9b1eb797e4fc",
            "name": "Shwepyithar",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 28
        },
        {
            "id": "eafd42d0-e3cb-11ea-b355-a5c37045da36",
            "name": "Nyaungdon",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 18
        },
        {
            "id": "eb3607f0-e3cb-11ea-9a80-f5065ea5bb92",
            "name": "Thingangyun",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 42
        },
        {
            "id": "ed5d0480-e3cb-11ea-ab8e-35031eedbf73",
            "name": "Ranong",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 4
        },
        {
            "id": "ee4ee620-e3cb-11ea-a197-6d08e6a67d65",
            "name": "Meiktila",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 1
        },
        {
            "id": "ef1ba2c0-e3cb-11ea-b3c8-01b1191d57cc",
            "name": "Myitkyina",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 2
        },
        {
            "id": "f1435820-e3cb-11ea-9cdd-1b34a0221ae8",
            "name": "Sagaing",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 7
        },
        {
            "id": "f55fbc80-e3cb-11ea-97b5-f32900d02570",
            "name": "Nyaungshwe",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 23
        },
        {
            "id": "f614a9f0-e3cb-11ea-ae24-7f6e0bedfdd4",
            "name": "Nyaung U",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 206
        },
        {
            "id": "02337920-e3cc-11ea-a6a1-a977f094798d",
            "name": "Hpa An",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 47
        },
        {
            "id": "075bf370-e3cc-11ea-b3f3-b5170b85cd51",
            "name": "Kawthound",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 7
        },
        {
            "id": "08ce72c0-e3cc-11ea-852a-a176c671b48e",
            "name": "Mawlamyine",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 38
        },
        {
            "id": "0b925b70-e3cc-11ea-a639-970c0af33529",
            "name": "Amarapura",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 1
        },
        {
            "id": "18b73e70-e3cc-11ea-bcf2-050c1533d6b3",
            "name": "Kyaukse",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 0
        },
        {
            "id": "2a4cb9c0-e3cc-11ea-84a4-39a407529fc2",
            "name": "Thabeikkyin",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 1
        },
        {
            "id": "2b228c20-e3cc-11ea-89f0-b50df40e7d68",
            "name": "Myingyan",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 0
        },
        {
            "id": "2b337570-e3cc-11ea-8a1f-91cce6b366ce",
            "name": "Natogyi",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 0
        },
        {
            "id": "2dee8b40-e3cc-11ea-a3fc-23f865aed782",
            "name": "Tada U",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 1
        },
        {
            "id": "34c79100-e3cc-11ea-8ea8-5972d31c5b8c",
            "name": "Zabuthiri",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 1
        },
        {
            "id": "39a78a50-e3cc-11ea-92a9-bff1b995c03a",
            "name": "Taungtha",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 1
        },
        {
            "id": "39b4b7f0-e3cc-11ea-8413-e5c0c2164895",
            "name": "Ngazun",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 0
        },
        {
            "id": "3e42b090-e3cc-11ea-aee0-4b6b839c7188",
            "name": "Minbu",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 0
        },
        {
            "id": "4075f0a0-e3cc-11ea-85f3-a1cf2ed4b75c",
            "name": "Other Nation",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 2
        },
        {
            "id": "416b0ee0-e3cc-11ea-bdba-41c47e354158",
            "name": "Hmawbi",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 3
        },
        {
            "id": "460cf530-e3cc-11ea-9b3d-e574a5f4c2ed",
            "name": "Pyinoolwin",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 0
        },
        {
            "id": "4dbcfa00-e3cc-11ea-a1bf-2b5cd6218f9d",
            "name": "Nyaunglebin",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 0
        },
        {
            "id": "52673500-e3cc-11ea-a203-c78fa3a9b1c1",
            "name": "Yamethin",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 0
        },
        {
            "id": "52d2c7a0-e3cc-11ea-b47f-b3c847c76729",
            "name": "Tabayin",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 1
        },
        {
            "id": "5393b320-e3cc-11ea-8549-cd895f413d8a",
            "name": "Kawlin",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 0
        },
        {
            "id": "54280b80-e3cc-11ea-a6c0-03ba43c3f281",
            "name": "Yinmabin",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 0
        },
        {
            "id": "ef46f380-fe73-11ea-a837-a38143f38e37",
            "name": "KFC-25 (Monywa)",
            "google_map_address": "Monywa, Myanmar (Burma)",
            "lat": 22.112264,
            "lng": 95.13249,
            "employees_count": 18
        },
        {
            "id": "7c4f5e30-2b29-11eb-933f-9dca6117970e",
            "name": "Kyaikto",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 12
        },
        {
            "id": "7e2b2060-2b29-11eb-bb1d-67b291286d53",
            "name": "Kalaw",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 0
        },
        {
            "id": "81244a80-2b29-11eb-a3bc-2f36301d1c3f",
            "name": "Dagon Myothit (North)",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 22
        },
        {
            "id": "815eb1d0-2b29-11eb-91f7-41331f111637",
            "name": "Ingapu",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 1
        },
        {
            "id": "825697e0-2b29-11eb-85cb-41a1a4d4e27a",
            "name": "Taungoo",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 0
        },
        {
            "id": "8292e4c0-2b29-11eb-9372-ebf641bb2d77",
            "name": "Kyangin",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 0
        },
        {
            "id": "82984340-2b29-11eb-8693-8370000e536d",
            "name": "Yegyi",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 2
        },
        {
            "id": "829d7250-2b29-11eb-bf5d-a1604a70b68c",
            "name": "Pantanaw",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 0
        },
        {
            "id": "82a36ea0-2b29-11eb-b73b-bdd2fecfc3d0",
            "name": "Thabaung",
            "google_map_address": "",
            "lat": null,
            "lng": null,
            "employees_count": 0
        },
        {
            "id": "8613ef20-345d-11eb-b1b6-b5aab92b836f",
            "name": "Test location",
            "google_map_address": "Yan Aye St, Yangon, Myanmar (Burma)",
            "lat": 16.82737,
            "lng": 96.158681,
            "employees_count": 2
        },
        {
            "id": "fb854fc0-6b4e-11eb-930c-abb9e45520be",
            "name": "KFC - 48 (Htauk Kyant)",
            "google_map_address": "Bago Roa, Htauk Kyant No 528 (A), Ou Paing No(14 Yangon, Yangon 11022, Myanmar (Burma)",
            "lat": 17.042608,
            "lng": 96.133875,
            "employees_count": 50
        },
        {
            "id": "68e0ed60-1c33-11ec-a230-f907838711d8",
            "name": "Saw",
            "google_map_address": "Aungmyaythazan, Mandalay, Myanmar (Burma)",
            "lat": 22.000193,
            "lng": 96.0944,
            "employees_count": 0
        },
        {
            "id": "7faaf6f0-1c33-11ec-a8bd-a16fd12d5cff",
            "name": "Bhamo",
            "google_map_address": "Kan Oo St, Myingyan, Myanmar (Burma)",
            "lat": 21.458544,
            "lng": 95.393313,
            "employees_count": 0
        },
        {
            "id": "b4c3a360-92fd-11ec-bd2c-759dd129cc2f",
            "name": "Pun Hlaing Clinic - North Dagon",
            "google_map_address": "No 33 Maha Bandoola Rd, Yangon, Myanmar (Burma)",
            "lat": 16.895392,
            "lng": 96.18741,
            "employees_count": 25
        },
        {
            "id": "d7d39a90-92ff-11ec-b515-2dba42f53df6",
            "name": "Family Clinic - Star City",
            "google_map_address": "Tower A-4, Star City ဝင်း, Thanlyin Tsp, Yangon, Myanmar (Burma)",
            "lat": 16.774374,
            "lng": 96.226445,
            "employees_count": 3
        },
        {
            "id": "6fa178b0-9300-11ec-a12e-5b845211d3b2",
            "name": "Pun Hlaing Clinic - Taw Win",
            "google_map_address": "15/C သံတမန်လမ်း, Yangon, Myanmar (Burma)",
            "lat": 16.786486,
            "lng": 96.140289,
            "employees_count": 45
        },
        {
            "id": "bc3243d0-cae0-11ec-9619-0126ab1e232c",
            "name": "Family Clinic - Sanchaung",
            "google_map_address": "31 Phyar Pone St, Yangon, Myanmar (Burma)",
            "lat": 16.806538,
            "lng": 96.131188,
            "employees_count": 1
        },
        {
            "id": "b1050110-0340-11ed-9340-ddcc84f5f81c",
            "name": "Yoma Micro Power Ayeyarwady",
            "google_map_address": "Ayeyarwady, Myanmar (Burma)",
            "lat": 17.034213,
            "lng": 95.226667,
            "employees_count": 53
        },
        {
            "id": "76583f90-1d30-11ed-b27c-d55ddd6f4c32",
            "name": "Yoma Micro Power Bago",
            "google_map_address": "Bago, Myanmar (Burma)",
            "lat": 17.322071,
            "lng": 96.466329,
            "employees_count": 35
        },
        {
            "id": "9e8c7010-1d30-11ed-b555-9f0616ab4211",
            "name": "Yoma Micro Power Kachin",
            "google_map_address": "Kachin, Myanmar (Burma)",
            "lat": 25.850904,
            "lng": 97.438136,
            "employees_count": 2
        },
        {
            "id": "2df5c650-319b-11ed-98e4-2786a8dec017",
            "name": "Padauk Garden Sales Gallery",
            "google_map_address": "undefined",
            "lat": 16.87301,
            "lng": 96.081235,
            "employees_count": 10
        },
        {
            "id": "31e6a960-3241-11ed-a552-23e33940d188",
            "name": "Padauk Garden Project",
            "google_map_address": "Yangon, Myanmar (Burma)",
            "lat": 16.873844,
            "lng": 96.085304,
            "employees_count": 12
        },
        {
            "id": "643219b0-8ffa-11ed-9230-b31d0992473b",
            "name": "test ZMH",
            "google_map_address": "16.789852, 96.133369",
            "lat": null,
            "lng": null,
            "employees_count": 0
        },
        {
            "id": "bbb5f2e0-9256-11ed-8e7c-e50c828f6aa0",
            "name": "Pun Hlaing Golf Club",
            "google_map_address": "R3RW+C5V, Yangon, Myanmar (Burma)",
            "lat": 16.841111,
            "lng": 96.095421,
            "employees_count": 37
        },
        {
            "id": "f38cf360-c6df-11ed-abbc-ff545de93815",
            "name": "Estate Management Office",
            "google_map_address": "R3PR+GR5, Pun Hlaing Ave, Yangon, Myanmar (Burma)",
            "lat": 16.836267,
            "lng": 96.092098,
            "employees_count": 4
        },
        {
            "id": "715840b0-c93b-11ed-8efb-8d15ac7637a6",
            "name": "PM Transport",
            "google_map_address": "R3QR+922, Yangon, Myanmar (Burma)",
            "lat": 16.837572,
            "lng": 96.090387,
            "employees_count": 13
        },
        {
            "id": "305545f0-c93c-11ed-b1e7-ff4a2fc0e759",
            "name": "PHE Transport",
            "google_map_address": "Daing Su Village, Hlaing Tharyar, R3VW+HQ2, ရန်ကုန်, Myanmar (Burma)",
            "lat": 16.84343,
            "lng": 96.096809,
            "employees_count": 25
        },
        {
            "id": "cad33f60-ceb7-11ed-9f21-c7928912a9b6",
            "name": "Campus Transport",
            "google_map_address": "R4R3+2H Yangon, Myanmar (Burma)",
            "lat": 16.840125,
            "lng": 96.103908,
            "employees_count": 20
        },
        {
            "id": "83fc2380-d298-11ed-97a6-f58c91bd0104",
            "name": "test",
            "google_map_address": "Q5G7+GXJ Yangon, Myanmar (Burma)",
            "lat": 16.776338,
            "lng": 96.164891,
            "employees_count": 0
        },
        {
            "id": "518f3540-dda0-11ed-8e06-3d15fc5352cb",
            "name": "Pun A Kery",
            "google_map_address": "R4Q4+J5 Yangon, Myanmar (Burma)",
            "lat": 16.839049,
            "lng": 96.105407,
            "employees_count": 4
        },
        {
            "id": "9b0bd840-de81-11ed-9868-bbd2ae795cd6",
            "name": "Peninsula Sales Gallery",
            "google_map_address": "22 Tower Road, Yangon, Myanmar (Burma)",
            "lat": 16.809718,
            "lng": 96.156818,
            "employees_count": 4
        },
        {
            "id": "becaded0-de82-11ed-a4cb-f5b45f149ed0",
            "name": "Star City Sales Gallery",
            "google_map_address": "Q6GH+JGR, Thanlyin, Myanmar (Burma)",
            "lat": 16.776611,
            "lng": 96.228769,
            "employees_count": 28
        },
        {
            "id": "605b68f0-14ab-11ee-a917-8bf47199ed2a",
            "name": "UC#3 Site Office",
            "google_map_address": "Golf Kwin Pat St, Hlaing Tharyar, R4R2+C6X, ရန်ကုန်, Myanmar (Burma)",
            "lat": 16.840975,
            "lng": 96.101569,
            "employees_count": 26
        },
        {
            "id": "1fd65c60-14ac-11ee-83ed-0d21b1463260",
            "name": "CLW Sale Gallery",
            "google_map_address": "V37R+QR9, Seik Kan Thar Street, Yangon, Myanmar (Burma)",
            "lat": 16.864409,
            "lng": 96.092102,
            "employees_count": 69
        },
        {
            "id": "593f19a0-14ac-11ee-9619-d53527f7a578",
            "name": "PDG Site Office",
            "google_map_address": "V3CM+F2, Yangon, Myanmar (Burma)",
            "lat": 16.872302,
            "lng": 96.082304,
            "employees_count": 4
        },
        {
            "id": "ac082070-5376-11ee-ae01-6b5a622a2dd6",
            "name": "KFC-49 (Terminal M)",
            "google_map_address": "undefined",
            "lat": 16.937145,
            "lng": 96.153803,
            "employees_count": 26
        },
        {
            "id": "0be22c80-5ec0-11ee-a747-67e3beeea7bf",
            "name": "Atlas Digi Myanmar",
            "google_map_address": "R3PR+HQF, Pun Hlaing Ave, Yangon, Myanmar (Burma)",
            "lat": 16.836695,
            "lng": 96.091434,
            "employees_count": 123
        },
        {
            "id": "d8b9fb10-64e8-11ee-b450-e9d070f9258c",
            "name": "TGR, Dagon",
            "google_map_address": "undefined",
            "lat": 16.788123,
            "lng": 96.139342,
            "employees_count": 3
        },
        {
            "id": "1d91c7e0-7f9b-11ee-89ff-0b303dc83095",
            "name": "YHE/HINO Zone 1",
            "google_map_address": "No-89 (B/4), Seik Kan Tar Street, Hlaing Thar Yar, Industrial Zone-1, Yangon, Myanmar (Burma)",
            "lat": 16.837815,
            "lng": 96.078273,
            "employees_count": 84
        },
        {
            "id": "63cf44c0-7f9b-11ee-bae4-1d46173b26ae",
            "name": "YHE Mandalay",
            "google_map_address": "No.(H-9), Phoe Yazar St & Corner of 70 St Industrial Zone(1 Pyi Gyi Takon Tsp,Mandalay, Mandalay 05051, Myanmar (Burma)",
            "lat": 21.885689,
            "lng": 96.097999,
            "employees_count": 19
        },
        {
            "id": "16ff6020-7f9c-11ee-b119-637b53818e24",
            "name": "HINO Mandalay",
            "google_map_address": "V39V+RFJ, Unnamed Road, Mandalay, Myanmar (Burma)",
            "lat": 21.891793,
            "lng": 96.095246,
            "employees_count": 10
        },
        {
            "id": "b0e82770-7f9c-11ee-825e-47b2dc9e54cf",
            "name": "YHE Pyay",
            "google_map_address": "R7F3+F6P, Pyay, Myanmar (Burma)",
            "lat": 18.823718,
            "lng": 95.253085,
            "employees_count": 10
        },
        {
            "id": "d55ee8e0-7f9c-11ee-8823-bb10da35541c",
            "name": "YHE Pathein",
            "google_map_address": "RQ39+C5G, Pathein, Monywa Highway Road, City, Myanmar (Burma)",
            "lat": 16.803585,
            "lng": 94.76804,
            "employees_count": 8
        },
        {
            "id": "2879a610-7f9d-11ee-a0fe-09ceb198bac8",
            "name": "YHE Naypyidaw",
            "google_map_address": "Q66C+J5G, Pyinmana, Myanmar (Burma)",
            "lat": 19.760306,
            "lng": 96.220509,
            "employees_count": 7
        },
        {
            "id": "adbaae10-7f9f-11ee-89f4-e516cfd61928",
            "name": "YHE hinthada",
            "google_map_address": "NatMaw Road, Myanmar (Burma)",
            "lat": 17.622833,
            "lng": 95.4457,
            "employees_count": 8
        },
        {
            "id": "ad5c6f00-7fa0-11ee-b0e8-43ba3abe0e4a",
            "name": "YHE Pakokku",
            "google_map_address": "83J5+73M, Mindat - Pakokku Rd, Pakokku, Myanmar (Burma)",
            "lat": 21.330724,
            "lng": 95.057675,
            "employees_count": 6
        },
        {
            "id": "47a83d90-7fa1-11ee-a453-7d4e2a03e498",
            "name": "YHE Heho",
            "google_map_address": "PRF6+J9V, He Hoe, Myanmar (Burma)",
            "lat": 20.723347,
            "lng": 96.811066,
            "employees_count": 13
        },
        {
            "id": "50dfafa0-93f8-11ee-b9d0-ebae1b6516fc",
            "name": "Building No (15), MICT Park, Hlaing Township updated",
            "google_map_address": "MICT Park Main Building, Yangon, Myanmar (Burma)",
            "lat": 16.84964,
            "lng": 96.129215,
            "employees_count": 0
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/locations

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/locations

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/locations" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/locations"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/locations

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

PUT api/v1/locations/{id}

requires authentication

Example request:
curl --request PUT \
    "http://localhost/api/v1/locations/architecto" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/locations/architecto"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

PUT api/v1/locations/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the location. Example: architecto

DELETE api/v1/locations/{id}

requires authentication

Example request:
curl --request DELETE \
    "http://localhost/api/v1/locations/architecto" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/locations/architecto"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

DELETE api/v1/locations/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the location. Example: architecto

GET api/v1/positions

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/positions" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/positions"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Positions retrieved successfully",
    "data": [
        {
            "id": "00261aa0-6fa6-11eb-8f38-814f97c41405",
            "name": "Internal Audit Senior"
        },
        {
            "id": "0052b930-6fa6-11eb-9631-0729f99689c1",
            "name": "Autoline Application Support"
        },
        {
            "id": "006dac80-6fa6-11eb-9071-71ea2f7fcc63",
            "name": "Golf Club Secretary"
        },
        {
            "id": "007aeb60-5394-11ea-ba81-43409e66162e",
            "name": "IT Officer"
        },
        {
            "id": "009fb660-5394-11ea-a9d3-07786fb8ae32",
            "name": "Senior Radiographer "
        },
        {
            "id": "00ad32c0-c0d5-11ea-bf1c-fb578c38b3d4",
            "name": "General Manager (Operation Services)"
        },
        {
            "id": "00b66bb0-7958-11ea-a573-01c1ff922ca3",
            "name": "Kyay Oh Leader"
        },
        {
            "id": "00c4ec90-5394-11ea-8b3a-7f37b1c3ed5f",
            "name": "Senior Medical Techonologist"
        },
        {
            "id": "00d47af0-ca98-11ea-a839-f9cac4ff318b",
            "name": "Project Architect"
        },
        {
            "id": "00e87c60-5394-11ea-985d-45f9a2332d24",
            "name": "Pharmacist"
        },
        {
            "id": "010c2970-5394-11ea-a380-bd7de10fde92",
            "name": "Senior Medical Record"
        },
        {
            "id": "01152900-ca98-11ea-8f51-af9a6c959883",
            "name": "Quantity Surveyor (MEP)"
        },
        {
            "id": "01199bf0-fce5-11ec-8c08-63e9714a092b",
            "name": "Head of Risk Management and Assurance"
        },
        {
            "id": "0131b730-5394-11ea-bf5f-2d756141fb6c",
            "name": "House Keeping Supervisor "
        },
        {
            "id": "01555690-2fd2-11ec-9adf-c3e058862980",
            "name": "Deputy Production Manager"
        },
        {
            "id": "015568c0-7958-11ea-ae13-f3ab1b498060",
            "name": "Shop Supervisor"
        },
        {
            "id": "01568d80-5394-11ea-a1f5-f11df789fe57",
            "name": "Procurement Officer"
        },
        {
            "id": "015a2b70-5f69-11ea-97a7-59a264a1628f",
            "name": "Operations and Development Manager"
        },
        {
            "id": "0181ab00-1a23-11ee-8c6d-0f9f7ad4396d",
            "name": "Corporate Finance Manager"
        },
        {
            "id": "019c8670-ca98-11ea-8011-036a69c7cbd4",
            "name": "Senior Site Engineer (ACMV)"
        },
        {
            "id": "019f26c0-5394-11ea-8a5f-a7c545386ac2",
            "name": "Sale & Marketing Officer "
        },
        {
            "id": "01bc5d90-588f-11ea-aca6-dd39346b27ab",
            "name": "Pharmacy Assistant "
        },
        {
            "id": "01bf0f40-f9e3-11ea-8001-f372fbb783f0",
            "name": "Senior Credit Collections Manager"
        },
        {
            "id": "01c3b260-5394-11ea-b024-d5b5721d94bb",
            "name": "Operations Manager"
        },
        {
            "id": "01ed0710-7958-11ea-a2d4-07f748e9da9e",
            "name": "Head Waitress"
        },
        {
            "id": "01ed40c0-ca98-11ea-af6e-c392e37ba989",
            "name": "Assistant Planning Engineer (MEP)"
        },
        {
            "id": "0230c1e0-ca98-11ea-a7d3-715dfe30dbfa",
            "name": "Assistant Planning Engineer (Structure)"
        },
        {
            "id": "0244b6d0-db19-11eb-9a3d-3ba22da11615",
            "name": "Project & NH Procurement Manager"
        },
        {
            "id": "025a52b0-588f-11ea-88b0-d72dfe2c96f8",
            "name": "Med Technologist "
        },
        {
            "id": "0275dd60-ca98-11ea-be20-25095b5ef6a4",
            "name": "Site Engineer(Archi/ID)"
        },
        {
            "id": "02850660-a5db-11ed-97fc-473e6906519d",
            "name": "Events Manager"
        },
        {
            "id": "028c09e0-6b08-11ed-b37f-ef47191b9aa6",
            "name": "Pre-Delivery-Inspector"
        },
        {
            "id": "02b10340-3b8f-11eb-8ec8-e9691506c48b",
            "name": "Head of Development"
        },
        {
            "id": "02bc7450-ca98-11ea-aefc-b1fec1bd690c",
            "name": "Resident Interior Design Architect"
        },
        {
            "id": "02d44e50-3b7f-11eb-ad39-898f8fffb99b",
            "name": "Senior Manager Logistics"
        },
        {
            "id": "02d57220-280c-11ed-bd3f-c73b774db7cf",
            "name": "Light Goods Vehicle Drivers"
        },
        {
            "id": "02ed7400-78a0-11ed-bffc-55302252889e",
            "name": "Restauant Manager"
        },
        {
            "id": "0302ffe0-7958-11ea-a04c-092b5c77d336",
            "name": "BBQ Helper"
        },
        {
            "id": "0317f0f0-403b-11eb-ab21-af81df03c18c",
            "name": "Beautician"
        },
        {
            "id": "03319bb0-3b80-11eb-b30d-498681f10979",
            "name": "Logistics Manager (JCB and Generator)"
        },
        {
            "id": "034853a0-588f-11ea-8c93-4f094b9b4aa6",
            "name": "Medical Technologist (Part tim"
        },
        {
            "id": "035d20c0-58d2-11eb-aa70-3dc20988fe4b",
            "name": "Sr-Delivery Staff"
        },
        {
            "id": "03693090-7958-11ea-ad4c-c7083fbdc067",
            "name": "Junior Kyay Oh"
        },
        {
            "id": "0376f540-58d2-11eb-95f0-559fd1c25ab1",
            "name": "Assistant HACCP"
        },
        {
            "id": "039704b0-ba7e-11ea-929e-6526d5344f7a",
            "name": "Head of Strategy"
        },
        {
            "id": "039a1550-58d2-11eb-8e22-7f9fb6e706de",
            "name": "Asst: Purchasing Accountant"
        },
        {
            "id": "03b462f0-58d2-11eb-9ecc-a582ee7f4371",
            "name": "Assistant HR Admin"
        },
        {
            "id": "03f058f0-aa0b-11ea-afcc-0b7591e9abe7",
            "name": "Manager of VIP services"
        },
        {
            "id": "0403ae70-58d2-11eb-99ba-1b4eaa691a0f",
            "name": "Cook Leader"
        },
        {
            "id": "042015e0-7963-11ea-99b9-b141742fe1c6",
            "name": "Technical Assistant"
        },
        {
            "id": "042230d0-58d2-11eb-965d-a5f9970f28b6",
            "name": "Senior Cook"
        },
        {
            "id": "04255df0-5709-11eb-8973-5b07337ca5f7",
            "name": "O&M Cluster Manager"
        },
        {
            "id": "04800d70-3c15-11ee-ad3d-21bcbdff743e",
            "name": "Design Engineer"
        },
        {
            "id": "04a634c0-58d2-11eb-9218-557aa4856cfb",
            "name": "Production Helper"
        },
        {
            "id": "04aebfd0-588f-11ea-9404-c7ee0780be30",
            "name": "Senior Physiotherapist"
        },
        {
            "id": "04cbb060-9ba9-11ed-8179-8d7dddea03b1",
            "name": "Assistant HR & Admin Manager"
        },
        {
            "id": "04fe4e30-588f-11ea-a5d6-3d205aefe214",
            "name": "Physiotherapist 1"
        },
        {
            "id": "059841c0-58d2-11eb-b6cc-7d2d0bef337b",
            "name": "Asst:QC Leader"
        },
        {
            "id": "05bbe0f0-0c4e-11eb-8450-adc2646ab55c",
            "name": "Senior Credit Controller"
        },
        {
            "id": "05be4d30-f6d5-11e9-91d5-5de2ba8af05b",
            "name": "Communications Coordinator"
        },
        {
            "id": "0613aba0-588f-11ea-bd0c-5d44676a6602",
            "name": "Staff Nurse(Part Time)"
        },
        {
            "id": "06185840-8a15-11ec-88ef-71028379deb8",
            "name": "Maintenance Manager"
        },
        {
            "id": "064c4910-ad6b-11eb-9bf9-57680c621ca2",
            "name": "Director ( HR Operations)"
        },
        {
            "id": "066c2960-7d00-11ed-a38e-330ecc7e4fd0",
            "name": "Group Technology Coordinator"
        },
        {
            "id": "069c1ca0-97d9-11ed-a5b3-292cd38d713c",
            "name": "Fleet Maintenance Manager"
        },
        {
            "id": "076de540-02da-11eb-aa77-776f4bcf3ac1",
            "name": "Finance Manager (Financial Reporting & Analytics)"
        },
        {
            "id": "07c0d710-3ae5-11ed-b73c-a17bd673081f",
            "name": "HR Executives"
        },
        {
            "id": "07e3b5f0-7958-11ea-9998-4dddd3f3aa2d",
            "name": "Trainee Bartender"
        },
        {
            "id": "07f81c20-3ae6-11ed-ae2c-5ff0dabf5e5e",
            "name": "Sr. Marketing Executive"
        },
        {
            "id": "0812d500-3325-11eb-99f1-69cdb05037e8",
            "name": "Head of Supply Chain & QA"
        },
        {
            "id": "084a6370-3ae6-11ed-a9af-ab9dae74bb83",
            "name": "Sr. Digital Marketing Executive"
        },
        {
            "id": "08698ff0-2cbb-11ec-a6d5-6dfe12d8cb30",
            "name": "Director of Food & Beverage"
        },
        {
            "id": "08c516e0-3ae6-11ed-894c-555e5bdaf5eb",
            "name": "QA Automation Engineer"
        },
        {
            "id": "08f3e5d0-3ae5-11ed-a604-89018b8bab3d",
            "name": "Director, Government Relations"
        },
        {
            "id": "091a22b0-09d1-11ed-8091-efcabdce1d63",
            "name": "Stff"
        },
        {
            "id": "095fe4d0-588f-11ea-bf5d-0f2f79a93521",
            "name": "OT Technician"
        },
        {
            "id": "0995aa10-09d1-11ed-be43-a3de25681f92",
            "name": "Farm Manager"
        },
        {
            "id": "09976210-7569-11ea-b83f-af7fb05a6166",
            "name": "Jr.Cashier"
        },
        {
            "id": "09bcff30-74b0-11ec-980c-8dcc2c09172c",
            "name": "Engineer - Biomedical"
        },
        {
            "id": "09c325d0-a3e7-11eb-b4cb-c79cd1253b44",
            "name": "Fixed Asset Manager"
        },
        {
            "id": "09d029e0-52cb-11ea-8acb-a97e9f3f375e",
            "name": "Investor Satisfaction Manager"
        },
        {
            "id": "09daf620-42e7-11eb-81d6-05e021554272",
            "name": "Boat Crew"
        },
        {
            "id": "0a075140-74b0-11ec-9c4c-1f6365e30de1",
            "name": "Assistant Biomedical Engineer "
        },
        {
            "id": "0a252090-366e-11ee-ad2c-e3d0b190d694",
            "name": "Merchant Acquisition Specialist"
        },
        {
            "id": "0a316250-74b0-11ec-a185-eb9bab521dc4",
            "name": "Manager - Customer Care"
        },
        {
            "id": "0a6656c0-74b0-11ec-8484-595d0279835e",
            "name": "Customer Care Officer"
        },
        {
            "id": "0a8fda60-74b0-11ec-a379-9fe590474b3b",
            "name": "Coordinator - Emerging Health"
        },
        {
            "id": "0ac4c560-74b0-11ec-99f9-298f3dbae839",
            "name": "Telehealth  Operator"
        },
        {
            "id": "0ad21580-2461-11ee-ac11-13f7283211b9",
            "name": "Site Supervisor (MEP)"
        },
        {
            "id": "0b40bb80-ff96-11ed-8b21-9fc596f67dfc",
            "name": "Wash Bay Supervisor"
        },
        {
            "id": "0b4e19b0-74b0-11ec-8692-7928e3b53dc5",
            "name": "F&B Officer - Coffee Shop"
        },
        {
            "id": "0b690700-0673-11ee-bb29-1faf94a8273d",
            "name": "Residential Leasing Manager"
        },
        {
            "id": "0be2c400-74b0-11ec-8350-079f297082c8",
            "name": "Assistant Manager - Accounts"
        },
        {
            "id": "0c010cf0-f342-11ea-973b-cfb6dfce2667",
            "name": "Engineer (Design & Engineering)"
        },
        {
            "id": "0c2ab900-7569-11ea-9351-150932269d7e",
            "name": "Logistics Assistant ( GPS )"
        },
        {
            "id": "0c4d9ac0-8468-11ea-affa-178aa35fd67f",
            "name": "Shareholder Representatives"
        },
        {
            "id": "0c4ee900-389c-11ed-abaf-85eb384b6b5b",
            "name": "Sales & Operations Manager"
        },
        {
            "id": "0cab6990-7569-11ea-9bee-b12ea6a99ec1",
            "name": "Technician Supervisor"
        },
        {
            "id": "0cb3fef0-8468-11ea-b6a9-857c02ac0879",
            "name": "PROJECTS MANAGER"
        },
        {
            "id": "0cc96b90-3ae7-11ed-91a3-7351d8db5b11",
            "name": "Analyst I"
        },
        {
            "id": "0ce49ac0-74b0-11ec-b0ab-c95c9924c200",
            "name": "Manager - Financial Counselling"
        },
        {
            "id": "0cf253d0-3ae7-11ed-8777-91f5ae2184f4",
            "name": "Sr. Software Engineer"
        },
        {
            "id": "0cfb3300-f550-11ed-93c7-6de9f8fece95",
            "name": "ERP Functional Consultant"
        },
        {
            "id": "0d0dcfa0-74b0-11ec-a087-dba81c219ade",
            "name": "Senior Front Office Officer"
        },
        {
            "id": "0d143fd0-aa35-11ea-9eb6-c7d7660566e6",
            "name": "Government Relations Executive"
        },
        {
            "id": "0d1a74f0-b050-11ed-8ba2-257ba421da2a",
            "name": "Mechnical & Technical (M&E) Technician"
        },
        {
            "id": "0d1b66a0-3ae7-11ed-8843-e9edcc1e1aed",
            "name": "Jr. Software Engineer"
        },
        {
            "id": "0d20e640-588f-11ea-938e-c15fba8b7893",
            "name": "Coordinator(ICU&OT)"
        },
        {
            "id": "0d33ce90-7bd0-11eb-ac12-5ddb704613c3",
            "name": "Business & Analysis Manager"
        },
        {
            "id": "0d388dd0-e421-11e9-87c2-cb39dbd81643",
            "name": "Supervisor, Front Office"
        },
        {
            "id": "0d4a6970-588f-11ea-9d9e-9582a96c5e1e",
            "name": "Asst Chief Engineer"
        },
        {
            "id": "0d730620-588f-11ea-9a2a-c17465e0bbae",
            "name": "Engineer ( ACMV )"
        },
        {
            "id": "0d7643e0-5394-11ea-97c0-77edb9465870",
            "name": "Midwife"
        },
        {
            "id": "0da68d70-588f-11ea-b1ba-af485ada3c36",
            "name": "Shift In-Charge"
        },
        {
            "id": "0daa5af0-c304-11ed-8b66-393d7c1d7f98",
            "name": "Jr. Customer Service Executive"
        },
        {
            "id": "0dbd5d80-5394-11ea-bd80-d976671aff82",
            "name": "Health Care Assistant"
        },
        {
            "id": "0dcea980-588f-11ea-ad73-a378011caac2",
            "name": "Technician (Electrical)"
        },
        {
            "id": "0df6d010-588f-11ea-b4ba-bd4d34af4caa",
            "name": " Engineer(Electrical)"
        },
        {
            "id": "0e05af60-5854-11ee-a6a3-df4eabd2f4d5",
            "name": "Gym Instructor"
        },
        {
            "id": "0e073200-2cfc-11ee-898d-279c21ae09e8",
            "name": "Senior Accoutant"
        },
        {
            "id": "0e1eb670-588f-11ea-8c5a-bdfe18684958",
            "name": "Engineer ( Mechanical)"
        },
        {
            "id": "0e4c7ea0-79b4-11ea-a6f6-db97525cd9b1",
            "name": "China Advisor "
        },
        {
            "id": "0e6ef8b0-588f-11ea-ab52-2344f1358eb7",
            "name": "Technician (Mechanical)"
        },
        {
            "id": "0e7ed3f0-74b0-11ec-825c-93c292ebd90d",
            "name": "Call Center Assistant"
        },
        {
            "id": "0e957500-79b4-11ea-b56c-918f94767191",
            "name": "Design Project Manager"
        },
        {
            "id": "0ebeb9b0-588f-11ea-85b4-db4bd218126a",
            "name": "Technician(Mechnical)"
        },
        {
            "id": "0edc3900-d2d0-11ed-8d11-816d657ba85f",
            "name": "Executive Assistant (cum) Librarian Assistant"
        },
        {
            "id": "0ef3cf50-ac5a-11ea-8bd2-2bfaab1a6444",
            "name": "Head Graphic Designer"
        },
        {
            "id": "0ef633f0-5394-11ea-bf43-774ffb723eb5",
            "name": "Unit Head"
        },
        {
            "id": "0f3f8980-d207-11ec-af87-21c664a17471",
            "name": "Finance Analyst "
        },
        {
            "id": "0f4389f0-79d5-11ed-b223-452817dec1a6",
            "name": "Manager (Design Tools)"
        },
        {
            "id": "0f690790-2955-11eb-a3a8-fbac87c65890",
            "name": "General Manager - Development"
        },
        {
            "id": "0f6d2e30-6048-11ea-9818-1b8117bc823a",
            "name": "HR Executive (Personnel)"
        },
        {
            "id": "0fa4c450-74b0-11ec-960f-ab459c39d520",
            "name": "Senior HR Officer"
        },
        {
            "id": "0fbb8ee0-c1f6-11ea-af1e-074f89f7bc26",
            "name": "Operation Superintendent"
        },
        {
            "id": "0ff7ef00-74b0-11ec-b262-8f8cedd5b2a6",
            "name": "Emeritus Patron - Nursing"
        },
        {
            "id": "0ffbb7d0-b2d6-11eb-abb0-df80cd69908b",
            "name": "Strategic Business Director"
        },
        {
            "id": "10232750-74b0-11ec-a986-d74455e20e0e",
            "name": "Manager - Operation and IT Asset"
        },
        {
            "id": "1057a710-aa68-11ea-b724-a92d9c6cf910",
            "name": "Spare Parts Coordinator"
        },
        {
            "id": "1078ba40-74b0-11ec-830e-416fae9ca97c",
            "name": "Clinical Instructor - Nursing"
        },
        {
            "id": "10823000-69ce-11ea-ab5d-d92231f58856",
            "name": "Executive Director"
        },
        {
            "id": "109674f0-15f9-11ec-ac91-895b27bf4011",
            "name": "Senior Project Engineer (C&I)"
        },
        {
            "id": "10a21ea0-74b0-11ec-ab52-1d2a3620b851",
            "name": "Coordinator - Facility "
        },
        {
            "id": "10a42750-1886-11ed-84d3-dda7a709a748",
            "name": "Head Chinese Chef"
        },
        {
            "id": "10c335d0-02dc-11eb-8d99-f59b178ad6fd",
            "name": "Senior Management Office Executive"
        },
        {
            "id": "10ccd0b0-74b0-11ec-9e77-db7294bab9c6",
            "name": "Manager - Human Resources"
        },
        {
            "id": "11201460-74b0-11ec-8c68-7d3511f1a9c9",
            "name": "Infection Control Nurse "
        },
        {
            "id": "11268760-9b72-11ec-98b8-212471038c1f",
            "name": "Junior Data Analyst"
        },
        {
            "id": "1149ce60-74b0-11ec-8983-f721aee2e4d0",
            "name": "Manager - Application and Bill "
        },
        {
            "id": "11684170-4b94-11ed-b677-7515d514a53e",
            "name": "Sr Manager - Key Account & Car Share"
        },
        {
            "id": "116c56b0-9b72-11ec-b1ed-c3a90512f91f",
            "name": "Business Intelligent "
        },
        {
            "id": "1170e8e0-0343-11eb-8c41-dd5a983b4b48",
            "name": "Campus Manager"
        },
        {
            "id": "1174cc60-74b0-11ec-af79-19fed19fe56d",
            "name": "Application Analyst"
        },
        {
            "id": "117b9ae0-588f-11ea-97f3-d5e6ff050120",
            "name": "Coffee Shop Cook"
        },
        {
            "id": "119e1650-74b0-11ec-b31b-a5486e802a63",
            "name": "Management Assoicate - CEO Office"
        },
        {
            "id": "11b3a9a0-588f-11ea-9dc2-0792dbddce16",
            "name": "Cook Helper"
        },
        {
            "id": "11dac8a0-74b0-11ec-ba34-af98a10c3468",
            "name": "Case Coordinator - Ortho"
        },
        {
            "id": "11ecd460-2b22-11eb-bab1-37bbf7605720",
            "name": "Warehouse Opeative"
        },
        {
            "id": "1203d960-588f-11ea-915a-8f2d909c2a5e",
            "name": "Head Waiter"
        },
        {
            "id": "1203e580-74b0-11ec-bd79-35a542ab1a87",
            "name": "Case Coordinator - Operation Theater"
        },
        {
            "id": "122cb0c0-74b0-11ec-8e79-bbf365484d48",
            "name": "Operations Manager - Quality Management"
        },
        {
            "id": "12566b80-74b0-11ec-8763-3f54b91ea312",
            "name": "Case Coordinator - Cardiac"
        },
        {
            "id": "1268fe80-74b3-11ea-877b-5143f9f3c238",
            "name": "National After Sales Manager (New Holland)"
        },
        {
            "id": "12a93b90-74b0-11ec-a7c5-b52c03eb21dd",
            "name": "Case Coordinatror - Plastic"
        },
        {
            "id": "12dc5820-794d-11ee-ab87-8398d105efc4",
            "name": "Night Auditor/Receptionist"
        },
        {
            "id": "1306bc50-74b0-11ec-8a45-e7a394ac8019",
            "name": "Housekeeper - OT"
        },
        {
            "id": "13302720-2b28-11eb-bff4-bde895f804bd",
            "name": "HR Director (Compensation & Benefits)"
        },
        {
            "id": "13380620-2b28-11eb-aeb1-f5d2c46cfc48",
            "name": "HR Manager (Compensation & Benefits)"
        },
        {
            "id": "1345bc60-2b28-11eb-abba-65b77e76f6d1",
            "name": "HR Executive (Compensation & Benefits)"
        },
        {
            "id": "134bbc30-2b28-11eb-95d1-199a1bfebced",
            "name": "General Manager - Truck & Trailer"
        },
        {
            "id": "13542250-6367-11ea-be75-d55cd83f226b",
            "name": "Inventory Administrator"
        },
        {
            "id": "13622680-2b28-11eb-8227-efc619355a0a",
            "name": "Liasion Manager"
        },
        {
            "id": "1365c830-2fde-11ec-b656-8b8d409d9965",
            "name": "Deputy Batching Plant Manager"
        },
        {
            "id": "136ed9e0-455b-11ee-b467-a372d9fa9b23",
            "name": "Service Admin & Warranty Claim"
        },
        {
            "id": "13715a00-2b28-11eb-8c56-1bb6b1c7e24d",
            "name": "Assistant HR Manager (Compensation & Benefits)"
        },
        {
            "id": "138f4ec0-0909-11ee-bbe2-01391ca33f8a",
            "name": "Assistant Office Supervisor"
        },
        {
            "id": "13908be0-6367-11ea-8a46-9f4b332aa46f",
            "name": "Market Planning & Development Associate"
        },
        {
            "id": "1392f4a0-2b28-11eb-a360-df65d5762ff2",
            "name": "Assistant Project Manager (MEP)"
        },
        {
            "id": "13a89de0-2b28-11eb-946d-453877cc22c1",
            "name": "Sr. HR Executive (Compensation & Benefits)"
        },
        {
            "id": "13bdd820-9dea-11ec-9370-1d5087fa1299",
            "name": "Senior Business Intelligent Analyst"
        },
        {
            "id": "13c289a0-793e-11ea-86cc-a7bbb186a569",
            "name": "Chief Learning Officer"
        },
        {
            "id": "13d89ae0-8921-11ee-8abe-f7cf36109f22",
            "name": "Chief Steward"
        },
        {
            "id": "13fd4480-2b28-11eb-9ed7-155c3b0a86fd",
            "name": "Estate Operation Manager"
        },
        {
            "id": "14008200-1d37-11ed-ba3d-b579d8ccb3fe",
            "name": "Field HR Assistant"
        },
        {
            "id": "14436cc0-2b28-11eb-8784-578db29a0454",
            "name": "Human Resources Executive (C&B)"
        },
        {
            "id": "1447ce00-c214-11ed-80bc-8fc8376098d0",
            "name": "Sales & Marketing Supervisor"
        },
        {
            "id": "144feca0-2b28-11eb-834a-f34473753427",
            "name": "Procurement / Quantity Surveyor"
        },
        {
            "id": "14575180-2b28-11eb-82e2-9dc3411b52e4",
            "name": "Office & Human Resources Manager"
        },
        {
            "id": "1464e3b0-6348-11ea-89f2-8b089971e397",
            "name": "Head of HR & Admin"
        },
        {
            "id": "148e6500-2b28-11eb-83a6-b1410cfaaffb",
            "name": "Foremen"
        },
        {
            "id": "14956510-2b28-11eb-a5f2-8fa1342b69e9",
            "name": "Skilled Labour 2"
        },
        {
            "id": "14967b00-5394-11ea-b6e4-3df3fb53cc49",
            "name": "Acting Unit Head"
        },
        {
            "id": "14a284d0-2b28-11eb-aa26-7db6520f9ec8",
            "name": "Home Owner Relation Manager"
        },
        {
            "id": "14b522e0-2b28-11eb-b215-bfea2df759e4",
            "name": "Deputy Club Manager"
        },
        {
            "id": "14c8fe10-588f-11ea-b938-cbd1a6f2edcb",
            "name": "Store Officer"
        },
        {
            "id": "15123a70-2b28-11eb-b156-11f703241630",
            "name": "Landscape Manager"
        },
        {
            "id": "15149cc0-5ecb-11ea-a406-eb06175e04db",
            "name": "IT Governance Specialist"
        },
        {
            "id": "15491d50-5ecb-11ea-a3f5-6109c07bee12",
            "name": "Business Intelligent Manager"
        },
        {
            "id": "1556e180-2b28-11eb-938d-6bd881f821e8",
            "name": "HK & Linen Attendant"
        },
        {
            "id": "155e1fc0-2b28-11eb-a096-91e2becb7a0e",
            "name": "In-charge"
        },
        {
            "id": "15670000-2b28-11eb-8761-73734ca0ef67",
            "name": "Air-con Technical Officer"
        },
        {
            "id": "1572cf60-07db-11ed-8c99-5ff44d41ee65",
            "name": "Parts Assistant"
        },
        {
            "id": "157315c0-be3a-11ed-bb1f-15ac52954ed3",
            "name": "Credit Control Manager"
        },
        {
            "id": "1573abd0-ab25-11ea-91a5-f1a04aac11b0",
            "name": "Training Officer Trainee"
        },
        {
            "id": "15824530-c3ce-11ed-85f1-e75b51f5b58e",
            "name": "Senior Credit Control"
        },
        {
            "id": "15b99dd0-aa0f-11ea-a575-3be1ea1db0f0",
            "name": "Head of Contracting, Database and System"
        },
        {
            "id": "1614a990-5394-11ea-8470-d37c39393afc",
            "name": "Biomedical Engineer"
        },
        {
            "id": "16170890-2b28-11eb-8ff6-d5ef5884ca20",
            "name": "Site Engineer (Architect/Interior Design)"
        },
        {
            "id": "161ac110-1004-11ea-b4b2-83050c52db48",
            "name": "Employee Satisfaction Manager "
        },
        {
            "id": "161b5aa0-07db-11ed-a4dc-71b09f3561b5",
            "name": "CRM Assistant"
        },
        {
            "id": "16392090-5394-11ea-a9c3-31ff850871aa",
            "name": "FO Officer "
        },
        {
            "id": "164b70b0-07db-11ed-bc46-6d38514bbc74",
            "name": "After Sales Assistant"
        },
        {
            "id": "16510ce0-1b13-11ee-be66-efd8cdccd736",
            "name": "Merchant Acquisition Manager"
        },
        {
            "id": "167040c0-0bc2-11ed-8d76-3f59f425bd23",
            "name": "Fuel Analyst"
        },
        {
            "id": "167bf860-07db-11ed-8ed4-f72253590fac",
            "name": "CRM Assistant/ Receptionist"
        },
        {
            "id": "16806330-5394-11ea-ad7c-375ef2c3e75f",
            "name": "FO Assistant "
        },
        {
            "id": "168624c0-4dc2-11ed-a8d8-dd9bc0830f15",
            "name": "Site Reliability Engineer"
        },
        {
            "id": "1687c520-4de8-11ed-8bd0-c5d71b3330a4",
            "name": "Android Devloper"
        },
        {
            "id": "16985490-9d5c-11ed-b62a-919b86919886",
            "name": "Sports & Facility Manager"
        },
        {
            "id": "16acd9c0-07db-11ed-8985-a3462921c51b",
            "name": "Sr. Graphic Designer"
        },
        {
            "id": "16db22b0-4de8-11ed-b47b-c15f5c0610db",
            "name": "UI/UX Designer"
        },
        {
            "id": "16db75d0-4dc2-11ed-bcf6-2f55952af902",
            "name": "Junior Business Analyst"
        },
        {
            "id": "1716bef0-77c0-11ec-81ba-1787ad995093",
            "name": "In-Charge - Customer Care & Loyalty"
        },
        {
            "id": "1717f210-5888-11ea-9e35-83eecd1d5a88",
            "name": "Driver Team Leader"
        },
        {
            "id": "17483530-07db-11ed-bb5e-db87b8e90e25",
            "name": "Strategic Planning Executive"
        },
        {
            "id": "176aff80-58df-11eb-a523-f1e3f3c06f25",
            "name": "Coffee Helper"
        },
        {
            "id": "1777a1b0-5394-11ea-bc29-277874b8d0a9",
            "name": "Customer Liaison Officer"
        },
        {
            "id": "177c6860-2b28-11eb-8f87-4bf5513b9596",
            "name": "Assistant Manager, Employee Service"
        },
        {
            "id": "177c9780-77c0-11ec-aa5e-9953cd80447a",
            "name": "Assistant Manager - Imaging"
        },
        {
            "id": "17988840-74b0-11ec-b2e2-872a6338cab8",
            "name": "Officer - Claim"
        },
        {
            "id": "179ea160-a3e7-11eb-b083-e3b647ea7f5a",
            "name": "Community Engagement Senior Officer"
        },
        {
            "id": "17a4acb0-4307-11ea-9592-1d088a34479d",
            "name": "Senior Vice President"
        },
        {
            "id": "17b38850-6e7c-11ea-958b-8f738ec5e1f0",
            "name": "Head of Yoma Car Share"
        },
        {
            "id": "17bdcf60-5394-11ea-aa6d-1b1f175db2be",
            "name": "Senior Engineer(M&E)"
        },
        {
            "id": "17ca1050-4307-11ea-b858-610813d82e09",
            "name": "GM of Strategic Investment"
        },
        {
            "id": "17d05c60-74b0-11ec-babb-1b5e6d371b0c",
            "name": "Coordinator - International Patient Care"
        },
        {
            "id": "17e24c00-2b28-11eb-b49c-b5ae844cb042",
            "name": "Sr. HR Executive (Training & Development)"
        },
        {
            "id": "17e255d0-5394-11ea-88b6-5563ba7d363a",
            "name": "Incharge Engineer (M&E)"
        },
        {
            "id": "17e97ef0-2b28-11eb-ab60-e5baa80b01c3",
            "name": "Assistant Health & Safety Manager"
        },
        {
            "id": "17ecdf70-4307-11ea-b8e7-c330f09ae661",
            "name": "Director of HR"
        },
        {
            "id": "17f99650-74b0-11ec-a3d6-599f5d916059",
            "name": "Assistant Manager - Laboratory"
        },
        {
            "id": "18054e20-5394-11ea-b32e-d1c3203226ab",
            "name": "Engineer(M&E)"
        },
        {
            "id": "180c7dc0-2b28-11eb-9cdb-eb4ecc6e8c2c",
            "name": "HR Manager (Training & Development)"
        },
        {
            "id": "180d2e20-4307-11ea-9853-43e95d206106",
            "name": "Personnel Manager (HR)"
        },
        {
            "id": "181e8d20-2b28-11eb-9fa9-7f6a23a78640",
            "name": "Team Leader (Commerial & Logistics)"
        },
        {
            "id": "18248c70-2b28-11eb-b4b6-e3f363a97ac4",
            "name": "Restaurtant Excellent Manager"
        },
        {
            "id": "182bd180-4307-11ea-a9a3-6f431284788b",
            "name": "Purchasing Manager"
        },
        {
            "id": "18521a60-2b28-11eb-9c49-c1e1016e3bf8",
            "name": "HR Executive (Training & Development)"
        },
        {
            "id": "186dc0d0-77c0-11ec-a0b9-2778fc605455",
            "name": "Interim Midwife Executive"
        },
        {
            "id": "18761340-74b0-11ec-ba3d-ef7f2577c71f",
            "name": "Medical Technologist"
        },
        {
            "id": "18766f50-2b28-11eb-a4cf-f3743b9e940c",
            "name": "JR.Assistant Crew Chief"
        },
        {
            "id": "1884c400-58df-11eb-a253-153ca6af91eb",
            "name": "Chinese Helper"
        },
        {
            "id": "188ab360-4307-11ea-ad3f-79bcafd92295",
            "name": "Director of Sales"
        },
        {
            "id": "18962cb0-b3f7-11ec-93cc-f97beb47a064",
            "name": "Field Training Manager"
        },
        {
            "id": "18a166e0-2019-11eb-a301-a59b7ae3c2da",
            "name": "Marketing Technology Specialist"
        },
        {
            "id": "18a91550-4307-11ea-92c9-5b30d183342a",
            "name": "Sales Manager"
        },
        {
            "id": "18b68940-5394-11ea-b7c2-85ca4d26110e",
            "name": "House Keeper"
        },
        {
            "id": "18bd0960-ed6a-11ed-a310-6b532a451928",
            "name": "Application Engineer"
        },
        {
            "id": "18c68b80-d21c-11ec-b8d2-9f09c6e0d06c",
            "name": "Officer ( Sales & Marketing)"
        },
        {
            "id": "18d152e0-2b28-11eb-a3d9-fd4be2bf2acf",
            "name": "Sr.Credit Controller"
        },
        {
            "id": "18e4e240-5f50-11ea-8e5c-eda81475df29",
            "name": "Office Supervisor"
        },
        {
            "id": "18ee1240-77c0-11ec-82a7-5d5a438943b6",
            "name": " Assistant Manager - Branding & Communication"
        },
        {
            "id": "19042780-4307-11ea-bf67-1deddad285f0",
            "name": "Account Associate"
        },
        {
            "id": "190ea5d0-2b28-11eb-aae5-e70f92eb765c",
            "name": "Legal & Complience Manager"
        },
        {
            "id": "190f46c0-d00a-11ea-b084-dbb0fcab055e",
            "name": "Product Coordinator"
        },
        {
            "id": "1916f730-2b28-11eb-9cf7-b903d96e6ddd",
            "name": "Group Marketing Executive"
        },
        {
            "id": "191c2560-77c0-11ec-b7b3-93c7935220ff",
            "name": "Assistant Manager - Supply Chain"
        },
        {
            "id": "1922a990-4307-11ea-a44d-751849cb3881",
            "name": "Learning & Development Manager"
        },
        {
            "id": "193b07b0-2b28-11eb-8470-2b721a0df57e",
            "name": "HR Manager (Talent Management)"
        },
        {
            "id": "1947ff20-244f-11ee-82dd-ed3d96e7deb7",
            "name": "Sales Supervisor (MEP)"
        },
        {
            "id": "19553d80-5888-11ea-b49c-6d5b7afc4305",
            "name": "Truck Washer"
        },
        {
            "id": "19555d70-2b28-11eb-b5d1-afc06a71294d",
            "name": "Sr.HK Attendant"
        },
        {
            "id": "195f9f60-4307-11ea-ab67-9faf981c4698",
            "name": "Reservation Supervisor"
        },
        {
            "id": "196d10e0-74b0-11ec-a756-99e9d20a467a",
            "name": "Senior Medical Technologist"
        },
        {
            "id": "197e63e0-4307-11ea-9ba1-fb14a5f0aefc",
            "name": "Account Executive (AR)"
        },
        {
            "id": "199d0990-4307-11ea-b3ce-8dcebdc6dc94",
            "name": "Accountant(AR)"
        },
        {
            "id": "199decc0-2b28-11eb-94fd-c19c014f7a55",
            "name": "Steelman (Wooden Boat)"
        },
        {
            "id": "199e30c0-5f50-11ea-81bd-27a9a4774cc7",
            "name": "Buggy Service Staff"
        },
        {
            "id": "19a0f5e0-b270-11ed-8630-0510cbb25320",
            "name": "Staff Software Engineer"
        },
        {
            "id": "19a1e5c0-5888-11ea-b6b4-8b1870af2652",
            "name": "Maintenance Supervisor"
        },
        {
            "id": "19ade4c0-5394-11ea-90e9-392ef9851e16",
            "name": "Store Officer(MMD)"
        },
        {
            "id": "19c84780-5888-11ea-8fe1-979b4864a282",
            "name": "Administrator"
        },
        {
            "id": "19cc50e0-5f50-11ea-baa0-7ba52d5337d3",
            "name": "Foreman"
        },
        {
            "id": "19d0dea0-5394-11ea-9e37-530a0fb189c6",
            "name": "Store Assistant"
        },
        {
            "id": "19d7da10-3e0f-11ed-8beb-a5bb3a7874c1",
            "name": "Junior Digital Marketing Executive"
        },
        {
            "id": "19e7b850-f554-11ed-8352-155d3f65e767",
            "name": "Junior Service Engineer"
        },
        {
            "id": "19e8b860-74b0-11ec-93f8-1919c8b2682e",
            "name": "Medical Technologist Assistant"
        },
        {
            "id": "19f8cd00-4307-11ea-9222-734f81ba77c2",
            "name": "Director of Sales (Corporate)"
        },
        {
            "id": "1a022f50-3e0f-11ed-ae0f-6f35cfc565fb",
            "name": "Repair and Maintenance Engineer ( Civil )"
        },
        {
            "id": "1a171fc0-4307-11ea-8bee-fd65e8bc3bae",
            "name": "Junior Business Development Associate"
        },
        {
            "id": "1a245ea0-5f50-11ea-964a-93003bb7c17c",
            "name": "Buggy Driver"
        },
        {
            "id": "1a2b9170-3e0f-11ed-87b8-c5e6d4f3c9ff",
            "name": "Renovation & Fit-Out Manager"
        },
        {
            "id": "1a35a610-4307-11ea-9e75-57b85515dee1",
            "name": "Account Executive"
        },
        {
            "id": "1a36f130-b270-11ed-9cad-3103a52110cc",
            "name": "Customer Service Agents"
        },
        {
            "id": "1a4a3fd0-07db-11ed-b9cc-e5a84d0d369e",
            "name": "Jr. Accoutant"
        },
        {
            "id": "1a4b8450-2b28-11eb-939b-eb072e52cf02",
            "name": "Coporate Secretarial Officer"
        },
        {
            "id": "1a61c370-5394-11ea-9500-efd0c4bca873",
            "name": "F & B Assistant"
        },
        {
            "id": "1a7fa700-5f50-11ea-9a87-e520ae487952",
            "name": "Senior Caddy"
        },
        {
            "id": "1a804980-5888-11ea-a5fe-9f7e94af5d28",
            "name": "Light Duty Driver"
        },
        {
            "id": "1aa30f20-ab24-11ea-a96d-01edb1b8c3b2",
            "name": "Spare Parts Sales & Marketing Executive"
        },
        {
            "id": "1aaa9570-07db-11ed-af39-05bad593eecd",
            "name": "General Administration Assistant"
        },
        {
            "id": "1ac08490-21e2-11eb-b8fb-efbe57280ea1",
            "name": "Business Development"
        },
        {
            "id": "1acae7e0-2b28-11eb-8ae9-35e7f620af62",
            "name": "Director, Chairman Office"
        },
        {
            "id": "1adab2f0-5f50-11ea-81df-d34f899720c9",
            "name": "Grade A caddy"
        },
        {
            "id": "1adb0a50-2b28-11eb-9fd9-39091e3caf6e",
            "name": "Assistant F & B Coordinator"
        },
        {
            "id": "1adb4050-07db-11ed-9c11-45afdd5fd825",
            "name": "Security & Cleaner"
        },
        {
            "id": "1aedc9d0-4307-11ea-8a51-5fba81ef4f3b",
            "name": "Business Development Associate"
        },
        {
            "id": "1aef4b30-5394-11ea-be38-bd5da03cc3bf",
            "name": "Sale & Marketing Assistant Manager"
        },
        {
            "id": "1b0ccb10-07db-11ed-964f-25d102631ab3",
            "name": "Parts & Workshop Executive"
        },
        {
            "id": "1b0ce8e0-3e11-11ec-89e7-03c9a168295e",
            "name": "Facility Manager"
        },
        {
            "id": "1b127080-5394-11ea-9279-e70f7caaf1fc",
            "name": "Operator"
        },
        {
            "id": "1b2f1c20-2b28-11eb-834e-1ba24b06adac",
            "name": "Assistant Risk Assessment Credit Collection Officer"
        },
        {
            "id": "1b2fc5e0-74b0-11ec-92a2-fd4c1b1b7612",
            "name": "Laundry & Linen Supervisor"
        },
        {
            "id": "1b3f4ab0-07db-11ed-8a0a-fdf921faaa65",
            "name": "Sr.Mechanic"
        },
        {
            "id": "1b4afec0-4307-11ea-b81e-c529f49fc53e",
            "name": "Financial Analyst"
        },
        {
            "id": "1b7b6d00-5394-11ea-b5ed-771d1cbb7bc0",
            "name": "Messanger "
        },
        {
            "id": "1b8d1850-2b28-11eb-91cd-051030280d37",
            "name": "Site Draftmen"
        },
        {
            "id": "1b91c6e0-7366-11ec-9aa1-8703487abe83",
            "name": "HR Manager (HR Strategy & Development)"
        },
        {
            "id": "1b9e23b0-5962-11eb-ab15-6b1fcacdb3c0",
            "name": "Trainee-Bartender"
        },
        {
            "id": "1ba6a0d0-4307-11ea-a0ef-1dc7275ebab8",
            "name": "Assistant BD Manager"
        },
        {
            "id": "1bc30a90-2b28-11eb-a500-7ffd5220eca2",
            "name": "Assistant HR Manager (Performance Management)"
        },
        {
            "id": "1bcbd2c0-2b28-11eb-ac85-75e7dd7d3098",
            "name": "Assistant HR Manager (Training & Development)"
        },
        {
            "id": "1bd5c2a0-0eeb-11ed-8fb8-fbf0296da0da",
            "name": "Senior Manager (Parts & Warehouse Operations)"
        },
        {
            "id": "1bf34620-74b0-11ec-a3ea-15fa3d06258c",
            "name": "Mini Mart Officer "
        },
        {
            "id": "1bf4af60-5f50-11ea-9a0b-afba570ab1b7",
            "name": "Regular Caddy"
        },
        {
            "id": "1bfea470-e596-11ed-a4b9-8ffdad8c19e5",
            "name": "Assistant Project Manager (HR Strategy & Development)"
        },
        {
            "id": "1c1c9a90-74b0-11ec-b085-cbd558a1272b",
            "name": "Mini Mart Assistant"
        },
        {
            "id": "1c1d4750-2b28-11eb-943f-51a291a4f3f2",
            "name": "Assistant Service Center Officer"
        },
        {
            "id": "1c471980-d07e-11ea-b080-ab0c0938f9b3",
            "name": "IT Product Coordinator"
        },
        {
            "id": "1c6de310-74b0-11ec-9bfd-adcbf83db5c9",
            "name": "Senior Nursing Professional"
        },
        {
            "id": "1c73cd20-2b28-11eb-8130-1d5a02521628",
            "name": "Assistant Inventory Manager"
        },
        {
            "id": "1c91ebf0-5888-11ea-b363-73b9b9e3a3a3",
            "name": "Route Planner"
        },
        {
            "id": "1cd984c0-7872-11ee-a6df-bfe0183f95ba",
            "name": "Restaurant & Bar Manager"
        },
        {
            "id": "1cdd5930-5887-11ea-85e4-43a603d70f2d",
            "name": "Light Goods Vehicle Driver"
        },
        {
            "id": "1ce371f0-2b06-11ec-b97c-2b0aa54f4699",
            "name": "Assistant Manager (Operation)"
        },
        {
            "id": "1cf7c190-5394-11ea-9217-29c046d0d72e",
            "name": "Physiotherapist"
        },
        {
            "id": "1d1618d0-5887-11ea-8659-43a408c304bd",
            "name": "Delivery Man"
        },
        {
            "id": "1d336380-595a-11eb-bb44-23c5cdcd92e0",
            "name": "Jr: Kyay Oh"
        },
        {
            "id": "1d3e2a40-5887-11ea-8726-1f62ae8d91df",
            "name": "Accountant ( Operation )"
        },
        {
            "id": "1d4359b0-0557-11ee-a5c0-9ff53efbf066",
            "name": "Chief Financial Controller (Head of YHE Operations)"
        },
        {
            "id": "1d8cba80-5887-11ea-af13-1b5528c21434",
            "name": "Heavy Goods Vechicle Driver"
        },
        {
            "id": "1d986df0-2b28-11eb-b06f-93c65ecbf9c0",
            "name": "Senior VP (Travel)"
        },
        {
            "id": "1dbfcf70-0c50-11eb-a52b-0b7d0b70e075",
            "name": "Legal and Compliance Manager"
        },
        {
            "id": "1dd41280-74b0-11ec-ad92-07544ea3b4d7",
            "name": "Senior Pharmacist"
        },
        {
            "id": "1dd73d60-5887-11ea-989c-ed9ae8720433",
            "name": "Techician"
        },
        {
            "id": "1ddd3100-4dc2-11ed-b2ac-add09c4e4a2f",
            "name": "NA"
        },
        {
            "id": "1df64470-92bc-11ec-b526-a35191f97fb4",
            "name": "HR and Admin Assistant"
        },
        {
            "id": "1e255250-ad1d-11ec-8d11-47f99019fe91",
            "name": "Junior Sales Consultant"
        },
        {
            "id": "1e2927a0-2b28-11eb-a00e-57fd2099144f",
            "name": "Telecoms Engineer"
        },
        {
            "id": "1e541e80-ad1d-11ec-9aee-c16daa1bbfda",
            "name": "Senior Sales Consultant"
        },
        {
            "id": "1e58b8a0-2b28-11eb-bee4-8d9eeb7be468",
            "name": "Commercial Project Manager"
        },
        {
            "id": "1e6b1700-2b28-11eb-91ee-99ab33a69ac3",
            "name": "Commerical  Director"
        },
        {
            "id": "1e9ccea0-74b0-11ec-a136-bd0419c46633",
            "name": "Midwife Executive"
        },
        {
            "id": "1ea16180-2b28-11eb-b09b-b51c3f4e8e40",
            "name": "Head of HR - Real Estate"
        },
        {
            "id": "1ea75550-2b28-11eb-a663-e10622af00a4",
            "name": "Site Engineer (Archi/ID)"
        },
        {
            "id": "1ec9a140-5888-11ea-bfcf-9f097a9ada2c",
            "name": "Forklit Operator/\nMHE Operator"
        },
        {
            "id": "1ed1eb30-74b0-11ec-8f89-21d9b332218a",
            "name": "Senior Midwife"
        },
        {
            "id": "1ee01c60-2b28-11eb-b733-eb881c61ae02",
            "name": "Peninsula Sales Gallery Manager"
        },
        {
            "id": "1ef83f90-f86e-11ed-b944-25d04e015a77",
            "name": "Technician Grade-IV\t"
        },
        {
            "id": "1efad960-74b0-11ec-9c12-573e1feb8edb",
            "name": "Midwife Technician"
        },
        {
            "id": "1f08d000-186a-11eb-86eb-7fed5ef02cd3",
            "name": "Government Relations Officer"
        },
        {
            "id": "1f2960f0-5888-11ea-822d-9df9f3a770bb",
            "name": "Warehouse Team Leader"
        },
        {
            "id": "1f411f30-2b28-11eb-831e-2f53a58acdca",
            "name": "Sr.Credit Control Manager"
        },
        {
            "id": "1f488130-2b28-11eb-836e-8910eba11092",
            "name": "Logistics Service Manager"
        },
        {
            "id": "1f54db70-2b28-11eb-8ec9-c37b471e5e74",
            "name": "HR Executive (Data Analysis)"
        },
        {
            "id": "1fa96dc0-5888-11ea-a1e0-13c8f10230bf",
            "name": "Inventory Planner"
        },
        {
            "id": "1fac0d60-2b28-11eb-a2dc-6d016617e43c",
            "name": "Junior Interior Design Coordinator"
        },
        {
            "id": "1fb903b0-2b28-11eb-a13d-d7d635f7a1ab",
            "name": "Residential Sales Director (International Market)"
        },
        {
            "id": "1fc8e2c0-2b28-11eb-806d-5f702140ae72",
            "name": "Pro Shop Sales"
        },
        {
            "id": "20226c60-74b0-11ec-b9c2-37bcef8186fa",
            "name": "Senior Health Care Assistant"
        },
        {
            "id": "20232330-ad1d-11ec-b2c4-d79d1dff306d",
            "name": "Maintenance Technician Grade-III"
        },
        {
            "id": "20462ca0-98f1-11ea-b462-078ef9cb2f1b",
            "name": "logistics & Government Relations Assistant"
        },
        {
            "id": "20499400-5888-11ea-9034-d3b25a1b670c",
            "name": "Forklit Operator/\nMHE Opertor"
        },
        {
            "id": "207abe20-5888-11ea-bcf7-35c1634debcd",
            "name": "Warehoue Operative"
        },
        {
            "id": "209393e0-f86e-11ed-94c9-853368853460",
            "name": "Administrative Officer\t"
        },
        {
            "id": "209d2040-2dc1-11ec-a58b-d5c46454ca00",
            "name": "Barmaid"
        },
        {
            "id": "20c95730-5887-11ea-9cae-37d8d44039c0",
            "name": "Logistics Assistant GPS"
        },
        {
            "id": "2112ef90-685d-11ec-aaf4-c18ef13bb594",
            "name": "Senior Resales Executive"
        },
        {
            "id": "211791a0-5887-11ea-af68-01194a0876ce",
            "name": "Warehouse Operative"
        },
        {
            "id": "213c9270-94e8-11ee-9b63-b9fd4a13b8ed",
            "name": "Storkeeper"
        },
        {
            "id": "2173c490-03c6-11eb-973d-6dd2765e5c75",
            "name": "HR & Administration Manager"
        },
        {
            "id": "218277d0-d07b-11ea-8585-eff7906827d3",
            "name": "Wellness Program Manager "
        },
        {
            "id": "21d503f0-1467-11ec-8925-0dc4373021c3",
            "name": "Field Call Officer(NPT)"
        },
        {
            "id": "21e5d080-74b0-11ec-8b5f-b77061141286",
            "name": "Nursing Professional"
        },
        {
            "id": "21f81110-5f50-11ea-a188-57754cbd2651",
            "name": "Caddy Permanent"
        },
        {
            "id": "2225f370-4a72-11eb-a179-b70d7b6f5aa0",
            "name": "Assistant Campus Manager"
        },
        {
            "id": "2236df00-4b37-11ee-9cfa-499ccfa3c9b2",
            "name": "Renovation and Fit-Out Engineer (Civil)"
        },
        {
            "id": "229d1af0-5888-11ea-a547-03c7d7b06df0",
            "name": "Senior Warehouse Supervisor"
        },
        {
            "id": "22b85340-49bc-11eb-b2b0-97784fcf452f",
            "name": "Inventory Operative"
        },
        {
            "id": "22d07740-ad51-11ea-80a8-e3c1d2802738",
            "name": "Senior Leasing Executive"
        },
        {
            "id": "22d697d0-5887-11ea-8ea1-4f63d12630aa",
            "name": "Driver Leader"
        },
        {
            "id": "22e9be80-aa67-11ea-b143-8d26d13cef62",
            "name": "Spare Parts Stock Controller"
        },
        {
            "id": "2300e150-8449-11ee-a01d-312f881fe54c",
            "name": "Sales Girl"
        },
        {
            "id": "2327c110-f8ba-11ea-a322-33766c6e3c70",
            "name": "Assistant Project Coordinator"
        },
        {
            "id": "23340d70-74b0-11ec-8d48-a5b7d2be3420",
            "name": "Nursing Executive - IPD"
        },
        {
            "id": "233c5c70-49bc-11eb-baa3-0f1a77d4467b",
            "name": "Body & Paint Technician"
        },
        {
            "id": "238df2f0-f068-11ea-9ee4-f94ae67db21a",
            "name": "Technician Grade/IV"
        },
        {
            "id": "239a4b60-5888-11ea-9084-4d1842a4ae6c",
            "name": "Warehosue Operative"
        },
        {
            "id": "23bdc930-f86e-11ed-8a8a-6fdbfb1011d0",
            "name": "Office Staff\t\t"
        },
        {
            "id": "23cf02b0-f068-11ea-941c-9b605b5dffc5",
            "name": "Collection Officer"
        },
        {
            "id": "23ea3520-74b0-11ec-884f-075430df66e5",
            "name": "Nursing Executive - ICU"
        },
        {
            "id": "23ecc200-e8d3-11ed-aa48-55c426e85224",
            "name": "Deputy Admin Manager"
        },
        {
            "id": "2416fd10-7eb9-11ed-bb77-9b484d87cc74",
            "name": "Sport & Recreation Junior Executive"
        },
        {
            "id": "242709f0-59a2-11eb-b921-eb9ce39f53ee",
            "name": "Trainee Kyay-Oh"
        },
        {
            "id": "243ba790-f068-11ea-a68e-7191b08336b3",
            "name": "Senior Credit Collection Manager"
        },
        {
            "id": "244d2670-7ffd-11ea-9b38-b7a8cda625b9",
            "name": "Consultant"
        },
        {
            "id": "247a5240-59a2-11eb-a714-253475ebb9a0",
            "name": "Sr:Kyay Oh"
        },
        {
            "id": "24885f60-c603-11ec-a941-df21702a277c",
            "name": "Aftersales Manager"
        },
        {
            "id": "248ad430-9055-11ea-b395-d9a34d3a510e",
            "name": "Head of China Desk"
        },
        {
            "id": "24a886c0-f068-11ea-a61b-3fa28e27d4c7",
            "name": "Head Teaching Professional"
        },
        {
            "id": "24a8a5a0-520d-11ee-b24d-2d4cc3899dac",
            "name": "Assistant Housekeeping"
        },
        {
            "id": "24b2afd0-e8d2-11ed-9c46-33bdbda6a2e2",
            "name": "Senior Engineer (C&S)"
        },
        {
            "id": "24b8a820-e2e0-11ec-b990-61224c4fed03",
            "name": "Sports and Recreation Attendant "
        },
        {
            "id": "24d7f630-5887-11ea-b480-d1226ae5c088",
            "name": "Forklift Operator"
        },
        {
            "id": "24db9040-1a5d-11ec-88bf-a918db4cf0d0",
            "name": "Commercial Manager"
        },
        {
            "id": "24e2c290-f068-11ea-b698-7953266abcfb",
            "name": "Construction Manager (Interior Design)"
        },
        {
            "id": "2582ed90-388b-11ed-b18b-cd04638939da",
            "name": "Office Staff (Data Entry)"
        },
        {
            "id": "259228e0-b566-11ea-a82d-89d618d5eb01",
            "name": "Finance Manager, Group Financial Reporting"
        },
        {
            "id": "25f50af0-d289-11ec-af9a-958f28d03192",
            "name": "Apprentice Accountant"
        },
        {
            "id": "25f83c10-055b-11ee-aa2a-bb531a62c732",
            "name": "Human Resources and IT Manager"
        },
        {
            "id": "25fb7280-74b0-11ec-b29a-336600bb61f4",
            "name": "Nursing Executive - Nawarat"
        },
        {
            "id": "25feec70-f068-11ea-943a-1991a2be72ee",
            "name": "Field Call Officer"
        },
        {
            "id": "263a5220-d289-11ec-a7be-8551c8911558",
            "name": "Part Stock Controller"
        },
        {
            "id": "26b7db80-f86e-11ed-b9a6-5ff5e2abf17b",
            "name": "Junior Human Resources Executive\t"
        },
        {
            "id": "26c39290-5887-11ea-a4fc-57f7efed0488",
            "name": "Sales Coordinator"
        },
        {
            "id": "26d18d90-74b0-11ec-8799-cd0f9ce390ec",
            "name": "Nursing Executive - Oncology"
        },
        {
            "id": "271d1b60-3c1c-11ee-94f7-2118a2070f34",
            "name": "Senior China Desk Advisor"
        },
        {
            "id": "27504c00-d721-11ec-8caf-c9f7758ea71b",
            "name": "Assistant Sales Admin Manager"
        },
        {
            "id": "27537480-59a2-11eb-96c4-15147f47577d",
            "name": "Asst; Chief Cook"
        },
        {
            "id": "275f03e0-08ff-11ee-9d2b-c7be17fb2662",
            "name": "Executive Sous Chef"
        },
        {
            "id": "276ad760-74b0-11ec-a98e-05d58c578529",
            "name": "Nursing Executive - OPD"
        },
        {
            "id": "276f86c0-59a2-11eb-8051-5fafa1440fdc",
            "name": "Asst; Store Leader "
        },
        {
            "id": "27788d40-5f4f-11ea-bd41-2766f40b3d20",
            "name": "Senior Nurse"
        },
        {
            "id": "277fa230-883a-11ee-bc61-d1eec8a00513",
            "name": "Junior Financial Analyst"
        },
        {
            "id": "2789c5b0-c1ea-11ec-8bc3-19a409d5b5ac",
            "name": "Project Executive"
        },
        {
            "id": "2795e290-f068-11ea-a827-f326157d84b2",
            "name": "Business Analysis"
        },
        {
            "id": "27988040-2b08-11ec-9a3a-5d54dd544c99",
            "name": "Admin Cum Coordinator"
        },
        {
            "id": "279cd7e0-be39-11ed-b7c6-bfa67fed5993",
            "name": "Training and QC Administrator"
        },
        {
            "id": "27a358e0-5f4f-11ea-a201-aba9817aeb40",
            "name": "Office Manager- Kawthaung"
        },
        {
            "id": "27c85ba0-59a2-11eb-b2b8-655eea6fbaef",
            "name": "Junior Coffee Master"
        },
        {
            "id": "27d205b0-366e-11ee-ae0d-533ce4eb1a2a",
            "name": "Merchant Acquisition Supervisor"
        },
        {
            "id": "27e98650-59a2-11eb-a415-9b9b46bebc2f",
            "name": "Trainee- Bartender"
        },
        {
            "id": "28263c20-c53a-11ec-bdd6-a7f02efd5d41",
            "name": "Liaison Officer"
        },
        {
            "id": "2888f520-4b96-11ed-97f6-9bed961ee6ea",
            "name": "Customer Solutions Manager"
        },
        {
            "id": "28a5f840-59a2-11eb-8d1b-fd9a42e609c6",
            "name": "T-Kyay Oh"
        },
        {
            "id": "28c9e310-5f4f-11ea-b4d7-a3a779dabeb4",
            "name": "Boat Mechanic"
        },
        {
            "id": "28dd19f0-705a-11ed-9e6d-6b95f1d4e210",
            "name": "Regional Manager (Lower Myanmar)"
        },
        {
            "id": "28f3d010-5f4f-11ea-ada0-354b194d89b9",
            "name": "Water Sports Supervisor "
        },
        {
            "id": "291f4bc0-5f4f-11ea-b3ea-63be66f9b50a",
            "name": "Laundry Attendant"
        },
        {
            "id": "29482440-5036-11eb-a2e9-5be7aadb0c3a",
            "name": "Sales and Leasing Coordinator"
        },
        {
            "id": "294c3860-9281-11ee-ab10-23bb2e06c215",
            "name": "UX/UI Designer"
        },
        {
            "id": "2960b6b0-ed59-11ed-9d37-0b29817c2360",
            "name": "Project Engineer (Civil)"
        },
        {
            "id": "29679490-11cf-11eb-8097-2ddfeeddfd40",
            "name": "Warehoue Opeative"
        },
        {
            "id": "2972f840-5f4f-11ea-a7b4-e1567973053c",
            "name": "Bell Boy"
        },
        {
            "id": "29992790-796f-11ea-9e73-4d7e6d9a518d",
            "name": "Apprentice Service Engineer"
        },
        {
            "id": "29b1c200-59a2-11eb-b213-d3464ae17ff6",
            "name": "Kyay Oh-Helper"
        },
        {
            "id": "29f02600-5f4f-11ea-b6f7-113f0ed6514f",
            "name": "Streesman (Wooden Boat)"
        },
        {
            "id": "2a28b8c0-5f4f-11ea-b989-b5b50daa39b1",
            "name": "Crewman (Wooden Boat)"
        },
        {
            "id": "2a2b8650-b437-11ea-a9a5-6f2452f81000",
            "name": "Restaurant Performance Manager"
        },
        {
            "id": "2a484150-3ba5-11eb-9464-9b9d6c1b39bd",
            "name": "Operation Manager Trainee"
        },
        {
            "id": "2acbf2e0-5f4f-11ea-b786-d1e52e27b13c",
            "name": "Canteen Helper"
        },
        {
            "id": "2ad654d0-5887-11ea-b546-ddbb26e40c54",
            "name": "WH Operative"
        },
        {
            "id": "2b0307a0-74b0-11ec-8e11-a9b920d6cf98",
            "name": "Nursing Technician"
        },
        {
            "id": "2b18ab20-789a-11ea-83b9-d934dba32a52",
            "name": "Assistant ReSales Manager"
        },
        {
            "id": "2b2b9d70-570c-11ec-8339-97894770c2ef",
            "name": "De mi Chef"
        },
        {
            "id": "2b392da0-59a2-11eb-8b0e-ffed4edc5daf",
            "name": "Jr.Coffee "
        },
        {
            "id": "2b3a0540-f86e-11ed-8194-6913a73b8e49",
            "name": "Technician Grade-III\t"
        },
        {
            "id": "2b91af90-5f4f-11ea-9f59-db128e523249",
            "name": "Guide"
        },
        {
            "id": "2b9a70f0-e41e-11e9-b9a1-e34f3813c92a",
            "name": "Assistant Manager, Employee Services"
        },
        {
            "id": "2b9bb4b0-4470-11eb-b5c5-896da5162abd",
            "name": "Community Engagement Manager"
        },
        {
            "id": "2ba0b990-e412-11ed-9d45-d38e062e4754",
            "name": "Marine Guide"
        },
        {
            "id": "2bb47000-3b77-11eb-b096-2918d3d8bc31",
            "name": "\"Senior Manager Government relations  and Product Support\""
        },
        {
            "id": "2bcb8af0-53ad-11ee-bf57-a11e8dafff37",
            "name": "Senior Site Engineer (MEP)"
        },
        {
            "id": "2bd3b640-5f4f-11ea-8250-4b6b598a706d",
            "name": "Cook Assistant"
        },
        {
            "id": "2bd3e0d0-23de-11eb-a97c-0d877e74f453",
            "name": "Senior Accounts Executive"
        },
        {
            "id": "2bde5340-59a2-11eb-ae52-2fb3f967a176",
            "name": "BBQ  Helper"
        },
        {
            "id": "2bfc1fb0-02de-11eb-9425-cb5633bac463",
            "name": "Senior ELV Technician"
        },
        {
            "id": "2c0201a0-4ef7-11ea-8e08-8988d200e393",
            "name": "Service Desk"
        },
        {
            "id": "2c097130-5f4f-11ea-8e66-7326903dfd75",
            "name": "Timber Boat Operator"
        },
        {
            "id": "2c1727a0-520d-11ee-a856-efb037416472",
            "name": "Rooms Division Manager"
        },
        {
            "id": "2c288200-789a-11ea-99d1-713ff9302676",
            "name": "Assistant Sales Support Manager"
        },
        {
            "id": "2c362730-5f4f-11ea-8457-a74cfb35a18a",
            "name": "Teacher, School at Awei Pila"
        },
        {
            "id": "2c611260-5f4f-11ea-afab-4be1dba69a01",
            "name": "Machine Operator"
        },
        {
            "id": "2c633900-657b-11ed-a6c1-e9b93b8314c6",
            "name": "Junior DevOps Engineer"
        },
        {
            "id": "2c6beff0-88fa-11ea-8fa0-fd007b221a22",
            "name": "Costs and Contracts Manager"
        },
        {
            "id": "2cb80080-59a2-11eb-9a43-1d2398100470",
            "name": "Trainee Bartendar"
        },
        {
            "id": "2cc7d6f0-5f4f-11ea-aeb9-a7c686812f70",
            "name": "Water Sports Attendant"
        },
        {
            "id": "2ce1b300-657b-11ed-9531-812abdd4a6df",
            "name": "Junior Quality Assurance"
        },
        {
            "id": "2ce4cef0-b3f9-11ec-b519-4b62ab2460b9",
            "name": "Senior Business Analyst"
        },
        {
            "id": "2cf1dca0-5f4f-11ea-860e-4dc769ec6d3f",
            "name": "Beach & Pool Attendant"
        },
        {
            "id": "2cf6ee50-ed51-11ed-9a65-d9519dcef612",
            "name": "Carpentary Technician"
        },
        {
            "id": "2d272f50-1c34-11ec-b9d6-65c0f6e9f5ab",
            "name": "Head of Estate Management"
        },
        {
            "id": "2d41fea0-5f50-11ea-973a-d5b0c9b3d000",
            "name": "Cafe Shop Supervisor"
        },
        {
            "id": "2d489480-f395-11ec-90d5-a7c74c237aec",
            "name": "Design Architect"
        },
        {
            "id": "2d6fa630-789a-11ea-8306-c3999b8f6671",
            "name": "Sales Director"
        },
        {
            "id": "2d702140-5f50-11ea-a1b3-6bc219b0ba7b",
            "name": "Barista"
        },
        {
            "id": "2d9d3f60-5f50-11ea-b144-714cdd95d208",
            "name": "Retail Staff"
        },
        {
            "id": "2dc18050-5678-11eb-9ec1-ed505694364f",
            "name": "Admin Cum Driver"
        },
        {
            "id": "2dc73d50-331c-11ec-9551-ab21d0cae90c",
            "name": "Quantity Surveyor Manager"
        },
        {
            "id": "2ddb19e0-88fa-11ea-88f4-61ec8c6da3d5",
            "name": "Regional Branch Manager (Pyay,Magway) "
        },
        {
            "id": "2df0a400-789a-11ea-9909-31213e98a204",
            "name": "Sales Assistant/ Analyst"
        },
        {
            "id": "2df91f40-5f50-11ea-9c43-a755bc2040c1",
            "name": "Driving Range Operation"
        },
        {
            "id": "2e016140-5887-11ea-9715-1fb0936fe926",
            "name": "Route Optimization and Planning Manager"
        },
        {
            "id": "2e035840-59a2-11eb-be59-e9777faeab65",
            "name": "Trainee - Bartender"
        },
        {
            "id": "2e0573c0-7377-11ec-a098-91cdee80bea2",
            "name": "HR Accountant (HR Strategy & Development)"
        },
        {
            "id": "2e0a64f0-6af5-11ed-bc81-35cc0f58a947",
            "name": "Quantity Surveyor (Civil)"
        },
        {
            "id": "2e181430-6ebe-11ec-8689-b3bdf6d24afa",
            "name": "Spare Parts and Service Admin"
        },
        {
            "id": "2e3eec10-789a-11ea-8729-3d6399ae67c7",
            "name": "Assistant Sales \nManager"
        },
        {
            "id": "2e40f940-5f4f-11ea-bd7b-6baf7588e23f",
            "name": "Demi Chef"
        },
        {
            "id": "2e4b3960-7e21-11ee-823c-03f3de5e5a39",
            "name": "Operations Data Analyst"
        },
        {
            "id": "2e53f8f0-74b0-11ec-a2de-fbb9c10f8ebb",
            "name": "Nursing Executive - Ward 1"
        },
        {
            "id": "2e600220-599f-11eb-be0a-c5559e2ebea9",
            "name": "Jr-Wok"
        },
        {
            "id": "2ead3410-5f50-11ea-a0c4-490c33f7790b",
            "name": "Maintenance Technician"
        },
        {
            "id": "2ead4e50-9c14-11ea-b600-6192e07620c3",
            "name": "Senior Finance Analyst"
        },
        {
            "id": "2ebe0460-fdb4-11ec-abda-cf059c78e6b0",
            "name": "Assistant Golf Course Operation Manager"
        },
        {
            "id": "2ede7aa0-5f4f-11ea-a4bb-739a76f61325",
            "name": "Merguie Guide"
        },
        {
            "id": "2ef68120-f38a-11ec-889e-5bd615dc3282",
            "name": "Building Maintenance Supervisor"
        },
        {
            "id": "2f0c0380-5f50-11ea-a372-654b427b0a25",
            "name": "M & E Technician"
        },
        {
            "id": "2f359d20-5f4f-11ea-966b-cbab9877afac",
            "name": "Purchaser"
        },
        {
            "id": "2f71c4e0-6ec8-11ed-82e6-8dba1f1cb2a5",
            "name": "Senior Trainer"
        },
        {
            "id": "2f93f9b0-5f50-11ea-84f2-5b394f7550fa",
            "name": "Cost Controller"
        },
        {
            "id": "2f9b3720-88fa-11ea-8861-d7d0af20de00",
            "name": "Machanical Fitter"
        },
        {
            "id": "2fbc62a0-25ff-11ea-9384-7352929d335b",
            "name": "Programme Manager"
        },
        {
            "id": "2fdb39f0-dfe1-11ea-a7f0-f3c52ac745b0",
            "name": "Assistant Architect"
        },
        {
            "id": "2fdb8180-25ff-11ea-8fe8-41c26a1095c0",
            "name": "IT Solution Coordinator"
        },
        {
            "id": "2ff976c0-5e8a-11ee-a216-2b0b9b88eeb2",
            "name": "Full Stack Developer"
        },
        {
            "id": "3016c050-f86e-11ed-9237-ab762d03a22b",
            "name": "Senior M&E Technician\t"
        },
        {
            "id": "301bcb30-5f50-11ea-ac0e-3fdee9313698",
            "name": "Acccountant"
        },
        {
            "id": "30289320-25ff-11ea-935e-9dda9ac1f5c7",
            "name": "DevOps Engineer"
        },
        {
            "id": "30306a50-c60f-11ec-bce2-27f6b2bb7be8",
            "name": "Senior Property Affairs Executive"
        },
        {
            "id": "303ed0b0-a938-11ec-943f-bb4ff4ad6333",
            "name": "Head - Smart Health Community"
        },
        {
            "id": "30423500-25ff-11ea-b46a-69de5713602c",
            "name": "Digital Manager"
        },
        {
            "id": "308064c0-789a-11ea-b4a6-9de8230e4d02",
            "name": "Senior Sales Executive"
        },
        {
            "id": "30a00a60-74b0-11ec-8f13-a3dfc19e4377",
            "name": "Nursing Executive - Ward 2"
        },
        {
            "id": "30b08820-e319-11ec-88e7-a75121b45736",
            "name": "Golf Academy Supervisor"
        },
        {
            "id": "30d106e0-74b4-11ea-a14b-b78feeb0e0d4",
            "name": "General Manager (Upper Myanmar)"
        },
        {
            "id": "30d58f00-22d9-11ed-b4de-8fc6381f3f92",
            "name": "Carpentry Supervisor"
        },
        {
            "id": "30e14cc0-6ec8-11ed-9bf5-9f5fd83c7153",
            "name": "Administrative Manager"
        },
        {
            "id": "30f28740-f2af-11ea-ace1-2dd40d2d1132",
            "name": "Junior Sales Executive"
        },
        {
            "id": "30f3ca80-ace9-11ed-8d23-3d143cae7c4f",
            "name": "Warehouse Admin (Cum) WMS Operator "
        },
        {
            "id": "31013930-789a-11ea-8386-a701b93a56f3",
            "name": "Sales Operation Executive"
        },
        {
            "id": "310c17e0-2fc7-11ec-a834-df4328f2e0e8",
            "name": "Logistic Senior Foreman"
        },
        {
            "id": "3129bf80-d0db-11ec-86bc-d97a173612a2",
            "name": "Customer Service Assistant"
        },
        {
            "id": "31b35190-5f4f-11ea-b02f-f3748776d30b",
            "name": "Sir.Demi Chef"
        },
        {
            "id": "31c17f00-7660-11ea-a23f-5398610c8402",
            "name": "Engineer"
        },
        {
            "id": "31e9b900-2da6-11eb-a404-0de2a2671c3d",
            "name": "Sale Assistant"
        },
        {
            "id": "32228730-7660-11ea-89b2-a7ebc234e7ab",
            "name": "Chef"
        },
        {
            "id": "3238a610-054c-11ee-8dc7-b1b186b03983",
            "name": "Admin Driver"
        },
        {
            "id": "325e2ff0-dfe1-11ea-9fe1-d36972f78086",
            "name": "Data Administrator"
        },
        {
            "id": "326d0e90-5f50-11ea-9ca4-f971d1b5bdb5",
            "name": "Gym Trainer"
        },
        {
            "id": "32930210-74b0-11ec-b817-c74c9d75dc28",
            "name": "Nursing Executive - Ward 3"
        },
        {
            "id": "329a32b0-5f50-11ea-aa25-472c97f9e7ce",
            "name": "Membership Executive"
        },
        {
            "id": "32a3b050-3d3f-11ed-970f-71285c6a8572",
            "name": "Corporate Assistant & Translator"
        },
        {
            "id": "32a3e900-5887-11ea-a7c2-cdf4a0cab357",
            "name": "Logistic Assistant"
        },
        {
            "id": "32a4e0c0-2fc5-11ec-b3eb-f17e5d6fc5b4",
            "name": "General Foreman"
        },
        {
            "id": "32dafbc0-23de-11eb-bb53-cd3df5f8a9a0",
            "name": "Senior Executive, Corporate Secretarial"
        },
        {
            "id": "32f02180-5887-11ea-9193-af88b805eec0",
            "name": "Heavy Duty Driver"
        },
        {
            "id": "32fb34c0-5f4f-11ea-af15-e91c52dfc62c",
            "name": "HK & Laundry Attendant"
        },
        {
            "id": "3320ba30-520d-11ee-9579-7f2aa6ef8910",
            "name": "Assistant Guest Exerience Manager"
        },
        {
            "id": "3369c9c0-5f4f-11ea-86a3-0b2a7c1b8902",
            "name": "HK Attendant"
        },
        {
            "id": "337349a0-3d3f-11ed-8f74-3f4f5f054e0c",
            "name": "Spare Parts Representative"
        },
        {
            "id": "337a62b0-638f-11ea-b203-0b506e098f34",
            "name": "Golf Course Supervisor"
        },
        {
            "id": "3389c5d0-6ec8-11ed-910e-0d1d1e2cef78",
            "name": "Sports Attendant"
        },
        {
            "id": "33ae3b40-5f50-11ea-840f-87c3f4413445",
            "name": "Deputy Golf Club Manager"
        },
        {
            "id": "33becc10-3d3f-11ed-bd50-737f2bdd3ffb",
            "name": "Assistant Sales & Marketing Manager"
        },
        {
            "id": "33c35c70-f78f-11ec-9811-c547ddc77ced",
            "name": "External Relations Officer"
        },
        {
            "id": "33c39720-638f-11ea-93ab-b17711720930",
            "name": "Junior MO Executive"
        },
        {
            "id": "33db87c0-5f50-11ea-ad2d-a73f413986c0",
            "name": "Assistant Front Office Manager"
        },
        {
            "id": "3404f830-795d-11ea-9913-5df57c34c9fe",
            "name": "Assistant Housekeeping Manager"
        },
        {
            "id": "34261f90-23de-11eb-af36-d3017812187d",
            "name": "Corporate Secretarial Executive"
        },
        {
            "id": "342bfc40-ed5e-11ed-90a5-f35c7ee425be",
            "name": "Assistant Store Officer"
        },
        {
            "id": "344a3cf0-5f4f-11ea-b35d-377e8e2a89fc",
            "name": "Maintanance "
        },
        {
            "id": "34621520-5f50-11ea-b583-c1fc916b1e76",
            "name": "Public Relation Coordinator"
        },
        {
            "id": "347cf640-638f-11ea-92d3-41e568e894ab",
            "name": "Guard"
        },
        {
            "id": "34852bf0-5f4f-11ea-9105-d7c481819439",
            "name": "Security Supervisor"
        },
        {
            "id": "348f3bc0-5f50-11ea-8b30-27e67a40e0c3",
            "name": "Skilled Labour"
        },
        {
            "id": "34a9ce60-f86e-11ed-9f3a-8d87560a0e48",
            "name": "Technician Grade-I\t"
        },
        {
            "id": "34b77e40-638f-11ea-a975-71d76460b690",
            "name": "M&E Technician"
        },
        {
            "id": "34fcc440-3d3f-11ed-b3c1-5d676fc9bb0b",
            "name": "Maintenance & Security"
        },
        {
            "id": "35297070-5f50-11ea-b844-7db338c1b367",
            "name": "Technician Grade I"
        },
        {
            "id": "352af2c0-638f-11ea-8cfb-7f90976c7e96",
            "name": "Guard Leader"
        },
        {
            "id": "353d0400-9e2b-11ee-be8a-cfda368249c4",
            "name": "Merchant Acquisition(Intern)"
        },
        {
            "id": "35539d50-2299-11ed-9512-27fa990819b2",
            "name": "Head, Procurement & Project Management (PMO)"
        },
        {
            "id": "35568300-8753-11ee-882d-b7e0df45a1ae",
            "name": "Site Supervisor (Survey)"
        },
        {
            "id": "35683890-7307-11ea-bdf4-0191c7002bc2",
            "name": "Head of Retail Operations"
        },
        {
            "id": "3571a6c0-23de-11eb-a055-f3ee155dce60",
            "name": "Corporate Legal Executive"
        },
        {
            "id": "357aef60-5f4f-11ea-a640-b507ce929d66",
            "name": "Garden Supervisor"
        },
        {
            "id": "35849f70-5f50-11ea-9309-f775fdd74e4e",
            "name": "Technician Grade II"
        },
        {
            "id": "35b079b0-74b0-11ec-86ce-25a54d1494b6",
            "name": "Coordinator - Plant Operations"
        },
        {
            "id": "360942a0-c298-11eb-ae08-e1ca1a4ac146",
            "name": "Fast Flow Supervisor"
        },
        {
            "id": "3644ea50-572d-11ec-a1ce-79f1e6c7b4a3",
            "name": "Assistant to HR Director"
        },
        {
            "id": "36496110-638f-11ea-b412-bb9dbf34b165",
            "name": "Technician Grade-I"
        },
        {
            "id": "3664ccd0-5f50-11ea-9432-b5877d780ff5",
            "name": "Officer"
        },
        {
            "id": "3682e220-638f-11ea-a4ac-3de208d5a6b1",
            "name": "Technician Grade-IV"
        },
        {
            "id": "3690f310-69a6-11ea-9698-df1ea72504cb",
            "name": "Training Offcer"
        },
        {
            "id": "36b454a0-f78f-11ec-aae9-e9031a93664e",
            "name": "Senior External Relations Officer"
        },
        {
            "id": "36ed7dc0-5f50-11ea-82d2-1fd84814e276",
            "name": "Senior Welder"
        },
        {
            "id": "36fd1420-dfe1-11ea-9dc7-1b12da5eb5c8",
            "name": "AP Accountant"
        },
        {
            "id": "37668800-69a6-11ea-ace7-d96318b212fb",
            "name": "Maintenance Assistance"
        },
        {
            "id": "377946b0-0199-11eb-94f0-7fcc0eb5c9b7",
            "name": "Head, Sales and Marketing"
        },
        {
            "id": "3786aea0-64c6-11ed-933d-d7077f9075b4",
            "name": "Resales Marketing Associate"
        },
        {
            "id": "37971070-74b0-11ec-8351-8117643c62b2",
            "name": "Training & Development Officer"
        },
        {
            "id": "37985280-5f4f-11ea-bfc4-5f3422e8ead4",
            "name": "Technicien"
        },
        {
            "id": "37c303d0-5f4f-11ea-a62c-038d3e633ecb",
            "name": "Ass:H.K Mng"
        },
        {
            "id": "37cff930-5f50-11ea-a1f0-ff19aec6c062",
            "name": "Junior Mechanic"
        },
        {
            "id": "37dda120-638f-11ea-a72a-ff0c9656720d",
            "name": "Starter Man"
        },
        {
            "id": "37de9800-69a6-11ea-ac20-65233dc7a4ac",
            "name": "Junior Quantity Surveyor"
        },
        {
            "id": "37f762a0-74b0-11ec-8bdb-1310b68caedc",
            "name": "Assistant Manager - Front Office"
        },
        {
            "id": "38102a90-5f18-11eb-a2da-794cf0dd643e",
            "name": "Strategy Manager"
        },
        {
            "id": "3858ca20-5f50-11ea-8c1d-1bdaa3536817",
            "name": "Assistant Landscape Manager"
        },
        {
            "id": "385a34f0-bb57-11ea-8ab6-3bc7b2e82bb4",
            "name": "QA/QC Coordinator (M&E)"
        },
        {
            "id": "38644d20-69a6-11ea-bffc-771d41b4b109",
            "name": "Assistant Brand Manager"
        },
        {
            "id": "386ca320-74b0-11ec-b986-7519d5eef723",
            "name": "Nursing Executive - TWC Clinic"
        },
        {
            "id": "388a0730-638f-11ea-9b37-030ef1a83777",
            "name": "Technician Grade-III"
        },
        {
            "id": "38ba3660-71d9-11eb-83c8-2b88b41c263d",
            "name": "Workshop Assistant"
        },
        {
            "id": "38c15ac0-50d5-11eb-86c3-51039998d4a0",
            "name": "Design Manager"
        },
        {
            "id": "38fb9a00-638f-11ea-935f-855579aca558",
            "name": "Office Executive"
        },
        {
            "id": "393a2570-5f4f-11ea-9a3b-df629750d0b7",
            "name": "Food & Beverage Supervisor"
        },
        {
            "id": "397b59a0-5f50-11ea-b234-414140ec696c",
            "name": "Landscaper"
        },
        {
            "id": "39ec5e20-5f4f-11ea-b33e-13b71fff6208",
            "name": "Chef De Pastie"
        },
        {
            "id": "3a2e27e0-3a75-11ee-a57f-15faecdc4bad",
            "name": "Transport"
        },
        {
            "id": "3a42dfc0-5f4f-11ea-9ae2-499356d1a3b6",
            "name": "Commis-2"
        },
        {
            "id": "3a57ec40-ff97-11ed-9613-75e104810f16",
            "name": "Tool Controller"
        },
        {
            "id": "3a97dc10-5f4f-11ea-80c5-bb5666ab2760",
            "name": "Commis-3"
        },
        {
            "id": "3a9fba60-2ef8-11eb-8822-05b503ad3fde",
            "name": "Assistant Site Engineer (Structure)"
        },
        {
            "id": "3ae77a40-abdd-11ea-9382-f360e722a63e",
            "name": "ARMT"
        },
        {
            "id": "3b1dd330-5f4f-11ea-ba46-19bfe85f5104",
            "name": "Helper"
        },
        {
            "id": "3b4a13c0-3211-11ea-b9f4-1fe2d9b33069",
            "name": "Employee Services Manager"
        },
        {
            "id": "3b591520-a94e-11ec-a7e0-4d9790777bd3",
            "name": "Senior Radiographer (Part Time)"
        },
        {
            "id": "3b701ba0-4eeb-11ea-9a1d-2b5fa7795a5e",
            "name": "Deputy M.D"
        },
        {
            "id": "3b735710-5f4f-11ea-9460-c155aa578b51",
            "name": "Chief Gardener"
        },
        {
            "id": "3bc79270-4eeb-11ea-85f7-e758f5956348",
            "name": "Marketing Staff"
        },
        {
            "id": "3be45ca0-493a-11ed-a8f8-e763c89a19e5",
            "name": "Memories Marketing"
        },
        {
            "id": "3becea40-4eeb-11ea-a386-3f2d6744b348",
            "name": "Logistics Manager"
        },
        {
            "id": "3bf18850-c206-11ec-a423-eb7109de00f7",
            "name": "Spare Part Warehouse Controller"
        },
        {
            "id": "3bf47050-5f4f-11ea-89d8-d9faa1926438",
            "name": "Asst:Technician"
        },
        {
            "id": "3c00c350-4039-11eb-8c86-07ee7fd14532",
            "name": "Pool Attendant"
        },
        {
            "id": "3c017110-3de3-11eb-aadb-1dc62ef705d8",
            "name": "Site Inspector (Archi)"
        },
        {
            "id": "3c2acdb0-638f-11ea-a6d4-d7ce3cb96122",
            "name": "Housekeeping Team Leader"
        },
        {
            "id": "3c3ac750-4eeb-11ea-831c-37524719a12d",
            "name": "Jr. Sales Executive"
        },
        {
            "id": "3c5e7ac0-4eeb-11ea-868a-b514b07d1dc3",
            "name": "Product Marketing Manager "
        },
        {
            "id": "3c7e76f0-5f4f-11ea-8abd-d16808fd6f5f",
            "name": "F&B Incharge"
        },
        {
            "id": "3c7f9ba0-4eeb-11ea-b8d9-d9b062ae0344",
            "name": "Parts Stock Controller"
        },
        {
            "id": "3ca1a860-4eeb-11ea-95da-45d8e1042818",
            "name": "Parts Coordinator"
        },
        {
            "id": "3ce20b60-5f50-11ea-bc53-05c58ad726b8",
            "name": "Superintendent"
        },
        {
            "id": "3ce656d0-4eeb-11ea-b910-9165569caae2",
            "name": "Sr. Mechanic"
        },
        {
            "id": "3d097a20-4eeb-11ea-b676-2b99aca4b3cf",
            "name": "Marketing and Business Development Manager "
        },
        {
            "id": "3d112020-5f50-11ea-9ad3-2d45b0a60078",
            "name": "Assistant Golf Course Superintendent"
        },
        {
            "id": "3d1eb850-74b0-11ec-8806-2dab164e37b2",
            "name": "Medicla Technologist"
        },
        {
            "id": "3d255800-c1ca-11ea-99dd-0d4089a32140",
            "name": "Property Affairs Executive"
        },
        {
            "id": "3d2baea0-4eeb-11ea-8bc1-53596737c6a6",
            "name": "Mechanic Assistant"
        },
        {
            "id": "3d704200-4eeb-11ea-a63e-5ba51649f120",
            "name": "HR and Employee Development Manager "
        },
        {
            "id": "3d937170-4eeb-11ea-8054-23a8abbe8ab0",
            "name": "Admin & Network Development Manager "
        },
        {
            "id": "3db88720-4eeb-11ea-8c52-11aaf28a8ab0",
            "name": "Warehouse Supervisor"
        },
        {
            "id": "3dbc33f0-e706-11ec-ac33-75f47055ea57",
            "name": "Finance Operation Manager"
        },
        {
            "id": "3deaafb0-58dd-11eb-8040-a5b850e65eb1",
            "name": " Shop Supervisor"
        },
        {
            "id": "3df0e500-74b0-11ec-a85e-9fa428278c0f",
            "name": "Resident Medical Officer - PGY (1)"
        },
        {
            "id": "3e12d350-4eeb-11ea-b7db-299fd8d5329f",
            "name": "Project Manager (NH Procurement) "
        },
        {
            "id": "3e1ee220-520d-11ee-890c-57f58a1e5569",
            "name": "Purchasing Manger"
        },
        {
            "id": "3e4090a0-638f-11ea-884f-97442318b7f5",
            "name": "General Team Foreman"
        },
        {
            "id": "3e4ee410-74b0-11ec-8dbf-3550f72bb25d",
            "name": "Senior Medical Officer (1)"
        },
        {
            "id": "3e547a40-c60e-11ec-8602-8547ad6b02e3",
            "name": "Senior Design Technician"
        },
        {
            "id": "3e57b9c0-4eeb-11ea-97ce-bb0d31db7bc8",
            "name": "Service Supervisor"
        },
        {
            "id": "3e649d70-5f4f-11ea-8c72-c3b06b14412c",
            "name": "PA Attendant"
        },
        {
            "id": "3e791380-4eeb-11ea-b932-d334c05b0c33",
            "name": "Chief Cashier"
        },
        {
            "id": "3e922390-f2c2-11ed-9888-55fbe9819fa4",
            "name": "Senior Product Manager"
        },
        {
            "id": "3e9a01c0-4eeb-11ea-b278-d9a8adbad224",
            "name": "Admin Supervisor"
        },
        {
            "id": "3ea0c030-5e2e-11ec-baa7-06ca9e02f304",
            "name": "HR Manager (HR Operations)"
        },
        {
            "id": "3ea0c247-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Senior Regional Sales Executive"
        },
        {
            "id": "3ea0c292-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Logistics Admin Assistant"
        },
        {
            "id": "3ea0c2c2-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Chef De Partie (Pastery)"
        },
        {
            "id": "3ea0c2ed-5e2e-11ec-baa7-06ca9e02f304",
            "name": "General Manager – Development"
        },
        {
            "id": "3ea0c321-5e2e-11ec-baa7-06ca9e02f304",
            "name": "General Manager (Agribusiness)"
        },
        {
            "id": "3ea0c34a-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Branch Manager(Mandalay)"
        },
        {
            "id": "3ea0c36e-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Account Annalysis"
        },
        {
            "id": "3ea0c390-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Account Receivable Coordinator"
        },
        {
            "id": "3ea0c3b4-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Assistant Collection Manager"
        },
        {
            "id": "3ea0c3d6-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Principal Software Engineer"
        },
        {
            "id": "3ea0c3f6-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Supervisor(Customer Solutions)"
        },
        {
            "id": "3ea0c41a-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Insurance Manager"
        },
        {
            "id": "3ea0c43a-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Hiker(Mandalay)"
        },
        {
            "id": "3ea0c470-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Senior Manager(Legal and Compliance)"
        },
        {
            "id": "3ea0c493-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Assistant Manager Government Reltion and Product Support"
        },
        {
            "id": "3ea0c4bd-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Warehouse Supervisor(Wholegoods)"
        },
        {
            "id": "3ea0c4df-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Assistant Manager(Service Admin)"
        },
        {
            "id": "3ea0c4ff-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Warehouse Supervisor (Spare Parts)"
        },
        {
            "id": "3ea0c520-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Admin and Network Development Executive"
        },
        {
            "id": "3ea0c542-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Assistant Inventory Controller"
        },
        {
            "id": "3ea0c562-5e2e-11ec-baa7-06ca9e02f304",
            "name": "Parts Sales Admin (JCB, NHG)"
        },
        {
            "id": "3eb916e0-a94e-11ec-a0c1-e9f418dd76a6",
            "name": "Telehealth Family Practitioner (Team Lead)"
        },
        {
            "id": "3ebac8c0-4eeb-11ea-aefb-9ff4c89ed054",
            "name": "Sales Document Controller"
        },
        {
            "id": "3edbf900-4eeb-11ea-8d45-1d8913ce29a6",
            "name": "Assistant Project Manager (NH Procurement) "
        },
        {
            "id": "3ee49af0-a94e-11ec-828b-4bea602f5116",
            "name": "Counseling Psychologist (Part Time)"
        },
        {
            "id": "3f1011c0-a94e-11ec-bcf4-cdbfb8c0b7cf",
            "name": "General Manager - Clinical Education"
        },
        {
            "id": "3f121330-e645-11ec-bb9c-8369ba0936d1",
            "name": "Sports & Recreation Junior Executive"
        },
        {
            "id": "3f173340-b07a-11ed-bf2a-09a20faa9b4e",
            "name": "Sr. Chef de Parite"
        },
        {
            "id": "3f3f9830-4eeb-11ea-af42-bd63629a67cb",
            "name": "Stock Controller"
        },
        {
            "id": "3f417670-5f50-11ea-aa74-b151594474eb",
            "name": "Trainee Operator"
        },
        {
            "id": "3f476e60-5f4f-11ea-b210-8786214993ef",
            "name": "Senior CDP"
        },
        {
            "id": "3f4a5740-74b0-11ec-a4c0-0d32a8ae8ba4",
            "name": "Telehealth Family Practitioner"
        },
        {
            "id": "3f667390-a94e-11ec-acea-99da4c9b83b5",
            "name": "Coordinator - Fixed Assets"
        },
        {
            "id": "3f6f5c60-12b3-11eb-8d79-9f300e94c3ea",
            "name": "Senior IT Project Manager"
        },
        {
            "id": "3f737bd0-5f4f-11ea-ab2d-13df02c20745",
            "name": "Commis 3"
        },
        {
            "id": "3f891780-fa7d-11eb-84ef-654932a9a09d",
            "name": "Project Control Assistant"
        },
        {
            "id": "3f91f7a0-a94e-11ec-a92c-a90317636f78",
            "name": "Senior Application Specialist"
        },
        {
            "id": "3fa3c4f0-4eeb-11ea-8965-651e69a52fa4",
            "name": "Logistics Assistant"
        },
        {
            "id": "3fc14940-776a-11ec-bf7c-4fecb1b3bcf2",
            "name": "Senior Medical Officer"
        },
        {
            "id": "3fc50390-4eeb-11ea-adf4-7d9b55713b05",
            "name": "Parts Sales & Marketing Executive"
        },
        {
            "id": "3fe679f0-4eeb-11ea-997b-b34a2f54b772",
            "name": "Admin & Network Development Assistant"
        },
        {
            "id": "3ff115e0-5ebc-11eb-b305-29a412952e4d",
            "name": "Project Engineer(C&I)"
        },
        {
            "id": "3ff46a50-776a-11ec-97a5-0b7e21b9f5e4",
            "name": "Seinor Medical Officer"
        },
        {
            "id": "3ffc17a0-74b0-11ec-a8bd-47230ef95416",
            "name": "General Manager - Clinical & HCA Education"
        },
        {
            "id": "3ffc4270-5f4f-11ea-a41b-d92ff6b52c2b",
            "name": "Demi Bakery & Pastry Chef"
        },
        {
            "id": "40564d50-5f4f-11ea-869c-4739fc03f297",
            "name": "Security Staff"
        },
        {
            "id": "406c5fe0-56ee-11ea-ac88-6fbc5d4646dc",
            "name": "Senior System Engineer"
        },
        {
            "id": "406f8b80-638f-11ea-8d2b-edd7877c8df8",
            "name": "Credit Control Assistant"
        },
        {
            "id": "408bdaa0-4eeb-11ea-a3e4-479d6407b8ab",
            "name": "Trainer"
        },
        {
            "id": "408d7750-74b0-11ec-a41c-8722b60d33f5",
            "name": "Senior Medical Officer (2)"
        },
        {
            "id": "40a453c0-9fd5-11ea-8b1f-8d171b9bfdd6",
            "name": "Head of Marketing"
        },
        {
            "id": "40a66970-5948-11eb-ae7e-2fb2a34067df",
            "name": "Store Clerk"
        },
        {
            "id": "40aecb90-4eeb-11ea-a87e-338e08b31f47",
            "name": "Inventory Assistant "
        },
        {
            "id": "40b16a20-638f-11ea-853b-6b732659d869",
            "name": "Junior HR Executive"
        },
        {
            "id": "40b98680-74b0-11ec-bd9f-8d5e4b9edc18",
            "name": "Senior Registrar"
        },
        {
            "id": "40d0aeb0-4eeb-11ea-873e-a3220c591f22",
            "name": "Inventory Controller "
        },
        {
            "id": "40f20fe0-4eeb-11ea-a8a1-7792fed995ba",
            "name": "Assistant Credit Controller"
        },
        {
            "id": "41116df0-74b0-11ec-b970-a7af65dfc508",
            "name": "Registrar"
        },
        {
            "id": "411388b0-4eeb-11ea-b366-297b14bf5da7",
            "name": "Plan Maintenance Coordiantor "
        },
        {
            "id": "41571fa0-4eeb-11ea-97ad-17fd21a799c7",
            "name": "Jr. Service Engineer"
        },
        {
            "id": "416fb4e0-638f-11ea-824b-47baa0c136d4",
            "name": "Senior Receptionist"
        },
        {
            "id": "4175a7e0-5f4f-11ea-8402-f966d9dfeadc",
            "name": "Commis 1"
        },
        {
            "id": "417894b0-4eeb-11ea-a651-63f35f5d3738",
            "name": "Assistant Service Admin"
        },
        {
            "id": "4183ead0-776a-11ec-8277-fbaa7a9870d0",
            "name": "Assistant Medical Officer"
        },
        {
            "id": "4185ec70-f9dc-11ea-8213-e554bb27b72f",
            "name": "Residential Sales Director (International Markets)"
        },
        {
            "id": "41998d90-4eeb-11ea-a9fb-8571327f140c",
            "name": "Personal Assistant to MD "
        },
        {
            "id": "41a2fc80-5f50-11ea-b2ff-17059df39560",
            "name": "GCC Supervisor"
        },
        {
            "id": "41a335d0-5948-11eb-954d-ade794a58396",
            "name": "Trainee Cashier"
        },
        {
            "id": "41a9a0a0-e25f-11ed-b4fe-5f8ee20e4705",
            "name": "Golf Course Landscape"
        },
        {
            "id": "41ba91d0-4eeb-11ea-b402-cfa9ba514d9f",
            "name": "Parts Sales Assistant "
        },
        {
            "id": "41e15d40-74b0-11ec-9e91-95ba4dbd6daa",
            "name": "Resident Medical Officer - PGY (2)"
        },
        {
            "id": "41f75df0-22d6-11ea-ab68-81987386b2fc",
            "name": "Restaurant Manager"
        },
        {
            "id": "41fc0be0-d90a-11e9-911c-172d3fa6d00e",
            "name": "Group CTO"
        },
        {
            "id": "41fc4ed0-4eeb-11ea-936f-fb308637a0c4",
            "name": "Digital Marketing Executive"
        },
        {
            "id": "4200e540-5f4f-11ea-813b-17e32c387e8d",
            "name": "Bakery Chef"
        },
        {
            "id": "421d5bd0-4eeb-11ea-b87b-17050ddbac93",
            "name": "ERP and Software Manager "
        },
        {
            "id": "42390410-5f4f-11ea-9b7b-55b1ac0308d2",
            "name": "Sales Executive (Nyaung Shwe)"
        },
        {
            "id": "423e8fa0-4eeb-11ea-be4a-6ba60068f8c2",
            "name": "Parts Sales Admin"
        },
        {
            "id": "425a2b60-0199-11eb-bf3c-3fd75a304a76",
            "name": "Proshop Sales"
        },
        {
            "id": "42634a20-0747-11ea-9bd4-6fcc49239d54",
            "name": "Junior Project Coordinator"
        },
        {
            "id": "426419c0-b2dc-11eb-a1e5-3792b7d91737",
            "name": "Senior Manager Government relations"
        },
        {
            "id": "426c90f0-5f4f-11ea-8af3-4729ecf345aa",
            "name": "Junior.Account"
        },
        {
            "id": "4273e6b0-f1d8-11ec-bdcf-cf6564c14973",
            "name": "Technician Grade/III"
        },
        {
            "id": "427b40e0-0747-11ea-a40a-d563de8a78f7",
            "name": "Talent Development Manager"
        },
        {
            "id": "42a26170-5f4f-11ea-af32-35e40b035a49",
            "name": "Crew Chief"
        },
        {
            "id": "42a4a440-4eeb-11ea-9920-6dae3c419b97",
            "name": "Assistant Product Marketing Manager "
        },
        {
            "id": "42c619c0-4eeb-11ea-b195-b1771c2e09a0",
            "name": "System Coordinator "
        },
        {
            "id": "42cdd790-5f4f-11ea-aced-dfffc81dc16b",
            "name": "Assistant Crew Chief"
        },
        {
            "id": "42d7e960-58d6-11eb-aa54-c71a7ce567a9",
            "name": "Head Cook"
        },
        {
            "id": "42f25320-58d6-11eb-901c-7fe8b64e0d6f",
            "name": "Assistant Head Cook"
        },
        {
            "id": "42fa5b30-5f4f-11ea-81e3-b7afee610494",
            "name": "Crew"
        },
        {
            "id": "4309f540-4eeb-11ea-8475-158dc7de7ced",
            "name": "PMP and Warranty Executive "
        },
        {
            "id": "430fd420-29a3-11ed-9d41-3dbc497a3d89",
            "name": "Sales Representative"
        },
        {
            "id": "432b5540-4eeb-11ea-b6fa-b122616e8657",
            "name": "Sr. Trainer "
        },
        {
            "id": "43439850-5f50-11ea-9a94-391e51c06096",
            "name": "Senior Marshal"
        },
        {
            "id": "436f7c80-4eeb-11ea-9d7b-515014bb88a7",
            "name": "Sr. Finance Manager "
        },
        {
            "id": "43730280-5f50-11ea-9995-376006dab8db",
            "name": "Marshal"
        },
        {
            "id": "43883ff0-638f-11ea-8cf0-59b58092b5e9",
            "name": "PABX Technician cum Operator"
        },
        {
            "id": "43a05cd0-5f50-11ea-9515-f94b1818333d",
            "name": "Caddy Admin"
        },
        {
            "id": "43a5ab60-0199-11eb-9573-05e5a2ac2cec",
            "name": "QA/QC Inspector (Façade)"
        },
        {
            "id": "43b237e0-4eeb-11ea-8df4-2b215f4551a4",
            "name": "Network Development Manager"
        },
        {
            "id": "43b32980-776a-11ec-92db-9597b028f049",
            "name": "Operations Manager - SIC"
        },
        {
            "id": "43fb3590-5f50-11ea-9658-0ffe139dcee9",
            "name": "Starter"
        },
        {
            "id": "43fb78a0-4eeb-11ea-97e3-0da1f3592869",
            "name": "Parts Administrator"
        },
        {
            "id": "441e34b0-4eeb-11ea-aebc-05b6f9ac4e58",
            "name": "Service Manager"
        },
        {
            "id": "4464e860-4eeb-11ea-89f1-e79e865c2e70",
            "name": "Business Development Executive "
        },
        {
            "id": "4465f090-a324-11eb-bee7-558c1835d97a",
            "name": "Assistant to the CEO ,Government Relations Manager & Community Engagement Manager"
        },
        {
            "id": "446d8530-638f-11ea-8b27-8176da0a29bb",
            "name": "Irrigtion Foreman"
        },
        {
            "id": "44715ef0-f9dc-11ea-9c2f-0bf995280279",
            "name": "Personal Assistant cum Sales Associate"
        },
        {
            "id": "448375c0-5f50-11ea-9cd3-1d34f91c2133",
            "name": "Bag drop Registrar"
        },
        {
            "id": "44a999c0-4eeb-11ea-b1b3-a72cdbfd8df1",
            "name": "HR/Admin Assistant "
        },
        {
            "id": "44adc130-f9dc-11ea-aeed-e376804d4694",
            "name": "Sales Admin Officer"
        },
        {
            "id": "44c0df20-5f4f-11ea-8581-ffc34a457a6e",
            "name": " JR.Assistant Crew Chief"
        },
        {
            "id": "44cd6e10-6d9f-11ee-9707-89bf6ff7fe6d",
            "name": "Commis Pastry"
        },
        {
            "id": "44de29e0-5f50-11ea-879c-efddf224e7a1",
            "name": "Tunnel Duty Register"
        },
        {
            "id": "44ec3ab0-5941-11eb-a906-eb6bd62d8ba4",
            "name": "Tr-BBQ"
        },
        {
            "id": "44ece940-4eeb-11ea-b36d-13b7d3bed41f",
            "name": "Jr. Accountant"
        },
        {
            "id": "450bce10-5f50-11ea-a510-fb8b22dd811d",
            "name": "GCO Supervisor"
        },
        {
            "id": "450ea0d0-4eeb-11ea-b26e-7b1e5e8dfe62",
            "name": "Spare Parts Manager"
        },
        {
            "id": "453a2b10-ed9f-11ec-9a3c-6d651b9248bf",
            "name": "Senior Corporate Secretarial Executive"
        },
        {
            "id": "455d3a00-2fdd-11ec-ade5-d72868cfb9d8",
            "name": "Foreman (Tank Area)"
        },
        {
            "id": "456a1530-5f50-11ea-b164-c76515063694",
            "name": "Guest Service"
        },
        {
            "id": "457304c0-4eeb-11ea-b7e2-9bc0a46eeaa5",
            "name": "Spare Parts Sales "
        },
        {
            "id": "457ebd60-1442-11ec-a956-11ac519b6038",
            "name": "Field Call Officer (PT)"
        },
        {
            "id": "45957f60-4eeb-11ea-82b4-6d50f518b35f",
            "name": "Service Admin "
        },
        {
            "id": "45b302e0-5941-11eb-bf30-2722cbfb44c7",
            "name": "Aera Head Waiter"
        },
        {
            "id": "45c68470-5f50-11ea-99ed-43c0d0fe74b4",
            "name": "Service Staff"
        },
        {
            "id": "45d1a5c0-59e1-11ea-833a-8bf3815e7cca",
            "name": "Secretary"
        },
        {
            "id": "45d9d9a0-4eeb-11ea-bcce-875f26bf7b4d",
            "name": "Branch Manager (Heho & Loikaw) "
        },
        {
            "id": "45fe1740-4eeb-11ea-8103-31bd0cc21dbf",
            "name": "Service Engineer"
        },
        {
            "id": "46240aa0-7d20-11ed-89d8-33632f1ac743",
            "name": "Client Service Admin"
        },
        {
            "id": "4630cec0-fa7c-11eb-ba3b-2558567b74cd",
            "name": "Assistant"
        },
        {
            "id": "4643d8f0-4165-11ee-9334-5b9de429fbf4",
            "name": "Sale & Service Administrator"
        },
        {
            "id": "46490290-3b76-11eb-8b32-4fec48340262",
            "name": "Change Coordinator"
        },
        {
            "id": "4650d7f0-5f4f-11ea-b4af-f73b6c1f3642",
            "name": "Raft Driver"
        },
        {
            "id": "4652ffa0-850d-11ea-a35f-af7548df83de",
            "name": "Manager – Internal Communications"
        },
        {
            "id": "465bd600-77c0-11ec-8232-b17a73ce18e7",
            "name": " Officer "
        },
        {
            "id": "465da1b0-e25f-11ed-9451-650dd32d464e",
            "name": "Key Account Admin"
        },
        {
            "id": "466aacf0-4eeb-11ea-8b72-75cef7c306e1",
            "name": "Spare Parts Sales and Administration "
        },
        {
            "id": "466ec2f0-7d20-11ed-a596-67fb669f847b",
            "name": "Caddy"
        },
        {
            "id": "46900620-58c8-11eb-bd74-0f6e85b5c508",
            "name": "Junior Chief Auditor"
        },
        {
            "id": "469a4b20-7f78-11ee-82f9-afdfa3627ed6",
            "name": "Assistant Marketing Manager - Food & Beverage"
        },
        {
            "id": "46ab6e80-5f4f-11ea-8fd7-1dde85fa6b68",
            "name": "House Staff"
        },
        {
            "id": "46d616c0-4eeb-11ea-9935-23fe866cfe1c",
            "name": "Branch Coordinator"
        },
        {
            "id": "46d62fe0-5f4f-11ea-bb87-b3b0a3b1e95c",
            "name": "Vehicle Fleet Spvs"
        },
        {
            "id": "46d750c0-0673-11ee-ad21-0d3d556955e6",
            "name": "Leasing Operation Assistant"
        },
        {
            "id": "46f384a0-fc1d-11ea-a575-e3acf9e99268",
            "name": "Data Analyst"
        },
        {
            "id": "46f96920-4eeb-11ea-85f2-9d8a2fc48f94",
            "name": "Spare Parts Admin"
        },
        {
            "id": "47012c00-58e3-11eb-81ab-c989b70dc7e8",
            "name": "Helper Beverage "
        },
        {
            "id": "470ca5c0-5a0d-11eb-a1eb-3bf7389c6de7",
            "name": "HR & Admin Director"
        },
        {
            "id": "471c8470-4eeb-11ea-a8cb-afe28c53b2d6",
            "name": "Sales Administrator"
        },
        {
            "id": "472f76b0-ac29-11ed-ab57-c5d8b690756e",
            "name": "Senior Contract & Budget Controller"
        },
        {
            "id": "4770bf10-f9dc-11ea-87f6-a5f8a2ea76b7",
            "name": "Change Management Manager"
        },
        {
            "id": "4774ede0-58e3-11eb-88f6-6bf0c763f949",
            "name": "Sr- Kitchen Assistant"
        },
        {
            "id": "4792ebe0-71cf-11ea-b3e8-692e388ed54e",
            "name": "Assistant HK Manager"
        },
        {
            "id": "47ae2db0-58e3-11eb-ba2c-151ce2cc79a9",
            "name": "Traniee Bartender"
        },
        {
            "id": "47c0d240-58c8-11eb-9cd3-c5f7ea711315",
            "name": "Assistant Manager (Purchasing)"
        },
        {
            "id": "47e95640-5f50-11ea-b00b-e93c52722614",
            "name": "Senior Demi Chef De Partie"
        },
        {
            "id": "4805daa0-5f4f-11ea-ab53-6f0bc6193c6b",
            "name": "Maint; Asst."
        },
        {
            "id": "4811bae0-71cf-11ea-add2-998f27c18b15",
            "name": "Assistant Facility Manager"
        },
        {
            "id": "4814c670-7d20-11ed-918d-dd9de050a37b",
            "name": "Light Gods Vehicle Driver"
        },
        {
            "id": "48173a20-5f50-11ea-a900-67aea4485e7b",
            "name": "Assistant Chief Steward"
        },
        {
            "id": "48339fd0-4eeb-11ea-8d56-8d2467a75d97",
            "name": "Parts Sales and Admin Executive "
        },
        {
            "id": "48554520-5f50-11ea-bd35-7bc70f05146f",
            "name": "Steward Supervisor"
        },
        {
            "id": "48845c50-5f50-11ea-ad8a-17ab36efe81b",
            "name": "Banquet Supervisor"
        },
        {
            "id": "488b72f0-d880-11ea-8a5c-63081d5b6f7a",
            "name": "Senior Executive Government Relations"
        },
        {
            "id": "48b3a540-588b-11ea-b8ca-f7a8664509d8",
            "name": "Medical Record Manager"
        },
        {
            "id": "48b60cd0-aaf1-11ea-91f8-434020ef2442",
            "name": "General Manager-KFC"
        },
        {
            "id": "48cca680-5f50-11ea-98d2-9181acacb26d",
            "name": "Cook III"
        },
        {
            "id": "48e0bd10-190d-11ec-a8d1-f1819d4d2328",
            "name": "Guest Relations Manager"
        },
        {
            "id": "48e1bf70-4eeb-11ea-9374-51a16cb3f36a",
            "name": "Service Administrator"
        },
        {
            "id": "4904f9e0-4eeb-11ea-a51e-bb25126ae37c",
            "name": "Mechanic"
        },
        {
            "id": "491b5e20-5f50-11ea-b3ff-5dc1645d37ad",
            "name": "Cook I"
        },
        {
            "id": "491f62e0-5dd0-11ea-8273-87cf4e3367dd",
            "name": "Employee Services Executive"
        },
        {
            "id": "49200cb0-d208-11ec-97af-35e7d5a57923",
            "name": "Senior Medical Officer (SMO 2)"
        },
        {
            "id": "492b8700-588b-11ea-98c6-3bd11cb9c133",
            "name": "Chief Radiographer"
        },
        {
            "id": "494dc180-cb21-11ed-9ce1-b7138e748dec",
            "name": "Junior Web Developer"
        },
        {
            "id": "4991e040-8ff7-11ed-a50c-a3439c793126",
            "name": "Junior Quality Assurance Engineer"
        },
        {
            "id": "499555b0-71cf-11ea-a33b-6da3f42967b0",
            "name": "Senior Driver"
        },
        {
            "id": "49ae4600-8ff8-11ed-9ed5-bf8fbd926357",
            "name": "Jr. Graphic Designer"
        },
        {
            "id": "49b10960-5f4f-11ea-9fe7-6786a81f47b1",
            "name": "Sales & Marketing executive"
        },
        {
            "id": "49b29ab0-5f50-11ea-b8d8-cb38a5722ad3",
            "name": "Demi Chef De Partie"
        },
        {
            "id": "49b47830-4eeb-11ea-84b0-4f19469f2ab4",
            "name": "Parts Sales & Admin Executive "
        },
        {
            "id": "49c13240-d208-11ec-9410-59a50e35594e",
            "name": "Resident Medical Officer (PGY 1)/Assistant Medical Officer (AMO)"
        },
        {
            "id": "49c43e10-6377-11ee-a1ee-9d026eca4154",
            "name": "Trekking guide Cum Receptionist"
        },
        {
            "id": "49d2a580-638f-11ea-a9b2-97a9d97457a6",
            "name": "Group Leader"
        },
        {
            "id": "49dca340-5f4f-11ea-8d83-8db490d79dcb",
            "name": "Asst. Sale & Mkt Executive"
        },
        {
            "id": "49ee6dc0-588b-11ea-8a16-cdcfef129ea5",
            "name": "Sr. Medical Technologist"
        },
        {
            "id": "49f06dc0-97dd-11ed-a4b1-db54e109668a",
            "name": "Assistant Fleet Maintenance Manager"
        },
        {
            "id": "49f5c6d0-74b0-11ec-a2b8-4ddd058b1164",
            "name": "Emeritus Patron - Ethics & General Surgery"
        },
        {
            "id": "4a076a60-33ea-11eb-8669-07e5f98b7a2f",
            "name": "Assistant Golf Operations Manager"
        },
        {
            "id": "4a2242a0-776a-11ec-9340-7943bd3ba00f",
            "name": "Pharmacist Aid "
        },
        {
            "id": "4a2352b0-74b0-11ec-84c9-67c21478bfd8",
            "name": "Customer Care Assistant"
        },
        {
            "id": "4a396d60-5e99-11ea-b493-d768e2759fe8",
            "name": "Senior Mechanic"
        },
        {
            "id": "4a3ce320-588b-11ea-ab60-8177855d4d32",
            "name": "Unit Head (Ward 3)"
        },
        {
            "id": "4a3f7180-5f4f-11ea-847a-176cdb1d92ba",
            "name": "Junior Sale Staff"
        },
        {
            "id": "4a42d210-595b-11eb-95ab-27c984f68fa6",
            "name": "Asst:Chief Cook"
        },
        {
            "id": "4a5560f0-6cd7-11ea-9bea-3fac8afbc6d4",
            "name": "Head Of Risk"
        },
        {
            "id": "4a648b40-588b-11ea-b5ac-bfb0d0c8c58f",
            "name": "Unit Head (Ward 1)"
        },
        {
            "id": "4a7841e0-776a-11ec-b41b-4b09d2aa7d5b",
            "name": "Senior Engineer - M&E"
        },
        {
            "id": "4a79d990-5a64-11eb-b2a3-cd5ad774dcc2",
            "name": "Assistant Finance Manager (Risk & Compliance)"
        },
        {
            "id": "4a8240d0-6717-11ee-9c88-d18aa13f5de4",
            "name": "Junior Sustainability Executive"
        },
        {
            "id": "4a872a30-5e99-11ea-9422-39bc7f5e98cb",
            "name": "Mechanic Supervisor"
        },
        {
            "id": "4a8cebe0-588b-11ea-bf5c-fb29da731f39",
            "name": "Unit Head (OT)"
        },
        {
            "id": "4a989c30-5f4f-11ea-a84e-89d7477deee7",
            "name": "Asst.Crew Chief"
        },
        {
            "id": "4a9e60c0-fc19-11ea-a014-4d31c951dd98",
            "name": "Office Admin"
        },
        {
            "id": "4aa58240-776a-11ec-b9b4-4b86ce8aa784",
            "name": "Engineer - M&E"
        },
        {
            "id": "4ab48b70-588b-11ea-9490-33c39657ab57",
            "name": "Nursing Officer 2"
        },
        {
            "id": "4ac822f0-09bf-11ee-8028-054b1e60a275",
            "name": "HR & Admin Assistant (Intern)"
        },
        {
            "id": "4ac93a40-4eeb-11ea-9d64-53912ce4c9c3",
            "name": "Regional Branch Manager-Ayeyarwaddy Division"
        },
        {
            "id": "4aea24f0-5e99-11ea-9a43-0be0e8ba8a07",
            "name": "Parts Operation Executive"
        },
        {
            "id": "4aec10a0-4eeb-11ea-8e52-3518dfdc16d5",
            "name": "Spare Parts Manager (Ayeyawaddy) "
        },
        {
            "id": "4aee5d10-595b-11eb-a968-891922e17f14",
            "name": "Cutter"
        },
        {
            "id": "4af9f2c0-909d-11ed-bb1c-2dcdbb68366b",
            "name": "Field HR Manager"
        },
        {
            "id": "4afc6880-2a77-11ed-a54f-072980028adb",
            "name": "Sale Admin"
        },
        {
            "id": "4b059070-5f50-11ea-8109-d1c5864225f2",
            "name": "Bar Captain"
        },
        {
            "id": "4b279550-aa06-11ea-ad97-09a01731e689",
            "name": "Resale & Marketing Associate"
        },
        {
            "id": "4b2cf3f0-638f-11ea-adb1-bd9207c5505e",
            "name": "Leader"
        },
        {
            "id": "4b36b980-5f50-11ea-b89e-ade451c8ef29",
            "name": "Chef De Partie(Pastry)"
        },
        {
            "id": "4b5217d0-5e99-11ea-ba5c-ef2990bac993",
            "name": "Implement Assembler"
        },
        {
            "id": "4b52eeb0-4eeb-11ea-8cf0-63a2208f9d98",
            "name": "Service Coordinator"
        },
        {
            "id": "4b760a80-6d8c-11ea-8880-95c8512387e8",
            "name": "Assistant Manager, Finance & Accounting"
        },
        {
            "id": "4b8d5b80-588b-11ea-bf4d-83cea6a47beb",
            "name": "MA(DM,SM and Website)"
        },
        {
            "id": "4b9c5200-595b-11eb-9ef9-5547bd260ef2",
            "name": "Junior Wok"
        },
        {
            "id": "4ba9be10-5e99-11ea-ba9f-611a81bec26e",
            "name": "Warehouse Assistant"
        },
        {
            "id": "4bb47d30-6d8c-11ea-a01d-7f65e57594f0",
            "name": "HR & Administrative Manager"
        },
        {
            "id": "4bc04920-588b-11ea-bbd6-6310331f8880",
            "name": "Manager(Marketing)"
        },
        {
            "id": "4bd3dfe0-5e99-11ea-b81d-39dd1d896f73",
            "name": "National Parts Manager "
        },
        {
            "id": "4bd5d0a0-595b-11eb-887b-4321cdba728f",
            "name": "Car Parking"
        },
        {
            "id": "4be43df0-d14a-11ec-952c-df882e7d2223",
            "name": "Operations Manager - Group SIC"
        },
        {
            "id": "4beff460-6d8c-11ea-8bcc-5513a830763d",
            "name": "Assistant Manager (Site Acquisition)"
        },
        {
            "id": "4c158fc0-638f-11ea-9687-0fb37eaf7781",
            "name": "Store Staff"
        },
        {
            "id": "4c271cc0-5e99-11ea-9774-ebd979427d8d",
            "name": "Assistant Service Supervisor "
        },
        {
            "id": "4c4c1800-595b-11eb-97f5-15af2045ae14",
            "name": "Trainee  Bartender"
        },
        {
            "id": "4c4cf5e0-588b-11ea-bef5-63ac7aa45a22",
            "name": "PR & Communication Officer"
        },
        {
            "id": "4c50bd20-5e99-11ea-b951-3711719c08fb",
            "name": "Show room Cleaner"
        },
        {
            "id": "4c6366d0-638f-11ea-b0b1-17676d55f592",
            "name": "Driving Range Attendant"
        },
        {
            "id": "4c67b440-6d8c-11ea-b371-4f17a92a201d",
            "name": "O&M Engineer"
        },
        {
            "id": "4c687600-d208-11ec-b227-c5db0b9b59ae",
            "name": "Branding Assistant Manager"
        },
        {
            "id": "4c6f8940-74b0-11ec-ac32-8fd212b26ec6",
            "name": "Cook Helper - Coffee Shop"
        },
        {
            "id": "4c800f40-588b-11ea-afdf-eb0c21623fad",
            "name": "PR & Communications Manager"
        },
        {
            "id": "4ca4c880-6d8c-11ea-8a42-7f162e082d85",
            "name": "Cluster O&M Manager"
        },
        {
            "id": "4cc731e0-5f4f-11ea-a156-bb9f53283776",
            "name": "Jr.Asst.Crew Chief"
        },
        {
            "id": "4ce39250-638f-11ea-a3a4-3311e041d20c",
            "name": "PABX Operator Cum Admin"
        },
        {
            "id": "4cedf0e0-588b-11ea-96ac-911a6bbc3cf6",
            "name": "POD Coordinator"
        },
        {
            "id": "4cfb0300-5e99-11ea-8aba-b7c045195801",
            "name": "MD's Driver"
        },
        {
            "id": "4cfb8b40-6d8c-11ea-a447-3d76a91d6807",
            "name": "NOC Supervisor"
        },
        {
            "id": "4d1722e0-d749-11ea-ae84-4f076708ebc1",
            "name": "Senior Associate (Level 1)"
        },
        {
            "id": "4d1d62c0-4eeb-11ea-983b-51e869e0f8dc",
            "name": "After Sales Service supervisor"
        },
        {
            "id": "4d21b3f0-588b-11ea-aff6-255407a3790b",
            "name": "F&B Controllar"
        },
        {
            "id": "4d2dc0d0-699a-11ea-9802-49bdb52ced0b",
            "name": "Treasury"
        },
        {
            "id": "4d55d150-6d8c-11ea-b3b2-bf8514a37213",
            "name": "Community Engagement Associate"
        },
        {
            "id": "4d82fa60-588b-11ea-9bd3-39db2511e9ed",
            "name": "AP & IT Systems Administrator"
        },
        {
            "id": "4d985f10-74b0-11ec-ac45-93c5b74fb61c",
            "name": "Team Leader - Call Center"
        },
        {
            "id": "4da7c520-5e99-11ea-9997-0b2d2fdbed95",
            "name": "Parts Operation Administrator"
        },
        {
            "id": "4db10280-588b-11ea-a5a9-937df461b20f",
            "name": "Manager ( Hardware )"
        },
        {
            "id": "4dc29c90-74b0-11ec-9174-a917295987ed",
            "name": "Manager - Digital Customer"
        },
        {
            "id": "4dc78400-3b77-11eb-8a4d-774159f8f9fe",
            "name": "Senior Manager Government relations  and Product Support"
        },
        {
            "id": "4dd216c0-5e99-11ea-8333-f158748dcb30",
            "name": "National Service Manager "
        },
        {
            "id": "4de1bc90-588b-11ea-a7b2-abf8df4f25d0",
            "name": "Sr. Application Specialist"
        },
        {
            "id": "4defb6a0-74b0-11ec-bab1-697b9ae6705a",
            "name": "Manager - Material Management "
        },
        {
            "id": "4e14dbf0-6d8c-11ea-801f-fb71e3c7ff32",
            "name": "Operations Coordinator"
        },
        {
            "id": "4e341a20-638f-11ea-914e-dd5e3e2bee11",
            "name": "Procurement Assistant"
        },
        {
            "id": "4e48fb90-588b-11ea-9efb-51f9d83db61d",
            "name": "Application Specialist"
        },
        {
            "id": "4e57dd10-6d8c-11ea-86d2-e50f87b4976e",
            "name": "Procurement & Logistic Assistant Manager"
        },
        {
            "id": "4e596130-5f8e-11ea-ab88-35e35e9f2ce0",
            "name": "Operations & Development Manager"
        },
        {
            "id": "4e695200-e288-11e9-bd2c-9b56a9f8fe50",
            "name": "Head of Investor Relations"
        },
        {
            "id": "4e6bb450-ab5a-11ed-be6b-2d5ff8090c11",
            "name": "Senior Building Maintenance Technician"
        },
        {
            "id": "4e77e760-5e99-11ea-a358-b53152fe13e3",
            "name": "Apprentic "
        },
        {
            "id": "4e7a2de0-74b0-11ec-99dd-c120b2b7bb52",
            "name": "Manager - Network "
        },
        {
            "id": "4e7cc8a0-588b-11ea-834a-1375f45d1c7a",
            "name": "Hardware&Network Technician"
        },
        {
            "id": "4e8af4f0-5f50-11ea-9f4c-1d56d7571fed",
            "name": "Chef De Partie(Night Barker)"
        },
        {
            "id": "4ea8be20-74b0-11ec-8011-bbae6e8854c5",
            "name": "Manager - Security"
        },
        {
            "id": "4ed42590-74b0-11ec-8137-477b3d6af3c5",
            "name": "Branding Assistant"
        },
        {
            "id": "4ef565c0-5e99-11ea-b3f3-09fe2facf64d",
            "name": "Warehouse Driver"
        },
        {
            "id": "4eff3b30-74b0-11ec-add0-abb0f13fed44",
            "name": "Manager - Branding & Communication"
        },
        {
            "id": "4f089eb0-030c-11eb-b7f4-2574a1874924",
            "name": "Assistant Planning Manager"
        },
        {
            "id": "4f092180-4eeb-11ea-a9aa-e13adae4d421",
            "name": "Sales and Service Administrator "
        },
        {
            "id": "4f0d0410-6d8c-11ea-ba9d-5b46f8595e6d",
            "name": "Junior Legal Officer"
        },
        {
            "id": "4f2639a0-6aeb-11ed-bd8c-f76d0f50549a",
            "name": "Chief Financial Controller"
        },
        {
            "id": "4f27ea40-0c16-11ee-bb78-2f4d7d161b5e",
            "name": "Application Support Executive"
        },
        {
            "id": "4f2cc160-74b0-11ec-96f2-b74df5431a67",
            "name": "Manager - Infrastracture"
        },
        {
            "id": "4f48d360-5e99-11ea-9c57-6f86820fd5ee",
            "name": "Jr. Mechanic"
        },
        {
            "id": "4f495990-588b-11ea-989b-61d62230aec5",
            "name": "Sr. Procurement Officer"
        },
        {
            "id": "4f57ce80-74b0-11ec-892d-0df8b6b25c61",
            "name": "Case Coordinator - Pulmonology and Internal Medicine"
        },
        {
            "id": "4f728a90-4eeb-11ea-95af-8fa14085407c",
            "name": "Sr. Service Engineer"
        },
        {
            "id": "4f91b0c0-638f-11ea-a51f-fd6e36d6d919",
            "name": "General & Chemical Superviosr"
        },
        {
            "id": "4f95e4d0-4eeb-11ea-aa4e-75b0bd108c14",
            "name": "Key Account Manager "
        },
        {
            "id": "4f9cceb0-5e99-11ea-91c9-af757a56dc48",
            "name": "Implement Specialist"
        },
        {
            "id": "4fab43f0-588b-11ea-92d0-71a13f18b90e",
            "name": "Unit Head (Ward 2)"
        },
        {
            "id": "4fb7be10-4eeb-11ea-9eea-c7c914093368",
            "name": "Logistics Supervisor"
        },
        {
            "id": "4fdbd1d0-4eeb-11ea-99f8-ef4e94702b32",
            "name": "Logistics Officer"
        },
        {
            "id": "4fddd5a0-588b-11ea-b852-3fb0d1655868",
            "name": "Jr Reg"
        },
        {
            "id": "4fe9ca20-5f50-11ea-92c7-71f8fd212e81",
            "name": "Assistant F&B Coordinator"
        },
        {
            "id": "50032d20-71d9-11eb-b38c-cb871734ebfa",
            "name": "Workshop Foreman"
        },
        {
            "id": "500dad10-588b-11ea-91fe-e1748576840a",
            "name": "SAU"
        },
        {
            "id": "50115010-71cf-11ea-836d-8de60da41143",
            "name": "Head of Global Sales"
        },
        {
            "id": "5018f8c0-fed4-11ed-9b22-43cccb9f87f3",
            "name": "Junior UI/UX Designer"
        },
        {
            "id": "50191640-5e99-11ea-b1eb-630069c8fe3d",
            "name": "Government Relationship Executive "
        },
        {
            "id": "50343fc0-588b-11ea-a11a-8bcb174b7ad0",
            "name": "Unit Head (Nursery)"
        },
        {
            "id": "503e4420-ed75-11ed-ae10-71e51417f58f",
            "name": "Driving Range Operation Staff"
        },
        {
            "id": "50643b40-4eeb-11ea-9463-371382f3e883",
            "name": "Sevice Coordinator"
        },
        {
            "id": "5070ab00-71cf-11ea-be0b-dde9b23f506f",
            "name": "Assistant General Manager"
        },
        {
            "id": "507eeb90-5f4f-11ea-91b0-c7b8c9b89a14",
            "name": "Asst.Vehicle Fleet Spvs"
        },
        {
            "id": "5086dea0-4eeb-11ea-88d7-cfc6f12b2720",
            "name": "Process Administrator "
        },
        {
            "id": "50aa6dc0-588b-11ea-bc78-2b44d9e79ca6",
            "name": "General Manager ( Finance & Accout)"
        },
        {
            "id": "50cbf3a0-4eeb-11ea-8914-1366a739702c",
            "name": "Machine Cleaning & Grooming"
        },
        {
            "id": "50d4fe20-71cf-11ea-b64d-531f1043ea09",
            "name": "Sales & Marketing Manager - Mergui Archipelago"
        },
        {
            "id": "50eb3f40-5e99-11ea-af72-1d6a01c7c1b1",
            "name": "Warehouse Staff"
        },
        {
            "id": "510e2050-74b0-11ec-8672-19e930cba16e",
            "name": "Staff Nurse - Laboratory"
        },
        {
            "id": "5114d6e0-5e99-11ea-a3a3-796ea60c2265",
            "name": "Spare Parts Clerk"
        },
        {
            "id": "513d43c0-5f50-11ea-8817-3f41ab164a73",
            "name": "Housekeeping Supervisor"
        },
        {
            "id": "5145ba40-588b-11ea-ad8c-27168296ea9f",
            "name": "Sr. Cashier"
        },
        {
            "id": "518d3f90-74b0-11ec-b258-5794a9c85c9e",
            "name": "Lab Messenger"
        },
        {
            "id": "519a27a0-71cf-11ea-be90-47ead7a4be26",
            "name": "Head of Burma Boating"
        },
        {
            "id": "51b48bf0-6d8c-11ea-b673-bd5169d34d3c",
            "name": "Site Engineer O&M"
        },
        {
            "id": "51ba8fe0-4eeb-11ea-bff0-c1824991ba15",
            "name": "Telemarketing Executive "
        },
        {
            "id": "51e38d80-588b-11ea-b5d7-f31b8e483802",
            "name": "Facilities and Administration Director"
        },
        {
            "id": "51e68e50-5e99-11ea-93bc-2321dd9db215",
            "name": "Jr. Mechanicc"
        },
        {
            "id": "51fe2720-4eeb-11ea-a921-e39e10084771",
            "name": "Tools Keeper"
        },
        {
            "id": "5206f7d0-cf50-11ec-85a5-ffa9a12627fb",
            "name": "Hardware and Net Work Enginner"
        },
        {
            "id": "520a0640-588b-11ea-9a74-851eb2a3e0bc",
            "name": "Associate Director (Clinical Edu)"
        },
        {
            "id": "520b6c40-74b0-11ec-af21-6d415d756bed",
            "name": "Laundry Assitant"
        },
        {
            "id": "522d2ba0-5f50-11ea-bc2c-eb57786b638f",
            "name": "Assistant Housekeeping Supervisor"
        },
        {
            "id": "523179a0-588b-11ea-9381-a9502318909b",
            "name": "Associate Director"
        },
        {
            "id": "52343d70-638f-11ea-865b-f5adc0c500a8",
            "name": "Technician (ELV)"
        },
        {
            "id": "525e1260-588b-11ea-b884-c3a2a63d11d6",
            "name": "GM (ICT)"
        },
        {
            "id": "5272bc20-6d8c-11ea-9297-7fa3f6336d53",
            "name": "                        O&M Coordinator"
        },
        {
            "id": "528305b0-71cf-11ea-b1c1-039730638fbd",
            "name": "Dive Master"
        },
        {
            "id": "5289f600-588b-11ea-8693-8f22442948c3",
            "name": "GM (Quality)"
        },
        {
            "id": "529c9540-4eeb-11ea-a07b-1960b5c001bb",
            "name": "Government Relationship Officer "
        },
        {
            "id": "52b5a260-588b-11ea-8a45-3166905907c3",
            "name": "Mangement Associate"
        },
        {
            "id": "52c64cf0-9651-11ec-8f19-eb8f50b0aaac",
            "name": "Help Desk and Operation Support"
        },
        {
            "id": "52cb4180-db1c-11eb-9301-31db60ee7f1a",
            "name": "Service Administration Supervisor"
        },
        {
            "id": "52d38b60-cf50-11ec-b370-47226f75364e",
            "name": "Customer Liaison Assistant"
        },
        {
            "id": "52db82a0-4eeb-11ea-bfb4-8b6b2f6a0c1c",
            "name": "Marketing Supervisor "
        },
        {
            "id": "52dcff90-71cf-11ea-9ea1-992f523d9b8f",
            "name": "Pila Marine Fleet Officer"
        },
        {
            "id": "53024ec0-588b-11ea-9d2f-1f20b0979776",
            "name": "Quality Support Officer"
        },
        {
            "id": "5309a1d0-4eeb-11ea-810e-41b082dbfdd7",
            "name": "Spare Parts Manager (JCB, NHG) "
        },
        {
            "id": "531789c0-74b0-11ec-b676-25ae8d7db55a",
            "name": "Engineer - Mechanical"
        },
        {
            "id": "531acd00-f9e2-11ea-86ab-6beca68cabf0",
            "name": "Assistant MEP Engineer"
        },
        {
            "id": "533d4de0-e25f-11ed-8dd1-5d5c9fff0ceb",
            "name": "Senior MEP Engineer \t"
        },
        {
            "id": "533f7200-9651-11ec-a171-6da537c081b7",
            "name": "Assistant Supply Chain Manager"
        },
        {
            "id": "53414f30-588b-11ea-96fe-dd8304671b5a",
            "name": "Business Analyst (Finance)"
        },
        {
            "id": "536eb600-22cd-11ed-820e-6f6cf56d19d2",
            "name": "Officer (Sales & Marketing)"
        },
        {
            "id": "537fc310-4eeb-11ea-9bc1-99d12fbb4706",
            "name": "Sr. Sales Executive "
        },
        {
            "id": "538a8a40-71cf-11ea-a750-792d77168487",
            "name": "Water Sports Manager"
        },
        {
            "id": "5395a1c0-588b-11ea-a950-9f888c3e6617",
            "name": "MA (CEO Ofice)"
        },
        {
            "id": "53978e80-22cd-11ed-b44c-abc8e385182e",
            "name": "Sales & Marketing Assistant"
        },
        {
            "id": "53a37880-a394-11ee-a230-8f574536e022",
            "name": "Assistant Painter"
        },
        {
            "id": "53a6b510-5f50-11ea-b46a-e33ea919f63f",
            "name": "Laundry Girl"
        },
        {
            "id": "53cdcdc0-638f-11ea-902c-4da946c97a93",
            "name": "Assistant Cashier"
        },
        {
            "id": "53d5f300-5f50-11ea-9e25-21b47c778492",
            "name": "Housekeeping Incharge"
        },
        {
            "id": "53dff170-71cf-11ea-8a0b-996b46accff8",
            "name": "General Manager - Awei Pila"
        },
        {
            "id": "53eabdd0-4eeb-11ea-94fa-431a613405cb",
            "name": "Marketing Manager "
        },
        {
            "id": "53ec8890-588b-11ea-9450-fb9147a31e93",
            "name": "Office Administration"
        },
        {
            "id": "541701d0-74b0-11ec-b9a6-a74b2531c2a8",
            "name": "Interim Manager - Corporate Services "
        },
        {
            "id": "54345b90-4eeb-11ea-aeb9-edab48f7b852",
            "name": "Sevice Engineer"
        },
        {
            "id": "54362f70-588b-11ea-aa68-0b2bc2eb5b15",
            "name": "Director Hospital Operations"
        },
        {
            "id": "5448c450-e25f-11ed-8378-93876955e04a",
            "name": "Junior Quantity Surveyor\t"
        },
        {
            "id": "544b8480-cf50-11ec-b473-e7037999c0a0",
            "name": "Redicent Medical Officer (PGY-2)"
        },
        {
            "id": "544f6190-74b0-11ec-afcb-cbc021cc4c3b",
            "name": "Assistant Manager - Primary Care Partnership and Referral"
        },
        {
            "id": "5452a150-74c8-11ea-bca9-9f0713993693",
            "name": "Heavy Goods Vehicle Driver"
        },
        {
            "id": "547b6bf0-638f-11ea-af5c-6fa892a54830",
            "name": "Junior Executive"
        },
        {
            "id": "54841120-588b-11ea-8f18-75736a55e975",
            "name": "Asst Director"
        },
        {
            "id": "54886b60-4eeb-11ea-85b9-a9877f329c87",
            "name": "Regional Sales Manager (Upper Myanmar)"
        },
        {
            "id": "548f8600-22cd-11ed-af01-e391fba5e5e8",
            "name": "Assistant Manager (Customer Care)"
        },
        {
            "id": "549cf350-71cf-11ea-8593-71c34afd5442",
            "name": "SPA Manager"
        },
        {
            "id": "54a6ef50-74b0-11ec-b431-09e9b8aebd56",
            "name": "Mechanical Technician"
        },
        {
            "id": "54a85fb0-cf50-11ec-be08-312a782c2f95",
            "name": "Mechanical Engineer"
        },
        {
            "id": "54b1b930-5e99-11ea-b788-13e823912204",
            "name": "Mechanic Helper"
        },
        {
            "id": "54ba2d00-638f-11ea-b2f4-5f40c5699ec8",
            "name": "Trawlar G Operator"
        },
        {
            "id": "54bf95e0-5f4f-11ea-a290-f918aa1428a4",
            "name": "Clerk"
        },
        {
            "id": "54c61cc0-588b-11ea-9713-577478cd4e27",
            "name": "Asst: C & A S S Director"
        },
        {
            "id": "54f717e0-71cf-11ea-b234-8bf048a460c5",
            "name": "Business Development Analyst"
        },
        {
            "id": "55001660-6c17-11ea-8367-f78bd3e53098",
            "name": "Multi-platform content creator"
        },
        {
            "id": "550c5940-5e99-11ea-b5dd-f5d1d73314dd",
            "name": "Mechanic/Demonstrator"
        },
        {
            "id": "550d9b10-588b-11ea-a5ca-37d4180838b3",
            "name": "General Manager ( Clinical & Ancillary Support)"
        },
        {
            "id": "55145410-07d5-11ed-8a75-c5dcc2c67036",
            "name": "Jr. Service Advisor"
        },
        {
            "id": "55273c00-b2dd-11eb-8d1f-0702188f3505",
            "name": "Assistant Manager (Service Admin)"
        },
        {
            "id": "552ccc60-74b0-11ec-b493-53b8552acb70",
            "name": "Engineer - ACMV"
        },
        {
            "id": "5537b2c0-b56f-11ec-91bf-4d78367fb2a3",
            "name": "HR Director, Talent Management"
        },
        {
            "id": "553b9390-e25f-11ed-bbaa-bff03ea7344d",
            "name": "Senior Quantity Surveyor\t"
        },
        {
            "id": "5541eb50-6c17-11ea-a232-c5c45e7edf97",
            "name": "Marketing & Communications Executive"
        },
        {
            "id": "55453040-07d5-11ed-84a5-ff7b796d7fc9",
            "name": "Quality Control"
        },
        {
            "id": "554b5390-588b-11ea-b4e5-7b400c7a0a02",
            "name": "GM "
        },
        {
            "id": "554bc5f0-5f50-11ea-925b-1d786ae5165a",
            "name": "Locker Attendant"
        },
        {
            "id": "555426c0-71cf-11ea-ad0b-511766ae9337",
            "name": "Sr. Vice President (Travels)"
        },
        {
            "id": "5558bc80-74b0-11ec-bcc4-cb9fbbac81f9",
            "name": "Technician - Mechnical"
        },
        {
            "id": "557a67c0-588b-11ea-978b-c76b60e98a23",
            "name": "Operation Manager (Quality Management)"
        },
        {
            "id": "55adf5f0-588b-11ea-9a0d-4fbed844390a",
            "name": "Management Associate "
        },
        {
            "id": "55af6940-74b0-11ec-bda1-b7b6e8bbfd96",
            "name": "Engineer - Electrical"
        },
        {
            "id": "55c61360-6c17-11ea-a4da-3f8f4b367348",
            "name": "Project Engineer"
        },
        {
            "id": "56105420-58ca-11eb-a3f9-0f3033e631df",
            "name": "Purchasing Accountant"
        },
        {
            "id": "561c0030-638f-11ea-8ac4-ffacbf258d46",
            "name": "Co-Operator Mechanic"
        },
        {
            "id": "56218920-e25f-11ed-bbdc-25c7f31b8f55",
            "name": "Junior Management Office Executive\t"
        },
        {
            "id": "5621af70-2019-11eb-993a-2d4d4cd7aac2",
            "name": "Content Marketing Specialist"
        },
        {
            "id": "562b0ee0-b56f-11ec-ad44-a36e1f119e75",
            "name": "Senior Sales Manager"
        },
        {
            "id": "56322b80-74b0-11ec-b418-f5c9bd5c2665",
            "name": "Clerk - Housekeeper & Facility Maintenace "
        },
        {
            "id": "56355820-588b-11ea-9904-59e0cd1efd3b",
            "name": "BA "
        },
        {
            "id": "5653b630-4eeb-11ea-b1a9-e51ee935f2dc",
            "name": "Fleet Coordinator "
        },
        {
            "id": "5657b410-638f-11ea-a21a-ebf63eea1691",
            "name": "Electrical Technician"
        },
        {
            "id": "565c9f60-74b0-11ec-9516-4f9576694453",
            "name": "Senior Medical Record Officer"
        },
        {
            "id": "5669e230-588b-11ea-b7f2-53893fd65fa9",
            "name": "Case Coordinator"
        },
        {
            "id": "5686a390-74b0-11ec-ac7d-e19b809a8e01",
            "name": "Senior F&B Officer - Coffee Shop"
        },
        {
            "id": "56932570-5e99-11ea-a8af-23e76e9a069e",
            "name": "Mechanic/Operator"
        },
        {
            "id": "569569a0-5f50-11ea-a5b6-43412ccdeae3",
            "name": "Senior Waiter"
        },
        {
            "id": "569d90f0-588b-11ea-be44-7d4091c5ec6e",
            "name": "Management Associate (F/O)"
        },
        {
            "id": "569d9d60-4eeb-11ea-8757-b99ae8587d8b",
            "name": "Operator Team Leader "
        },
        {
            "id": "56adb300-d1e3-11ec-acd4-f9c487260a7f",
            "name": "Family General Practitioner"
        },
        {
            "id": "56c34400-4eeb-11ea-9384-dbc52c081cf0",
            "name": "Rental Manager "
        },
        {
            "id": "56d11ad0-588b-11ea-a702-217ef1d09d13",
            "name": "Case Coordinator (Ortho)"
        },
        {
            "id": "56f8c5c0-4ee1-11ea-878d-9744e6123b6d",
            "name": "Service Desk (PHE)"
        },
        {
            "id": "56faa470-5f4f-11ea-b395-c1c794432916",
            "name": "Jr. Sales Staff"
        },
        {
            "id": "56fe30c0-07d5-11ed-acb7-1b12d1515dcb",
            "name": "Sales Admin Assistant Manager"
        },
        {
            "id": "56fe6410-c1ea-11ec-b6ec-1d55351fe8c7",
            "name": "Process Executive"
        },
        {
            "id": "570b3020-e25f-11ed-8114-a5886d20510b",
            "name": "Site Engineer (MEP)\t"
        },
        {
            "id": "5743f1d0-74b0-11ec-9e8d-f3ae93ae7bfe",
            "name": "Junior F&B Officer - Coffee Shop"
        },
        {
            "id": "575df880-588b-11ea-9ae5-7fef4ef1d84d",
            "name": "Head of PE and Financial Counselling"
        },
        {
            "id": "5780cfa0-0909-11ee-8647-153a9f737647",
            "name": "Assistant Branch Manager"
        },
        {
            "id": "57cec230-280d-11ed-b57b-3729f91cbb69",
            "name": "Sr. Associate"
        },
        {
            "id": "57d22830-ac7b-11ea-9801-550efb78d0d2",
            "name": "Head of Operations- Metro"
        },
        {
            "id": "583825b0-588b-11ea-87ed-4525277844d8",
            "name": "Asst. CR Mgr"
        },
        {
            "id": "584b63f0-5f50-11ea-9ccb-a35fe35fd68f",
            "name": "Pro Shop Sale Girl"
        },
        {
            "id": "587563c0-638f-11ea-82f7-ed8d37c6cab7",
            "name": "Asst; Admin Officer"
        },
        {
            "id": "5889ef20-6609-11eb-ae91-2d70bb7cd7fa",
            "name": "Customer Service Consultant"
        },
        {
            "id": "588fb200-588b-11ea-9fb8-bdf9364bafe2",
            "name": "Sr HR Officer"
        },
        {
            "id": "58aa5ef0-5f50-11ea-81c9-872efac23e67",
            "name": "Salon girl"
        },
        {
            "id": "58daa4b0-1532-11ec-9540-ddee153f5de3",
            "name": "Resales Associate"
        },
        {
            "id": "58db0680-5f50-11ea-95fa-f3f7efcaed60",
            "name": "Senior Salon girl"
        },
        {
            "id": "58e49a90-588b-11ea-a160-337fee47222d",
            "name": "Nursing Manager"
        },
        {
            "id": "58f38050-5963-11eb-8054-19e53a550e1c",
            "name": "Sr - Cashier"
        },
        {
            "id": "58ff2c70-638f-11ea-8121-dd747b8c5b88",
            "name": "General Technician"
        },
        {
            "id": "59183840-588b-11ea-9e32-4f7c249a50c8",
            "name": "Clinical Instructor"
        },
        {
            "id": "59570720-b3f7-11ec-a72f-8b30fb8a87af",
            "name": "Training Associate"
        },
        {
            "id": "596be290-77b8-11ec-971b-9f1fe5c510f0",
            "name": "Interim Assistant Manager - Nursing"
        },
        {
            "id": "598f7b90-fc1e-11ea-9150-e375528b083d",
            "name": "Property Affairs Coordinator"
        },
        {
            "id": "5995ec70-5f50-11ea-937e-934430bba8ee",
            "name": "Hair Stylist"
        },
        {
            "id": "59a194e0-aa64-11ea-ac83-9b823c19bdfc",
            "name": "Parts Development Executive"
        },
        {
            "id": "59ae1dd0-b6bb-11ea-a4ba-4b4350d207a7",
            "name": "Assistant Admin"
        },
        {
            "id": "59d73da0-5963-11eb-a829-c3e1ac435765",
            "name": "T-Floor"
        },
        {
            "id": "59db1b20-b787-11ea-94f5-2ba896eeb120",
            "name": "Training Officer"
        },
        {
            "id": "59e58460-58da-11eb-b73d-67215e5ef39e",
            "name": "Junior Kyay- Oh"
        },
        {
            "id": "5a26c8a0-5963-11eb-b687-6db8a5abc7aa",
            "name": "CK Assistant"
        },
        {
            "id": "5a3632b0-58da-11eb-ae27-8d8384f84e4c",
            "name": "Asst: Manager"
        },
        {
            "id": "5a635fc0-13b0-11ed-8904-bf7c60dd2bb2",
            "name": "Field Call Officer (P)"
        },
        {
            "id": "5a7a4660-9411-11ea-9fbc-97642e59415c",
            "name": "Director of CEO Office"
        },
        {
            "id": "5ab07dd0-5f50-11ea-a24f-a93cb27b542c",
            "name": "Staff"
        },
        {
            "id": "5ad81920-58da-11eb-8cf8-a31f97f53fc6",
            "name": "Asst:Manager"
        },
        {
            "id": "5b186240-58da-11eb-a5fb-f9dee05cefb2",
            "name": "Asst; Manager"
        },
        {
            "id": "5b3e99b0-5f50-11ea-85fa-ffa1646e8673",
            "name": "Senior Staff"
        },
        {
            "id": "5b61f150-58da-11eb-892b-6967155b4651",
            "name": "Trainee Floor Supervisor"
        },
        {
            "id": "5b759610-1d09-11eb-b659-1fd52fe9d7b0",
            "name": "Internal Auditor"
        },
        {
            "id": "5b83e700-2223-11ee-90f4-81caa5e727dd",
            "name": "BI Manager"
        },
        {
            "id": "5b932810-be33-11ed-bc85-77eb40971dd2",
            "name": "Senior Manager (Product Support / Training and Quality Control)"
        },
        {
            "id": "5bc2adc0-5963-11eb-94e1-43f586c6917f",
            "name": " Jr-Work"
        },
        {
            "id": "5bfcd130-dfd2-11ec-b6ce-595885a97fbf",
            "name": "Lead BI Analyst"
        },
        {
            "id": "5c128420-5963-11eb-a677-57710c2049f3",
            "name": "Area Head Waitess"
        },
        {
            "id": "5c5874b0-98de-11ea-9c48-a731defa9651",
            "name": "General Manager (JCB,FPT,YEPR)"
        },
        {
            "id": "5c718790-638f-11ea-8797-0941a35d3a68",
            "name": "Technician Grade-II"
        },
        {
            "id": "5ca8eca0-fd02-11ec-be40-59ae82e5a519",
            "name": "Head of Strategy and Finance"
        },
        {
            "id": "5cf67250-9c11-11ea-9abb-e378cc7cd99e",
            "name": "Investment Associate"
        },
        {
            "id": "5d07ece0-5963-11eb-8589-5539c379d404",
            "name": "Trainee Coffee"
        },
        {
            "id": "5d2ad560-6fa3-11eb-a6ac-f10ef1e3c17f",
            "name": "Proshop Sales Staff"
        },
        {
            "id": "5d3048c0-3cd5-11ee-943d-13e030929966",
            "name": "CO-MD"
        },
        {
            "id": "5d45c9c0-5f50-11ea-9856-0b5a3db4319b",
            "name": "Therapist"
        },
        {
            "id": "5d479440-60cf-11ee-8642-19388f1bba8b",
            "name": "QA Senior Executive"
        },
        {
            "id": "5d626980-6d8c-11ea-aba7-03301d291239",
            "name": "O & M Engineer"
        },
        {
            "id": "5d75b780-5f50-11ea-9f01-493d0c9cd70e",
            "name": "Senior Therapist"
        },
        {
            "id": "5d8fbad0-fed4-11ed-82ec-37008a374700",
            "name": "Senior Data Engineer"
        },
        {
            "id": "5da58f50-e25f-11ed-8cf6-b5fee3f88e11",
            "name": "Driving Range Attendant\t"
        },
        {
            "id": "5db637a0-9c11-11ea-ab13-f9287b4b67f8",
            "name": "Senior Land Record Executive"
        },
        {
            "id": "5dc42a90-a79d-11ec-9a63-af286ea01d6f",
            "name": "Sport Club Junior Executive"
        },
        {
            "id": "5e5a2120-638f-11ea-966c-07878cae9c17",
            "name": "Store Helper"
        },
        {
            "id": "5e888db0-5963-11eb-9229-67c1884233dd",
            "name": " Head Waiter"
        },
        {
            "id": "5e9abd70-638f-11ea-965f-5bb8849a783e",
            "name": "Store Incharge"
        },
        {
            "id": "5eb0d710-2478-11ee-9d2b-cb80d8401312",
            "name": "Mid Android Developer"
        },
        {
            "id": "5ef23920-e404-11ed-aaba-f59639f4a194",
            "name": "Captain/Engineer"
        },
        {
            "id": "5ef39700-5963-11eb-953f-dbead5f49e8f",
            "name": "Asst: Chief Cook"
        },
        {
            "id": "5efbcb00-09ab-11ee-b109-edfd6e08a38a",
            "name": "Design Coordination Manager"
        },
        {
            "id": "5f3f1ae0-7c5c-11ee-b5a8-a78f19112f92",
            "name": "Assistant Quantity Surveyor Manager"
        },
        {
            "id": "5f47b1f0-0eea-11ed-b5e7-3f5afc1e7a6b",
            "name": "iOS Developer"
        },
        {
            "id": "5f57ac20-ed56-11ed-8c0c-33995edcebac",
            "name": "Operation Engineer"
        },
        {
            "id": "5f9a4c10-c0d5-11ea-9bc7-ff5f2c356505",
            "name": "General Manager (Marketing & Customer Solution)"
        },
        {
            "id": "5f9b70f0-8424-11ee-a8fe-f3055cc914b5",
            "name": "Quantity Surveyor(MEP)"
        },
        {
            "id": "5f9f61e0-51d9-11ee-a8c6-0f2fc47bd6ad",
            "name": "Software Engineer(Intern)"
        },
        {
            "id": "5fa01f50-03c4-11eb-a4b2-45a4b18f8e28",
            "name": "Leasing Administrator"
        },
        {
            "id": "5fa60600-6d8c-11ea-ae24-23bb5df057db",
            "name": "Assistant Finance & Admin"
        },
        {
            "id": "5fe60670-5963-11eb-ac13-a17ad4bbb587",
            "name": "Sr Cashier"
        },
        {
            "id": "5fee26e0-77c0-11ec-81be-7d4b3e3aa43a",
            "name": "Medical Techonologist "
        },
        {
            "id": "60213620-aaf9-11ea-8c12-f3884a757e07",
            "name": "Regional Sales Manager (Lower Myanmar)"
        },
        {
            "id": "602475a0-2478-11ee-800d-f91a6eab1bcc",
            "name": "HR Manager (Talent Acquisition)"
        },
        {
            "id": "60740fd0-e25f-11ed-a675-4b8a88e3c7dc",
            "name": "Operation Assistant\t"
        },
        {
            "id": "6077cfa0-4efb-11ea-abbf-6dbbb4955ead",
            "name": "Digital Product Manager"
        },
        {
            "id": "607910a0-7cb5-11ee-b934-49b7e2268b77",
            "name": "Part Time"
        },
        {
            "id": "60c7e570-5f50-11ea-89b7-2df616833768",
            "name": "Pool Man"
        },
        {
            "id": "60e93240-1a3e-11ee-a950-ede288ea2d9e",
            "name": "Mechanical & Electrical (M&E) Assistant"
        },
        {
            "id": "610d3020-5963-11eb-8a34-ff93012756c4",
            "name": "Senior Coffee Master"
        },
        {
            "id": "612749d0-5f50-11ea-bb14-0fb67634d432",
            "name": "Sport club supervisor"
        },
        {
            "id": "6139b740-eb01-11ed-87ac-698d83a2d6e9",
            "name": "Head of Product"
        },
        {
            "id": "61565e00-5f50-11ea-8063-45ec8763c6fb",
            "name": "Life Guard"
        },
        {
            "id": "61850100-5f50-11ea-9c6e-ed416f5fb35d",
            "name": "Tennis Coach"
        },
        {
            "id": "61b576f0-5f50-11ea-aee5-177b0a82d03a",
            "name": "Ball Girl"
        },
        {
            "id": "61bbc0f0-801a-11ed-afb5-f15351278bf4",
            "name": "Account Coordinator"
        },
        {
            "id": "61e64200-5f50-11ea-ba91-9d9a8973d94c",
            "name": "Ball Boy"
        },
        {
            "id": "624671c0-4ef7-11ea-91a1-571082bbae5b",
            "name": "NOC Engineer"
        },
        {
            "id": "6263e6d0-6d8c-11ea-adee-9b7b601bdf60",
            "name": "Project Coordinator and Documents Controller"
        },
        {
            "id": "630b0b40-638f-11ea-bd25-3b2d9c48ba1d",
            "name": "Asst;Supervisor "
        },
        {
            "id": "632c9230-6db0-11ea-8eac-4d37cd1fd75a",
            "name": "Senior Procurement Officer"
        },
        {
            "id": "636e2e30-6db0-11ea-a186-e5cc825be40d",
            "name": "Procurement Supervisor"
        },
        {
            "id": "63a20020-77c0-11ec-a028-5dec05cdafed",
            "name": "Ambulance Driver"
        },
        {
            "id": "63af6f70-0fff-11ee-9d3c-97ee4c528d52",
            "name": "Junior Account Analyst"
        },
        {
            "id": "63c715b0-6d8c-11ea-bc07-075197cc8cf1",
            "name": "Quality Engineer"
        },
        {
            "id": "63c7b600-5f50-11ea-8759-5f29d2a4c3c4",
            "name": "AIM Manager"
        },
        {
            "id": "63f95b30-6db0-11ea-b6a8-0574cdddf803",
            "name": "Store Supervisor"
        },
        {
            "id": "63fe72a0-5394-11ea-97fe-e9635c691406",
            "name": "General Manager"
        },
        {
            "id": "6402c6f0-e6d0-11eb-a580-cbae775686b0",
            "name": "Restarurant Team Member"
        },
        {
            "id": "64068250-5f69-11ea-8a7a-3bc5fd309d18",
            "name": "Finance Manager – IFRS Conversion"
        },
        {
            "id": "643c3170-6db0-11ea-a8cf-dd9c35d2605e",
            "name": "Transport Supervisor"
        },
        {
            "id": "6441fe60-218b-11ea-9151-c1346c5c49a3",
            "name": "Property Manager"
        },
        {
            "id": "6456dba0-5f50-11ea-b7c1-61a8bd229b94",
            "name": "Senior Officer"
        },
        {
            "id": "6487fdd0-5f50-11ea-aa1e-697ce3e96590",
            "name": "Storekeeper (Fuel)"
        },
        {
            "id": "6490b880-218b-11ea-9c83-fbf84d0b0ab4",
            "name": "Senior BD Associate"
        },
        {
            "id": "64a42770-82ea-11ea-b5f5-19da81c91a78",
            "name": "Project Administrator"
        },
        {
            "id": "64a97c00-218b-11ea-97df-75b5bc20731a",
            "name": "Chief Accountant"
        },
        {
            "id": "64be8c20-8aae-11ed-8661-e314a5842213",
            "name": "Sales & Events Executive"
        },
        {
            "id": "64bfd300-218b-11ea-830d-7f2e01b8a78e",
            "name": "Asst: Chief Accountant"
        },
        {
            "id": "64e40e70-638f-11ea-9fd6-bd999eeb43e7",
            "name": "Irrigation Formen"
        },
        {
            "id": "64f1c980-8ff6-11ed-8ff2-cb4e5f05a5ca",
            "name": "Junior Quantity Assurance Engineer"
        },
        {
            "id": "64feffb0-6d8c-11ea-9d80-25fd91e66818",
            "name": "Warehouse Coordinator"
        },
        {
            "id": "650489f0-218b-11ea-86ab-115c5d430d1a",
            "name": "Asst: Operation Manager"
        },
        {
            "id": "650cd4a0-5a0d-11eb-92f8-0b7765a5a9a0",
            "name": "Government Relations Manager"
        },
        {
            "id": "650ffd70-0a0e-11eb-a454-f9aba3f6aacb",
            "name": "Chef De Partie Trainee"
        },
        {
            "id": "65177980-5f50-11ea-8027-09810bdc5b85",
            "name": "Air Con Technician"
        },
        {
            "id": "651fae10-638f-11ea-aba5-63686f6b9b34",
            "name": "Technician G-II"
        },
        {
            "id": "65327d40-218b-11ea-b40a-756137a4f65a",
            "name": "Sr-HR Executive"
        },
        {
            "id": "65328540-3300-11ec-bf17-6312c4469113",
            "name": "Repair & Maintenance Manager"
        },
        {
            "id": "65341140-82ea-11ea-9457-25b3f301c864",
            "name": "Skilled Labor"
        },
        {
            "id": "65491a70-218b-11ea-9819-018952d21a52",
            "name": "BD Associate"
        },
        {
            "id": "65492530-5f50-11ea-8dc6-ad0805f12e28",
            "name": "Air Con Technical Officer"
        },
        {
            "id": "655f7c60-218b-11ea-828f-bb6cd12ddc85",
            "name": "Office Coordinator"
        },
        {
            "id": "657652d0-218b-11ea-b2da-2d427ae48f2c",
            "name": "Leasing Officer"
        },
        {
            "id": "658ccd10-218b-11ea-9f2f-21c72c708d26",
            "name": "Associate, Business Development"
        },
        {
            "id": "65a780f0-218b-11ea-975f-51bb6c521a6d",
            "name": "Restaurant Excellent Manager"
        },
        {
            "id": "65c00ce0-218b-11ea-9b4d-2de1faf4147e",
            "name": "Design Technician"
        },
        {
            "id": "65d98f60-5f50-11ea-8756-8bbd9d3b88e3",
            "name": "Supervisor (Painting)"
        },
        {
            "id": "65eb3930-5eb9-11ea-adea-8dca5e33f67f",
            "name": "COO"
        },
        {
            "id": "65ebd960-6db0-11ea-833d-f1eb1e5793b9",
            "name": "Construction Services Manager"
        },
        {
            "id": "65ec59e0-6156-11eb-a229-271c33c9691d",
            "name": "Talent Manager"
        },
        {
            "id": "65ef5030-218b-11ea-a556-85a4a1f6eb23",
            "name": "Field HR & Training"
        },
        {
            "id": "66079210-218b-11ea-b02e-6b3961dc8ef3",
            "name": "Area Coach"
        },
        {
            "id": "6607ded0-638f-11ea-88e9-fde7086478f3",
            "name": "F&B Staff"
        },
        {
            "id": "660c1af0-5f50-11ea-add8-53d073a3622e",
            "name": "Assistant Supervisor"
        },
        {
            "id": "66302a00-be39-11ed-8ace-4b60fc3e8bea",
            "name": "Part Sale Assistant"
        },
        {
            "id": "66355180-218b-11ea-be42-1b2a64ad581e",
            "name": "Quality Assurance"
        },
        {
            "id": "663be1e0-5f50-11ea-92bc-1b5cb1bc0d54",
            "name": "Technicain Grade II"
        },
        {
            "id": "6643a030-638f-11ea-b63b-853d4c9d373e",
            "name": "Sr.Technician"
        },
        {
            "id": "664c4860-218b-11ea-830e-09821c6d97f2",
            "name": "Supply Chain Executive "
        },
        {
            "id": "665da770-71d9-11eb-ba3b-13bfae380fee",
            "name": "Parts Advisor"
        },
        {
            "id": "6664cde0-218b-11ea-8ab5-b931e6e6a2ca",
            "name": "Strategy & Market Planning Manager"
        },
        {
            "id": "667594c0-6db0-11ea-90f7-51d7efff4a81",
            "name": "Senior Quantity Surveyor"
        },
        {
            "id": "667d0a20-218b-11ea-ba4c-1bbb6718fbed",
            "name": "Deputy Finance Manager"
        },
        {
            "id": "667e59a0-638f-11ea-bae2-2168feb32c82",
            "name": "Procurement Administrator"
        },
        {
            "id": "6685a620-656f-11ed-8b9f-f9b2f19cd531",
            "name": "SCM Junior Executive"
        },
        {
            "id": "6696e640-ccf8-11ec-9621-53ed00c235c0",
            "name": "Assistant Warehouse Manager (Spare Parts)"
        },
        {
            "id": "669a0ef0-5f50-11ea-8ded-ad2873f0bfc7",
            "name": "Painter"
        },
        {
            "id": "66accda0-218b-11ea-92f5-87d4e5ed4d67",
            "name": "Supply Chain Manager"
        },
        {
            "id": "66bed650-71d7-11ea-a239-0514c42073a8",
            "name": "Director of the projects"
        },
        {
            "id": "66c3c2f0-218b-11ea-9218-61f4cd0ff375",
            "name": "Receptionist & Admin"
        },
        {
            "id": "66f3dad0-218b-11ea-a180-3fc606f2dd82",
            "name": "Training Assistant"
        },
        {
            "id": "66f85980-5f50-11ea-8871-1b8e9fa86e00",
            "name": "Assistant Engineer"
        },
        {
            "id": "66ff71c0-6db0-11ea-bdda-8526407038f0",
            "name": "Senior Project Quantity Surveyor"
        },
        {
            "id": "670d15c0-6156-11eb-ab45-253cd201de12",
            "name": "Administration"
        },
        {
            "id": "67274c40-5f50-11ea-8356-8915bc3e0734",
            "name": "M & E Engineer"
        },
        {
            "id": "67286a30-218b-11ea-ab6a-4f0643c063e4",
            "name": "Site Engineer"
        },
        {
            "id": "672e73a0-796f-11ea-a8af-6f47a3d9bacb",
            "name": "Credit Control Supervisor "
        },
        {
            "id": "672eb440-82ea-11ea-bf1f-75a25915cc57",
            "name": "Housekeeping \nAttendant"
        },
        {
            "id": "6731bee0-e319-11ec-aef1-df464b62364e",
            "name": "Driving Range Team Leader"
        },
        {
            "id": "673fd390-218b-11ea-8486-b555587278bb",
            "name": "Maintenance Assistant"
        },
        {
            "id": "6756f9a0-5f50-11ea-958b-37d345bdd65c",
            "name": "Senior Maintenance Technician"
        },
        {
            "id": "6758d6c0-218b-11ea-9dcc-a9212f81c3e0",
            "name": "Quantity Surveyor"
        },
        {
            "id": "67709ad0-218b-11ea-b885-ff34d7278146",
            "name": "Graphics Designer"
        },
        {
            "id": "67852f40-c0d4-11ea-8421-8f31a87d9fb9",
            "name": "General Manager (Truck & Trailer)"
        },
        {
            "id": "67915fd0-5f4f-11ea-a29e-bd6618d3e48e",
            "name": "Administrator cum A/C Asst."
        },
        {
            "id": "6792d8a0-218b-11ea-ab6b-87ca68702a11",
            "name": "Senior Project Manager"
        },
        {
            "id": "679713f0-6db0-11ea-ada6-05a937ea92f2",
            "name": "Senior Quantity Surveyor (MEP)"
        },
        {
            "id": "679a9850-6806-11ea-aaf4-3532c26cf4f4",
            "name": "Warehouse Cleaner "
        },
        {
            "id": "67a69a80-80bc-11ee-81d8-e3b03c2bb7df",
            "name": "Junior UAT Coordinator"
        },
        {
            "id": "67aaf9f0-218b-11ea-8d32-7d5f9e3f5e68",
            "name": "Interior Designer"
        },
        {
            "id": "67c36190-218b-11ea-9aec-d9e73386befd",
            "name": "Senior Interior Designer"
        },
        {
            "id": "67dbc0a0-218b-11ea-aebe-21536a540d4a",
            "name": "Area Coach Training"
        },
        {
            "id": "67e08a00-638f-11ea-afbc-e13fbd7270c5",
            "name": "Elecrical Technician"
        },
        {
            "id": "67f61bd0-218b-11ea-9df6-61550a3dc56f",
            "name": "HR & Admin Executive"
        },
        {
            "id": "67f88740-2811-11ed-9815-65e1ed7ed2f8",
            "name": "Senior DevOps Engineer (Part Time)"
        },
        {
            "id": "6800cd70-2fdc-11ec-8002-815d0596919b",
            "name": "Head of Site Management/Façade Manager"
        },
        {
            "id": "680f83a0-218b-11ea-a3ed-4701309a3bdb",
            "name": "Accounts Executive"
        },
        {
            "id": "6816d3c0-5f4f-11ea-a26f-49c1b19704bb",
            "name": "Security (Land - Ashae Zay Tan )"
        },
        {
            "id": "68294f30-218b-11ea-b745-9b7ff6889140",
            "name": "Brand Executive"
        },
        {
            "id": "682960d0-2811-11ed-8d9f-db3555ac44f7",
            "name": "Software Engineer (Part time)"
        },
        {
            "id": "684349f0-218b-11ea-8e30-f9df03494062",
            "name": "Senior Service technician"
        },
        {
            "id": "6854bbb0-638f-11ea-b487-810d812715e4",
            "name": "F & B Staff"
        },
        {
            "id": "685c63e0-218b-11ea-a70e-c9b60b75cf0c",
            "name": "Service Technician"
        },
        {
            "id": "6871ddf0-5f50-11ea-a398-bde91a3acaac",
            "name": "Senior Technical Officer"
        },
        {
            "id": "68770450-218b-11ea-9df3-f11a10f27c59",
            "name": "HR Assistant"
        },
        {
            "id": "68905a10-3b7f-11eb-b6ec-2311edbce5ad",
            "name": "National Technical and Used Equipment Manager"
        },
        {
            "id": "68a13c80-5f50-11ea-bb6a-794d3c7403ee",
            "name": "Aircon Technician"
        },
        {
            "id": "68d01500-5f50-11ea-86b4-039344f2c368",
            "name": "Apprentice Engineer"
        },
        {
            "id": "68dc3060-218b-11ea-9513-9b0f99541040",
            "name": "Senior Training Executive"
        },
        {
            "id": "68f50980-218b-11ea-8d3f-ffe391347abc",
            "name": "Supply Chain Management, Associate"
        },
        {
            "id": "68fdf460-2358-11ed-b9f0-b3eed9eb8792",
            "name": "Chief Risk Officer"
        },
        {
            "id": "690e7940-218b-11ea-94d1-3fe3eaf0f0ae",
            "name": "Training Officer - Culture Champion"
        },
        {
            "id": "69176ec0-6d8c-11ea-9c02-11805a9714b7",
            "name": "O&M Coordinator"
        },
        {
            "id": "69229f40-331b-11eb-be89-9f346574b25a",
            "name": "PYN Coordination Manager"
        },
        {
            "id": "693bb5f0-b0e1-11ed-a711-15abb6e75a04",
            "name": "Landscaping Officer"
        },
        {
            "id": "69578cf0-218b-11ea-98bd-919b82f36c18",
            "name": "Champs recognition Specialist"
        },
        {
            "id": "6970ea90-321d-11eb-b9c6-87891f2b666a",
            "name": "Procurement & Logistics Coordinator"
        },
        {
            "id": "6974a5f0-458a-11ee-a237-b1dee8348c3a",
            "name": "Driving Range Supervisor"
        },
        {
            "id": "6977b110-82ea-11ea-a5bd-b3f69851eb49",
            "name": "Senior Leasing Administrator"
        },
        {
            "id": "6982e780-b0e1-11ed-9e8c-d7545f011310",
            "name": "Events Executive"
        },
        {
            "id": "69879a50-218b-11ea-97ee-39d58870baa2",
            "name": "Marketing Associate "
        },
        {
            "id": "6987f9a0-638f-11ea-841a-c335cac5cfa1",
            "name": "Shift Leader"
        },
        {
            "id": "698a1260-6db0-11ea-a69c-f159104be9b1",
            "name": "Senior OH&S Manager"
        },
        {
            "id": "69a68690-2358-11ed-947e-01843a8f9174",
            "name": "CTO"
        },
        {
            "id": "69b5a0b0-e0c2-11ec-a7f1-2bb97dc2059d",
            "name": "Assistant Coordinator"
        },
        {
            "id": "69b86b20-218b-11ea-954b-d1c3176adb53",
            "name": "Junior Cashier"
        },
        {
            "id": "69c0efe0-82ea-11ea-a38d-bf509727de3b",
            "name": "Technician G-III"
        },
        {
            "id": "69c89d50-dbd5-11ec-a7d6-31f01570bad8",
            "name": "Site Architech"
        },
        {
            "id": "69cb3ea0-6db0-11ea-b393-f126ea866e8b",
            "name": "Safety Officer"
        },
        {
            "id": "69d001c0-218b-11ea-ac46-3d8f6a55378e",
            "name": "Graphic Designer"
        },
        {
            "id": "69e785a0-218b-11ea-a5d5-d782a78f3f27",
            "name": "Retail Marketing Associate"
        },
        {
            "id": "6a04eff0-218b-11ea-b773-5d4adcc97ce8",
            "name": "QA Associate"
        },
        {
            "id": "6a085340-2451-11ee-816a-eb444ce31f8c",
            "name": "Civil Engineer"
        },
        {
            "id": "6a0fc1b0-3325-11eb-a676-9b9c1dabdce6",
            "name": "Finance Supervisor"
        },
        {
            "id": "6a17ab80-6cd8-11ea-bc9f-5d4b1dfbe33f",
            "name": "Sourcing & Pricing Manager"
        },
        {
            "id": "6a185ad0-9527-11ec-baad-ff7bc6ba503c",
            "name": "Warehouse Admin"
        },
        {
            "id": "6a26d0e0-dbd5-11ec-b9ab-3d80de35d32b",
            "name": "Junior Site Engineer"
        },
        {
            "id": "6a2c1f00-2358-11ed-abe8-2d4b0521661f",
            "name": "Chief Business Banking Officer"
        },
        {
            "id": "6a347450-218b-11ea-ab2f-812c01a9de37",
            "name": "Operation Assistant"
        },
        {
            "id": "6a4dfdc0-218b-11ea-81ef-e75315aa5ba7",
            "name": "Business Analyst"
        },
        {
            "id": "6a571200-dbd5-11ec-96a0-f931086a8ba0",
            "name": "Building Maintenance Engineer"
        },
        {
            "id": "6a8b60e0-852b-11ea-afc5-9f368bb263e2",
            "name": "Deputy Marketing Director"
        },
        {
            "id": "6a961bf0-218b-11ea-9e9b-c12acbc35cc4",
            "name": "Store Keeper"
        },
        {
            "id": "6aa75970-a0bd-11ea-bf13-f74220446bdf",
            "name": "Commercial Director"
        },
        {
            "id": "6aadadb0-218b-11ea-a7d9-6f6531564a59",
            "name": "Associate Assistant"
        },
        {
            "id": "6ab9d900-dbd5-11ec-b98f-2997a8e02c4f",
            "name": "IT Project Coordinatior"
        },
        {
            "id": "6aba5c60-2358-11ed-bbe8-eb37c0907fab",
            "name": "CFO (Acting)"
        },
        {
            "id": "6ac60580-218b-11ea-8f86-7dc84220f86e",
            "name": "JR Accountant"
        },
        {
            "id": "6adde4c0-218b-11ea-b5e1-9792e4fa1f31",
            "name": "Junior Associate"
        },
        {
            "id": "6ae4c7a0-3ae3-11ed-960a-45b485d65588",
            "name": "Reservation Agent"
        },
        {
            "id": "6af01fe0-2358-11ed-838c-3703b6786028",
            "name": "Chief Consumer Banking Officer"
        },
        {
            "id": "6b073e10-ab24-11ea-a7eb-758d1b8cfc94",
            "name": "Senior Restaurant General Manager"
        },
        {
            "id": "6b0d84f0-218b-11ea-9576-39b0786bc923",
            "name": "Inventory Accountant"
        },
        {
            "id": "6b2600e0-2358-11ed-8e26-43424e91c55e",
            "name": "Chief People Officer"
        },
        {
            "id": "6b53b240-218b-11ea-aabf-4f41e9d06ec4",
            "name": "QS"
        },
        {
            "id": "6b6b0eb0-218b-11ea-aeee-d70cfd019529",
            "name": "Junior Interior Designer"
        },
        {
            "id": "6b6d1a90-638f-11ea-a5c9-7941aafaaf91",
            "name": "Instructor"
        },
        {
            "id": "6b708650-6db0-11ea-9311-d10a22713e87",
            "name": "Senior Site Engineer"
        },
        {
            "id": "6b7fe7b0-5779-11ee-baa3-81f3bcd89944",
            "name": "Mid Java Developer"
        },
        {
            "id": "6b83ade0-218b-11ea-874e-c77cca1b6e2b",
            "name": "Site Draftsman"
        },
        {
            "id": "6b9ae270-218b-11ea-a93c-8f57c29752ff",
            "name": "Senior Marketing Manager"
        },
        {
            "id": "6ba14b00-f671-11eb-a701-39ec3654ff52",
            "name": "Assistant Development Manager"
        },
        {
            "id": "6bc72a00-2358-11ed-a551-75ed5e6c45d1",
            "name": "Corporate Secretary"
        },
        {
            "id": "6bca3280-218b-11ea-ad4d-639407e967b0",
            "name": "Head of Operations"
        },
        {
            "id": "6bdfbc40-638f-11ea-8534-15543cb3a6df",
            "name": "Asst;Transport Officer"
        },
        {
            "id": "6be1c4a0-218b-11ea-b750-2126de79d48c",
            "name": "Head of Marketing - Memories Group & Group Internal Communications"
        },
        {
            "id": "6bfbf630-218b-11ea-86ff-a30a69612b44",
            "name": "Head of IT"
        },
        {
            "id": "6c0628a0-82c2-11ea-9e25-67686587d92e",
            "name": "Business Intelligence Expert"
        },
        {
            "id": "6c0cf780-852b-11ea-8d63-a3c5f491dea5",
            "name": "Sales Gallery Manager"
        },
        {
            "id": "6c2333d0-58e4-11eb-b6b4-21dd4d28e1f1",
            "name": "Traniee Kitchen"
        },
        {
            "id": "6c32bd50-6db0-11ea-86e0-8fe21c8a7c45",
            "name": "Surveyor"
        },
        {
            "id": "6c3ef190-4613-11ee-92db-d5e937e87363",
            "name": "Human Resources & Admin Executive"
        },
        {
            "id": "6c412d80-d7f1-11ec-9e24-9bf73edf6c27",
            "name": "Assistant Repair and Maintenance Manager"
        },
        {
            "id": "6c4273c0-cff1-11ea-92de-adf82ab24853",
            "name": "Finance Business Partner (Manager)"
        },
        {
            "id": "6c696640-a61c-11ea-a1d7-ed901e8732a3",
            "name": "Executive"
        },
        {
            "id": "6cb07e60-6db0-11ea-b2f3-ad4e77c16138",
            "name": "Senior Project Engineer "
        },
        {
            "id": "6cfe4310-2b22-11eb-bb11-35332b8eb356",
            "name": "Associate I"
        },
        {
            "id": "6d1f00e0-408e-11ed-be41-2b078d4e4b24",
            "name": "CX Specialist"
        },
        {
            "id": "6d313820-6d8c-11ea-af26-1d0813430781",
            "name": "O&M Rigger"
        },
        {
            "id": "6d35bce0-7ab7-11ed-88da-f1015af90d72",
            "name": "Security Manager"
        },
        {
            "id": "6d3a7c40-6b0e-11ed-8354-eb5111cccb7c",
            "name": "Cashier Cum Junior Accountant "
        },
        {
            "id": "6d549fe0-42ab-11ea-8516-29b16842fc70",
            "name": "Asst Duty Manager"
        },
        {
            "id": "6d824e00-58e4-11eb-a915-43e13dae10fe",
            "name": "Store"
        },
        {
            "id": "6d97a860-852b-11ea-a675-730f9a2c1c3d",
            "name": "Land Record Executive"
        },
        {
            "id": "6db9f820-42ab-11ea-b086-f1911827a546",
            "name": "Bell Driver"
        },
        {
            "id": "6dcb0c60-7ab7-11ed-9e53-4ba966aa7010",
            "name": "Hostess"
        },
        {
            "id": "6df51f30-4eec-11ea-94d5-a5b7519881c1",
            "name": "Senior Cahiser"
        },
        {
            "id": "6e192590-42ab-11ea-aa03-177895221e3a",
            "name": "FO Supervisor"
        },
        {
            "id": "6e372430-42ab-11ea-8825-e9139459d74d",
            "name": "Bellboy"
        },
        {
            "id": "6e453e40-6db0-11ea-896d-ff75c60588ca",
            "name": "Site Engineer (Civil/ID)"
        },
        {
            "id": "6e5643f0-e592-11ed-b12a-4d14eac16f99",
            "name": "Assistance Finance Manager"
        },
        {
            "id": "6e5ba8e0-8a94-11ea-9e30-b31f8e23da41",
            "name": "Sales Gallery Host"
        },
        {
            "id": "6e6a2e00-638f-11ea-ac66-0d22f912dd8c",
            "name": "M & E Technician ( Aircon)"
        },
        {
            "id": "6e8447a0-4eec-11ea-a468-11a8d3bc61fb",
            "name": "Business Development Assistant"
        },
        {
            "id": "6e8b3900-852b-11ea-b344-7fe23e430501",
            "name": "Leasing Performance Manager"
        },
        {
            "id": "6ea7ba00-4eec-11ea-992e-9d011341b486",
            "name": "Graphic Designer cum Marketing Executive"
        },
        {
            "id": "6eaf1aa0-42ab-11ea-bcdc-450696c8d0c0",
            "name": "Guest Relations Officer"
        },
        {
            "id": "6ec7b130-f27b-11ea-adc5-53454178ee9b",
            "name": "Construction Manager (MEP)"
        },
        {
            "id": "6ec97cb0-4eec-11ea-8b93-190358b552dc",
            "name": "Social Media Officer"
        },
        {
            "id": "6f080d10-42ab-11ea-a4f1-f71ebde2deb0",
            "name": "Asst; Front Office Manager"
        },
        {
            "id": "6f0c7b70-aa36-11ea-82ab-55851838781d",
            "name": "General Manager, Strategic Development"
        },
        {
            "id": "6f16b050-2dca-11ec-950c-dd3e547d8fb3",
            "name": "Advisor"
        },
        {
            "id": "6f26cf70-42ab-11ea-8958-bbab9c56bfd0",
            "name": "Housekeeping Manager"
        },
        {
            "id": "6f472520-42ab-11ea-9829-49e856ba9bde",
            "name": "Floor Supervisor"
        },
        {
            "id": "6f5691a0-4eec-11ea-919a-f778cd1f9200",
            "name": "Spare Parts Executive"
        },
        {
            "id": "6f64f6c0-42ab-11ea-b79e-856d94992c05",
            "name": "Linen Supervisor "
        },
        {
            "id": "6f82a8f0-e3bc-11ea-b75b-57ffd70a5709",
            "name": "Chief Financial Officer"
        },
        {
            "id": "6f82e660-42ab-11ea-b7bc-9fd8d9895685",
            "name": "Senior Room Attendant"
        },
        {
            "id": "6f8f83c0-577e-11ea-b378-493980872125",
            "name": "Tax Associate"
        },
        {
            "id": "6f9085b0-e3bc-11ea-923c-c520ba682ad1",
            "name": "Sr. Admin Manager"
        },
        {
            "id": "6f9b0970-e3bc-11ea-a389-39d4bec91d10",
            "name": "Group Admin Manager"
        },
        {
            "id": "6f9d8be0-4eec-11ea-99c5-f5073b4b04fb",
            "name": "Service Advisor"
        },
        {
            "id": "6fa0ac60-42ab-11ea-bed5-31a77e689215",
            "name": "Housekeeping Attendant "
        },
        {
            "id": "6fa8e560-e3bc-11ea-8356-3393036914e2",
            "name": "Director of Special Projects"
        },
        {
            "id": "6fb0ed40-e3bc-11ea-aacd-d3d076eb1e6e",
            "name": "Head of Vehicle Leasing and Rental"
        },
        {
            "id": "6fbae6d0-e3bc-11ea-b21e-032bd3b857d2",
            "name": "Head of Group China Desk"
        },
        {
            "id": "6fbf39d0-42ab-11ea-9b0f-afec78dacf67",
            "name": "Room Attendant "
        },
        {
            "id": "6fc12880-4eec-11ea-9c7e-6101bb2b66eb",
            "name": "Operation Officer"
        },
        {
            "id": "6fc61b80-e3bc-11ea-a96c-5704bb1c72ef",
            "name": "Deputy Director"
        },
        {
            "id": "6fddd1d0-356b-11ec-8ef2-93e8ee388f8e",
            "name": "HR Accountant"
        },
        {
            "id": "6fe4d0b0-638f-11ea-a36d-b92d7132fa0f",
            "name": "MO Executive"
        },
        {
            "id": "6fede280-e3bc-11ea-ba4a-8708c85487ce",
            "name": "Interior Design Manager"
        },
        {
            "id": "6ff425c0-e8d1-11ed-81d2-271ee5400344",
            "name": "Head of Leasing"
        },
        {
            "id": "6ff5f5b0-6db0-11ea-9856-21db8c4d8940",
            "name": "Leasing Manager"
        },
        {
            "id": "6ffb3230-42ab-11ea-b106-330088e04162",
            "name": "Laundary Attendant"
        },
        {
            "id": "703a15a0-e3bc-11ea-a478-953d6f2de3a3",
            "name": "Manager - Operations"
        },
        {
            "id": "703a5ce0-6db0-11ea-9145-c973c19cd1e6",
            "name": "Assistant Leasing Operations Manager"
        },
        {
            "id": "705264b0-e3bc-11ea-a654-2f5098322018",
            "name": "STR Design Coordinator"
        },
        {
            "id": "705babf0-e3bc-11ea-b44d-835fc754e851",
            "name": "Brand Director"
        },
        {
            "id": "70616c60-e3bc-11ea-937d-155c10177f89",
            "name": "Sales Assistant/Analyst"
        },
        {
            "id": "7066e6a0-e3bc-11ea-be5d-c7f8351766ca",
            "name": "Personnel Manager"
        },
        {
            "id": "706f5ed0-4eec-11ea-b5e5-25f23246e62c",
            "name": "Sales Adminstration Manager"
        },
        {
            "id": "707364c0-5f50-11ea-bd0b-1908e2ebaed6",
            "name": "Account Supervisor"
        },
        {
            "id": "7073aab0-638f-11ea-bc8e-799239003046",
            "name": "Cleaner Supervisor"
        },
        {
            "id": "7077eb80-e3bc-11ea-9779-75666f4d7c67",
            "name": "Assistant HR Manager (HR Ops)"
        },
        {
            "id": "707e46f0-6db0-11ea-a39f-0f84a4a3c699",
            "name": "Leasing Administration Officer"
        },
        {
            "id": "7089f360-e3bc-11ea-8785-fbb8540ed2b1",
            "name": "Assistant Accounts Manager"
        },
        {
            "id": "708fd900-e3bc-11ea-9eec-df552b830872",
            "name": "Sr. Network Engineer"
        },
        {
            "id": "7092c1b0-4eec-11ea-b0a5-41935c1bb74e",
            "name": "Assistant Spare Parts Manager"
        },
        {
            "id": "70a26920-e3bc-11ea-81ee-83fe6bfc8782",
            "name": "Employee Service Executive"
        },
        {
            "id": "70ae3350-e3bc-11ea-be19-ebbc1e5f951a",
            "name": "Assistant Accontant"
        },
        {
            "id": "70af99a0-42ab-11ea-bf99-2105b0a03bab",
            "name": "Public Area Attendance"
        },
        {
            "id": "70b53a70-4eec-11ea-afa2-631462f73ffe",
            "name": "Logistics Executive"
        },
        {
            "id": "70b5bb90-8a94-11ea-8f0a-ff67ee76eee5",
            "name": "Food & Beverage Staff"
        },
        {
            "id": "70b81b10-e3bc-11ea-95e5-0585641cbd33",
            "name": "Head of Government Relations"
        },
        {
            "id": "70ca2770-7ab7-11ed-aaee-bf891dfe34ee",
            "name": " Demi Chef "
        },
        {
            "id": "70cd7540-42ab-11ea-8ebf-9d809464800d",
            "name": "Gardener"
        },
        {
            "id": "70d1b390-e3bc-11ea-960e-63294b069bd3",
            "name": "Dy Head HR & Admin"
        },
        {
            "id": "70d9da00-b16a-11ec-a423-e5a7777a2e94",
            "name": "Associate, Investment and Operations"
        },
        {
            "id": "70ed4880-4eec-11ea-a97c-bf270dd578c7",
            "name": "Sales Trainee"
        },
        {
            "id": "70edeb10-6d8c-11ea-a94f-a5adf560ff95",
            "name": "Procurement & Logistics Documents Controller"
        },
        {
            "id": "71114b90-e3bc-11ea-89dd-451f5f4644ad",
            "name": "Administration Manager"
        },
        {
            "id": "712422e0-e3bc-11ea-9b6c-7b7d86469dc8",
            "name": "Senior Engineer (Archi/ID)"
        },
        {
            "id": "712ac6d0-6d8c-11ea-8be8-89a09419e7e3",
            "name": "Logistics Coordinator"
        },
        {
            "id": "713894b0-6db0-11ea-8b51-5721852c3d27",
            "name": "Leasing Accounts Administrator"
        },
        {
            "id": "713e5a60-e3bc-11ea-88c9-4751b6e28196",
            "name": "Mechanical & Electrical Engineer"
        },
        {
            "id": "71460830-e3bc-11ea-af14-195a6ed29396",
            "name": "Human Resources Executive"
        },
        {
            "id": "714dea50-e3bc-11ea-b501-a1c57a4a84f9",
            "name": "Construction & Services Manager"
        },
        {
            "id": "71557440-4eec-11ea-a619-4958664607d9",
            "name": "Trainee Service Advisor"
        },
        {
            "id": "715606c0-e3bc-11ea-bc3b-4b61e2c88003",
            "name": "Senior Mechanical & Electrical Engineer"
        },
        {
            "id": "71620ef0-42ab-11ea-ae7c-81d39dffefad",
            "name": "Senior Technician "
        },
        {
            "id": "7166eb50-e3bc-11ea-a700-ed6154cbb4f1",
            "name": "Senior Project Coordinator"
        },
        {
            "id": "7171dd60-6d8c-11ea-9498-2f348f644d2a",
            "name": "Procurement & Logistics Documents Coordinator"
        },
        {
            "id": "71780b10-e3bc-11ea-ac98-cdb6bbae5d9a",
            "name": "Senior Occupational Health & Safety Manager"
        },
        {
            "id": "717d80e0-58cc-11eb-b7ce-6901fc8f15b8",
            "name": "Technical Engineer"
        },
        {
            "id": "71813a40-42ab-11ea-862f-8b7e245a8aee",
            "name": "Secutrity Supervisor "
        },
        {
            "id": "71822d90-e3bc-11ea-8e24-29db65ea29bc",
            "name": "Senior Health, Safety & Environment  Supervisor"
        },
        {
            "id": "7184afd0-6db0-11ea-b86a-01ac7c9d27a2",
            "name": "Leasing Operations Coordinator"
        },
        {
            "id": "718a7740-311d-11ed-b053-352df61a4926",
            "name": "Admin & Operation Executive"
        },
        {
            "id": "718ce720-e3bc-11ea-aaa3-191ae40ab841",
            "name": "Human Resources Associate"
        },
        {
            "id": "71918ad0-5f50-11ea-b72a-e7f74583c858",
            "name": "Customer Services Manager"
        },
        {
            "id": "71949520-c1ec-11ec-94d3-ab478ebbf7e9",
            "name": "Assistant Manager (Project & NH Procurement)"
        },
        {
            "id": "7196c240-e3bc-11ea-9c2a-c9c0342af72d",
            "name": "Head of Construction Services"
        },
        {
            "id": "71a02c40-42ab-11ea-85c7-491526a86f3c",
            "name": "Technician"
        },
        {
            "id": "71a73e40-638f-11ea-b932-c3e4dcf3bd35",
            "name": "Acting Group Leader"
        },
        {
            "id": "71bde560-42ab-11ea-a955-fb6cb6902763",
            "name": "Senior Technican"
        },
        {
            "id": "71c03dd0-5676-11eb-b4fc-53c61e1699e9",
            "name": "HR Staff"
        },
        {
            "id": "71d7c600-3d9e-11ea-89c9-6b4c91906226",
            "name": "Assistant Restaurant Manager Training"
        },
        {
            "id": "71eb36c0-6d8c-11ea-a994-f7ab74bd10b1",
            "name": "Site Acquisition Supervisor"
        },
        {
            "id": "71f310d0-e3bc-11ea-96bb-0dacbc49649a",
            "name": "HR & Training Manager"
        },
        {
            "id": "71f54820-5f50-11ea-a8e5-1dba9b446a9b",
            "name": "Assistant Service Centre Officer"
        },
        {
            "id": "720b5960-852b-11ea-9be7-673e0c671a88",
            "name": "Senior QS/Commercial Manager"
        },
        {
            "id": "72146a20-e3bc-11ea-9f17-210166cb0091",
            "name": "General Assistant"
        },
        {
            "id": "721c8420-e3bc-11ea-9ea2-c1869ced210e",
            "name": "Sales Admin Manager"
        },
        {
            "id": "7223edc0-4ae8-11ee-bc47-e7a09dc4706a",
            "name": "Head of Corporate Finance"
        },
        {
            "id": "7224c250-5f50-11ea-b81e-7b64d6893f7f",
            "name": "Linen & Store Supervisor"
        },
        {
            "id": "7224e5a0-e3bc-11ea-9d2e-c34de4bda441",
            "name": "Slaes Executive"
        },
        {
            "id": "72280090-6d8c-11ea-ae85-597cb2433452",
            "name": "SA Coordinator"
        },
        {
            "id": "72495d60-3833-11eb-b260-f304e94644c3",
            "name": "UAT Coordinator"
        },
        {
            "id": "7252bc40-e3bc-11ea-a297-f9f7034e685a",
            "name": "Deputy Construction Manager"
        },
        {
            "id": "725ece00-e3bc-11ea-834d-7513555aecc3",
            "name": "Manager (Internal Communications)"
        },
        {
            "id": "725ede20-c60e-11ec-acd7-078d899bbd36",
            "name": "3D Visualizer"
        },
        {
            "id": "72701600-e3bc-11ea-8447-cd828db15d72",
            "name": "Senior Owner Liaison Officer"
        },
        {
            "id": "72777d30-6db0-11ea-99eb-21c6d70314c7",
            "name": "Structure Manager"
        },
        {
            "id": "727a0b20-e3bc-11ea-b1c7-294e0d97bbc1",
            "name": "Chief Advisor"
        },
        {
            "id": "72823e10-e3bc-11ea-a337-73150164a9c6",
            "name": "Sr. Maintenance Supervisor"
        },
        {
            "id": "728968e0-e3bc-11ea-a9c9-a195046563e3",
            "name": "Assistant GC Superintendent"
        },
        {
            "id": "72929910-e3bc-11ea-8d2b-6d0a7c2adaae",
            "name": "Senior Landscape Manager"
        },
        {
            "id": "729a23d0-e3bc-11ea-afd9-dbb076fa9dcf",
            "name": "Customer Service Manager"
        },
        {
            "id": "72a0df70-e3bc-11ea-96ad-09811d11f705",
            "name": "Technician G I"
        },
        {
            "id": "72a1bf80-6d8c-11ea-89d0-89b3c9f0a922",
            "name": "CAD Operator"
        },
        {
            "id": "72b2b170-e3bc-11ea-baa3-b1cb2eefe4ce",
            "name": "Technician G II"
        },
        {
            "id": "72bd14f0-e3bc-11ea-8e5c-599919de9bdb",
            "name": "Assistant FO Manager"
        },
        {
            "id": "72cd3370-42ab-11ea-b613-fd561d6fd340",
            "name": "Asst Restruant Supervisor"
        },
        {
            "id": "72d1cab0-638f-11ea-ab32-d3edb20e1f6c",
            "name": "General Technician Grade-II"
        },
        {
            "id": "72d86280-6db0-11ea-8951-81ee80f32701",
            "name": "ID & Finishing Manager"
        },
        {
            "id": "72de56c0-6d8c-11ea-8a92-77d13f3be268",
            "name": "Documentation Controller"
        },
        {
            "id": "72e2b780-6001-11ee-a1cd-67860dcbd65a",
            "name": "FIT Manager"
        },
        {
            "id": "72e6f790-5f50-11ea-973a-9f62088d6e37",
            "name": "HK and Linen Attendant"
        },
        {
            "id": "72eb5930-e3bc-11ea-bdc5-63091fd86254",
            "name": "Landscape Operator"
        },
        {
            "id": "73005300-3590-11ed-a7c6-4fb4288f4585",
            "name": "Resident Manager"
        },
        {
            "id": "73097320-3544-11ee-9cf1-4b5cb8f62f89",
            "name": "Senior Frontend Developer"
        },
        {
            "id": "730c8d60-e3bc-11ea-8b7d-9b1249f88ca7",
            "name": "Professional Painter"
        },
        {
            "id": "731b4800-6d8c-11ea-96f4-4da38a2e7bb8",
            "name": "Environmental & Social Analyst"
        },
        {
            "id": "731c0180-6db0-11ea-a0a2-1ffce359297e",
            "name": "QA/QC Manager"
        },
        {
            "id": "731f2ba0-e3bc-11ea-95b9-0709e0edaed0",
            "name": "Human Resources Manager"
        },
        {
            "id": "733907c0-e3bc-11ea-bdd9-f1dfe8e213ec",
            "name": "Landscaping Consturction Manager"
        },
        {
            "id": "73452930-42ab-11ea-9a0d-e995135ca3b9",
            "name": "Asst Bar Manager"
        },
        {
            "id": "73469eb0-f2cb-11ec-8f5b-153746dfed1f",
            "name": "AIM Officer"
        },
        {
            "id": "7346a160-e3bc-11ea-b682-91df935cbbe2",
            "name": "Jr HR Executive (C&B)"
        },
        {
            "id": "73584bc0-6d8c-11ea-9bb6-1d5408c27b04",
            "name": "                        NOC Engineer"
        },
        {
            "id": "73683270-e3bc-11ea-995c-13d25f7397f7",
            "name": "Retail Sales"
        },
        {
            "id": "737e2dc0-e3bc-11ea-a109-ad39196fa882",
            "name": "HK & Landscaping Supervisor"
        },
        {
            "id": "73966c80-6eaa-11ec-b698-bd4609512716",
            "name": "Warehouse Data Entry"
        },
        {
            "id": "73976f30-6db0-11ea-b8db-c9a3fd482943",
            "name": "Project Lead"
        },
        {
            "id": "739c6750-e3bc-11ea-b9ac-4f86d250ea04",
            "name": "HR Executive (HR Ops)"
        },
        {
            "id": "73affd40-3d9e-11ea-8b0e-05a11d864ec1",
            "name": "Assistant Restaurant Manager Trainee"
        },
        {
            "id": "73b5fcd0-e3bc-11ea-9e6c-8be30b371ca6",
            "name": "Administrative Officer"
        },
        {
            "id": "73e318d0-b0eb-11ed-9b5f-7d1b8accb254",
            "name": "Jr. Android Developer"
        },
        {
            "id": "73ed34f0-e3bc-11ea-b134-498c4d71ce31",
            "name": "Irrigation Foreman"
        },
        {
            "id": "73feebc0-e3bc-11ea-a4e8-addf16c544df",
            "name": "Senior Engineer (MEP)"
        },
        {
            "id": "7417f190-852b-11ea-9ad3-41b888029150",
            "name": "PCD Director"
        },
        {
            "id": "74188970-42ab-11ea-8400-37cd22598330",
            "name": "Senior Waitress"
        },
        {
            "id": "7425fd60-e3bc-11ea-89f7-91a2ddd1bb7d",
            "name": "Assistant Administrative Officer"
        },
        {
            "id": "743424e0-3e10-11ed-83ac-b36857ed6bff",
            "name": "Technician Grade-lll"
        },
        {
            "id": "7437f8f0-5f50-11ea-8391-0fcc65f4a079",
            "name": "HK Coordinator"
        },
        {
            "id": "745bbfa0-d3aa-11e9-b8e5-f758a8056cc7",
            "name": "IT Solutions Coordinator"
        },
        {
            "id": "745fec10-8d26-11ea-846f-bdfca177b01d",
            "name": "Assistant Food & Beverage Manager"
        },
        {
            "id": "74722c60-42ab-11ea-aa8f-1f9c3441e7f4",
            "name": "F&B Manager"
        },
        {
            "id": "7477ed90-d3aa-11e9-9a15-331ba0b0cd67",
            "name": "Online Optimization Coordiantor"
        },
        {
            "id": "74894970-685d-11ec-abdb-3fee3ba223bd",
            "name": "Sales Anaylst"
        },
        {
            "id": "74a5fd40-d3aa-11e9-a7e7-5fc246b65b3a",
            "name": "HR Executive (TA & Ops)"
        },
        {
            "id": "74aa0510-e3bc-11ea-82a4-1bb24eb33351",
            "name": "Communication & PR Manager"
        },
        {
            "id": "74b14bb0-42ab-11ea-a221-075243c7d417",
            "name": "Executive Chef"
        },
        {
            "id": "74b89ff0-b7ef-11ed-8f4c-1319ec607561",
            "name": "Senior Engineer (Design & Engineering)"
        },
        {
            "id": "74c36d50-852b-11ea-ab56-599ac74fb914",
            "name": "Assistant Business Development Manager"
        },
        {
            "id": "74d06a40-42ab-11ea-8520-85e1af3d3ddc",
            "name": "Senior Chef De Partie"
        },
        {
            "id": "74de7970-e3bc-11ea-ad33-79addbd5578d",
            "name": "Junior Management Office Executive"
        },
        {
            "id": "74e45980-6db0-11ea-ae20-177cbddada28",
            "name": "MEP Engineer (QA/AC)"
        },
        {
            "id": "74ee9630-42ab-11ea-8182-f745b64426b2",
            "name": "Assistant Pastry"
        },
        {
            "id": "74f09040-2550-11ea-b10d-a1525035c861",
            "name": "Chief Executive Officer"
        },
        {
            "id": "74f7c150-e3bc-11ea-97f7-a1c0a9e21cd3",
            "name": "General & Chemical Supervisor"
        },
        {
            "id": "750b45e0-5425-11eb-840b-45775338a87f",
            "name": "Logistics & Government Relations Executive"
        },
        {
            "id": "750ca6c0-42ab-11ea-9cd2-bd14c6153cbd",
            "name": "Chef De Partie"
        },
        {
            "id": "750e6c90-852b-11ea-b2c3-89f760b2f1b9",
            "name": "Senior Media & Graphic Designer"
        },
        {
            "id": "750fc2e0-2550-11ea-b4d6-6bb26b4e8d41",
            "name": "Associate HR Director"
        },
        {
            "id": "7518cc20-e3bc-11ea-8d37-c753a283a2f9",
            "name": "ELV Technician"
        },
        {
            "id": "752ac8c0-42ab-11ea-a48e-3b8be66efbfa",
            "name": "Demi-Chef"
        },
        {
            "id": "752d7da0-638f-11ea-a5da-a155ffd1b4df",
            "name": "Credit Control Officer"
        },
        {
            "id": "752ddbb0-2550-11ea-9a3b-cb484957ee00",
            "name": "Property Assistent"
        },
        {
            "id": "7535c360-e3bc-11ea-80e4-23006ecfb6ef",
            "name": "Management Office Manager"
        },
        {
            "id": "753fda10-6db0-11ea-a117-af0114a433a1",
            "name": "Senior MEP Engineer"
        },
        {
            "id": "7555c100-6d8c-11ea-9638-bbde7828479d",
            "name": "Data Analyst ( NOC )"
        },
        {
            "id": "75869d40-e3bc-11ea-b220-97a1c93054ba",
            "name": "Applications Support Coordinator"
        },
        {
            "id": "7593e3b0-2550-11ea-a417-89f0b43178f8",
            "name": "Assistant Auditor"
        },
        {
            "id": "75e23690-638f-11ea-9dca-87567bce089d",
            "name": " Cashier"
        },
        {
            "id": "75f3ba90-e3bc-11ea-b734-a3e42f42f214",
            "name": "Assistant Human Resources Manager"
        },
        {
            "id": "75fbc270-42ab-11ea-b12b-673621cd28cd",
            "name": "Steward"
        },
        {
            "id": "76136ad0-e3bc-11ea-8d6a-bba3849713f5",
            "name": "Assistant HR Executive (C&B)"
        },
        {
            "id": "7619d580-42ab-11ea-8029-5747cb4a0e25",
            "name": "Canteen Cook"
        },
        {
            "id": "761d3100-e3bc-11ea-addf-278dfece48d8",
            "name": "Guest Relations Executive"
        },
        {
            "id": "762ec210-e3bc-11ea-8644-63f59ad6d752",
            "name": "Senior Treasurer"
        },
        {
            "id": "76533290-5a0e-11eb-949a-254b70eb92e5",
            "name": "Asst. to the CEO & Govt. Relations Manager"
        },
        {
            "id": "76541110-3833-11eb-a442-691a695b29d8",
            "name": "Markeing Associate "
        },
        {
            "id": "7673e6c0-42ab-11ea-86bf-1f4140d2b5c8",
            "name": "Senior Steward"
        },
        {
            "id": "767b9f60-852b-11ea-b407-e59a4dc4c2ea",
            "name": "Senior Workshop Supervisor"
        },
        {
            "id": "767c5180-e3bc-11ea-a490-99f87ec2d20b",
            "name": "Head of Yoma Financial Services"
        },
        {
            "id": "767eca50-6db0-11ea-80e6-8d49e8f2b2c7",
            "name": "Senior M & E Engineer"
        },
        {
            "id": "76871050-e3bc-11ea-8cb8-b34acde786fb",
            "name": "Manager (Mechnical)"
        },
        {
            "id": "769e3b30-f6c1-11ec-88cf-f5de2f19cd81",
            "name": "Assistant Finance Business Partner Manager"
        },
        {
            "id": "76a17b50-6d8c-11ea-bb6b-4fdcc8fa0d4f",
            "name": "Site Acquisition Coordinator"
        },
        {
            "id": "76c64c30-e3bc-11ea-b711-bb0adea4230c",
            "name": "Area Coach Trainee"
        },
        {
            "id": "76f325a0-030c-11eb-b9fb-239872f353f0",
            "name": "Assistant H&S Manager"
        },
        {
            "id": "76f743e0-e3bc-11ea-8236-6f1b76ed2e34",
            "name": "Fleet and Distribution Manager"
        },
        {
            "id": "76fba200-6213-11ec-b454-9d88992478fc",
            "name": "Veggie Farm Supervisor"
        },
        {
            "id": "770d4bd0-42ab-11ea-906a-6b326e24b691",
            "name": "HR Coordiantor"
        },
        {
            "id": "7726df70-6db0-11ea-ae53-f5662d480410",
            "name": "C&S Manager"
        },
        {
            "id": "77340020-e3bc-11ea-885f-1909207ff8cd",
            "name": "Assistant Innovation Manager"
        },
        {
            "id": "773b2b80-e3bc-11ea-a60d-15590aca855a",
            "name": "Graphic Designer cum Marketing Execuitve"
        },
        {
            "id": "7742d400-e3bc-11ea-bedf-457eadf92499",
            "name": "Head of F&B Operations- Little Sheep Restaurant"
        },
        {
            "id": "774a3340-42ab-11ea-8f59-318066c9f6c9",
            "name": "Reservationist"
        },
        {
            "id": "774e6320-e3bc-11ea-b4f3-bbab286a07cb",
            "name": "Systems Engineer"
        },
        {
            "id": "775ca100-e3bc-11ea-8106-c12ff822d0a9",
            "name": "Director of Sales (Leisure)"
        },
        {
            "id": "7769fad0-42ab-11ea-a1e6-f7ba95032149",
            "name": "Assistant Sales Manager"
        },
        {
            "id": "776a7db0-e3bc-11ea-8ca4-374282a17274",
            "name": "Senior Flight Executive"
        },
        {
            "id": "7770cde0-e3bc-11ea-95f7-7bf5e155e17f",
            "name": "Sales Executive (Nyaungshwe)"
        },
        {
            "id": "77775750-e3bc-11ea-9dcd-293da62fd42b",
            "name": "Sales & Marketing Staff"
        },
        {
            "id": "778e5f40-42ab-11ea-a92b-4984a128f5bc",
            "name": "Sales Assistant"
        },
        {
            "id": "7790e300-6db0-11ea-8717-891ceea810dc",
            "name": "MEP Manager "
        },
        {
            "id": "779802c0-e3bc-11ea-9bec-358a9d0e5dc9",
            "name": "Estate Sanitation Manager"
        },
        {
            "id": "7798a630-58ce-11eb-bb9e-6f36358e0ebc",
            "name": "Production Manager"
        },
        {
            "id": "77b4e880-e3bc-11ea-8213-b1cac9601f85",
            "name": "Fleet & Distribution Supervisor"
        },
        {
            "id": "77be5400-852b-11ea-b445-0d3771f026ca",
            "name": "Junior MEP Engineer"
        },
        {
            "id": "77c67530-0092-11ee-82f2-297b42fe4e70",
            "name": "Senior Merchant Executive"
        },
        {
            "id": "77d4be80-6db0-11ea-acdc-9d8dd9888281",
            "name": "Assistant Safety Supervisor"
        },
        {
            "id": "77f2fa70-5f50-11ea-a151-0f73093f2c90",
            "name": "Supervisor (Housekeeping and Landscaping)"
        },
        {
            "id": "77f54ca0-e3bc-11ea-bbff-5382979fd9e4",
            "name": "Product Support Administrator"
        },
        {
            "id": "7800c630-e3bc-11ea-9966-0bc43a0218aa",
            "name": "Apprentice"
        },
        {
            "id": "780b3600-852b-11ea-83dd-5b04b18b363e",
            "name": "Senior Investment Associate"
        },
        {
            "id": "781e7540-e3bc-11ea-b14e-0344dbb22edf",
            "name": "Chief Technician"
        },
        {
            "id": "781e9360-28ca-11eb-a562-8d48e50533d3",
            "name": "QA Engineer"
        },
        {
            "id": "78251fd0-e3bc-11ea-b6e8-4b08c4465865",
            "name": "Assistant H.K Manager"
        },
        {
            "id": "784311b0-42ab-11ea-bd52-e5ba3a98cf43",
            "name": "Reservation Manager"
        },
        {
            "id": "7854c770-e3bc-11ea-bd21-994e028ffc9f",
            "name": "Assistant H.R Manager"
        },
        {
            "id": "785637c0-852b-11ea-8e6b-4fead16d84d2",
            "name": "Retail Leasing Operations Manager"
        },
        {
            "id": "78610540-42ab-11ea-9508-d565c8578529",
            "name": "HR Executive (Recuritment)"
        },
        {
            "id": "78642b30-6d8c-11ea-a643-8d4b2a89c5b1",
            "name": "Assistant HR & Admin"
        },
        {
            "id": "786cd460-e3bc-11ea-9e76-2513f212a4ed",
            "name": "Driving Range & Locker Supervisor"
        },
        {
            "id": "78804c10-42ab-11ea-8dbf-d9ae29e31dcc",
            "name": "ITechnician"
        },
        {
            "id": "78a177f0-852b-11ea-8c41-3d638a7998e5",
            "name": "Assistant Manager(Financial Analysis)"
        },
        {
            "id": "78a8a9c0-64ec-11ed-baa2-ab5ece01a7e2",
            "name": "Head of Treasury"
        },
        {
            "id": "78b8e9e0-e3bc-11ea-9427-5ba74aaca4dd",
            "name": "Business Intelligence  Analyst"
        },
        {
            "id": "78cddc70-e3bc-11ea-a047-653a76c82be5",
            "name": "Body Paint Foreman"
        },
        {
            "id": "78d00610-4eec-11ea-9c3f-51ae0587c8b5",
            "name": "Service Helper"
        },
        {
            "id": "78e0f990-e3bc-11ea-ab38-dd954b3a2b2a",
            "name": "Senior C&S Engineer"
        },
        {
            "id": "78e76490-4eea-11ea-9bf4-957790d4fd0c",
            "name": "CSR"
        },
        {
            "id": "78eabd00-e3bc-11ea-a3d3-5f554e168167",
            "name": "Performance Team Support Executive"
        },
        {
            "id": "79310830-e3bc-11ea-8ce4-33a6cf06f534",
            "name": "Assistant Security Manager"
        },
        {
            "id": "79353ae0-6db0-11ea-9137-2ff0c7820395",
            "name": "Senior Mechanical Engineer"
        },
        {
            "id": "793c6f80-e3bc-11ea-890a-21d84a187ac1",
            "name": "Purchasing Clerk"
        },
        {
            "id": "793e90e0-2485-11ee-9591-11d69f4d3df9",
            "name": "Site Engineer (ID)"
        },
        {
            "id": "79417950-5f50-11ea-9074-3311e8d86239",
            "name": "HR Associate"
        },
        {
            "id": "794a4ce0-4eea-11ea-a604-d77280ea99a9",
            "name": "Hiker (Office)"
        },
        {
            "id": "79557550-e3bc-11ea-8432-077b10269fd1",
            "name": "Junior Soucs Chef"
        },
        {
            "id": "79592da0-6d8c-11ea-9c5e-75339fd930ff",
            "name": "Head of Site Acquisition"
        },
        {
            "id": "796ade90-4eea-11ea-b68b-a73d8a2a8865",
            "name": "Hiker (Mandalay)"
        },
        {
            "id": "796d98d0-e3bc-11ea-bc01-edb06d54ec95",
            "name": "Pastry Chef"
        },
        {
            "id": "79732fd0-6db0-11ea-a1a0-c1669f9363c5",
            "name": "Assistant Site Engineer"
        },
        {
            "id": "79749c20-9b6a-11eb-8dc8-390591b3d737",
            "name": "Treasury Accountant"
        },
        {
            "id": "797cf460-4eec-11ea-aa07-d92214bf2557",
            "name": "Operations Assistant"
        },
        {
            "id": "79854fa0-e3bc-11ea-8ea7-998e975d9c2b",
            "name": "Duty Manager"
        },
        {
            "id": "79960c70-6d8c-11ea-a6c8-8b6939752fb6",
            "name": "CEO, Yoma Micropower"
        },
        {
            "id": "7996b8d0-e3bc-11ea-aeb2-43378d40d815",
            "name": "Public Area Supervisor"
        },
        {
            "id": "79a1ef60-4eec-11ea-8307-41e630d675ef",
            "name": "After Sales Admin"
        },
        {
            "id": "79a7bf70-e3bc-11ea-88c4-fb6c0d0bf4d5",
            "name": "Senior Laundary & Linen Attendant"
        },
        {
            "id": "79cd41a0-e3bc-11ea-81ae-41acd98c0711",
            "name": "F & B Incharge"
        },
        {
            "id": "79ce0480-852b-11ea-9a6b-dd21455540a3",
            "name": "Assistant Instructor"
        },
        {
            "id": "79d1a450-5f50-11ea-a84a-ab4cce4d14d7",
            "name": "Landscaping Construction Manager"
        },
        {
            "id": "79d2e5e0-6d8c-11ea-967a-ad5638b279a2",
            "name": "Zonal O & M Manager"
        },
        {
            "id": "79eaf1b0-4eec-11ea-874e-f3a8aa604f02",
            "name": "Sales Supervisor"
        },
        {
            "id": "79f40250-e3bc-11ea-8949-5b404a1e6402",
            "name": "Receptionist - Night Audit"
        },
        {
            "id": "7a0e7b20-4eec-11ea-814b-5bbb2cc9198c",
            "name": "Junior Assistant Mechanic"
        },
        {
            "id": "7a1030f0-6d8c-11ea-953d-53b4c25fa98b",
            "name": "Chief Operation Officer"
        },
        {
            "id": "7a217540-633c-11ee-b4b3-7b6fa55c7aba",
            "name": "Logistics & Government Relation Executive"
        },
        {
            "id": "7a31c170-e3bc-11ea-a90f-ed54d4e3c742",
            "name": "Sir.HK Attendant"
        },
        {
            "id": "7a490f30-e3bc-11ea-aac4-6f4d52af6599",
            "name": "Maintenance"
        },
        {
            "id": "7a671ee0-d7fb-11ec-99a0-7196d0f6deb7",
            "name": "Senior Design Engineer"
        },
        {
            "id": "7a751500-4eec-11ea-8d40-61e2735353ac",
            "name": "Tool Room Controller"
        },
        {
            "id": "7a8ec7e0-6d8c-11ea-aaf0-35b87e6fb48c",
            "name": "QHSE Manager"
        },
        {
            "id": "7a9426c0-3278-11ee-8365-71358d91850f",
            "name": "Data Entry Operator"
        },
        {
            "id": "7a976e10-4eec-11ea-8df9-597b4f66f44c",
            "name": "Chief Mechanic"
        },
        {
            "id": "7a9e5080-3273-11ee-aaf0-21cf90f7ca94",
            "name": "O&M"
        },
        {
            "id": "7ab4fff0-4eea-11ea-8d22-67ca80f6e847",
            "name": "Ferry Driver "
        },
        {
            "id": "7ab9d8b0-4eec-11ea-8594-712db2b9a80b",
            "name": "Body & Paint Foreman"
        },
        {
            "id": "7acc0170-6d8c-11ea-8f99-49e441200659",
            "name": "Warehouse and Logistics Manager"
        },
        {
            "id": "7ad3d8b0-e3bc-11ea-aefd-6d2ec58b9e51",
            "name": "Compliance, Environmental & Social Manager"
        },
        {
            "id": "7ae279e0-e3bc-11ea-8af7-a74e504a60ad",
            "name": "Account Annalyst"
        },
        {
            "id": "7b090030-6d8c-11ea-9645-87ffe9a9c82d",
            "name": "Assistant Manager (construction)"
        },
        {
            "id": "7b189ff0-4eea-11ea-a105-6d0235635a33",
            "name": "Customer Service Agent"
        },
        {
            "id": "7b19b170-e3bc-11ea-98be-dbe0adeca60b",
            "name": "Senior HR Executive (Talent Acquisition)"
        },
        {
            "id": "7b3ad680-eb99-11ea-9077-e1fda2c58c39",
            "name": "Assistant Manager Finance"
        },
        {
            "id": "7b4300b0-4eec-11ea-bdfe-c9151bfd3dd4",
            "name": "Body Paint Technician"
        },
        {
            "id": "7b597640-de84-11ed-98fd-eb434d71d5e9",
            "name": "Part Sale Supervisor"
        },
        {
            "id": "7b5b29c0-4eea-11ea-b5aa-2904af099609",
            "name": "Call Center Agent"
        },
        {
            "id": "7b5df760-d197-11ec-b9bd-43c410c793ae",
            "name": "Concierge"
        },
        {
            "id": "7b5ef660-f870-11ed-821d-c5b3bb265e39",
            "name": "Human Resources Executive\t"
        },
        {
            "id": "7b660570-4eec-11ea-ad63-e9e1d2b4474c",
            "name": "Body Shop Assistant"
        },
        {
            "id": "7b8a47d0-852b-11ea-8840-7da0f985de23",
            "name": "Assistant Supervisor (Driving Range)"
        },
        {
            "id": "7ba70fe0-6db0-11ea-a1ca-47186408ea96",
            "name": "MEP Site Engineer"
        },
        {
            "id": "7bbcd1a0-f78e-11ec-b07c-5b1e6d89df84",
            "name": "Fuel Analysis"
        },
        {
            "id": "7bbcd1c0-4eea-11ea-b111-0f14e3a4bd06",
            "name": "Accont Payable Coordinator"
        },
        {
            "id": "7bd14de0-eb99-11ea-a597-5bfce684be54",
            "name": "Driector of Food & Beverage Operations"
        },
        {
            "id": "7bdde190-4eea-11ea-9790-c3c1780111bd",
            "name": "Admin & HR Assistant"
        },
        {
            "id": "7be55b00-830b-11ec-b39d-650623c35adc",
            "name": "Director of Sales (Corporate and Events)"
        },
        {
            "id": "7bed8770-e3bc-11ea-bb36-9fc23ba70c4c",
            "name": "Workshop Manager/Motorcycle Master Technician"
        },
        {
            "id": "7bfe8fe0-4eea-11ea-b900-5593182b452d",
            "name": "System Operator"
        },
        {
            "id": "7c2d91b0-e3bc-11ea-a149-7f3173d8923f",
            "name": "Public Area Attendant"
        },
        {
            "id": "7c378880-eb99-11ea-968d-cd8aa65ab932",
            "name": "Group Executive Chef"
        },
        {
            "id": "7c59a9d0-3278-11ee-8aed-eb4b1ce7ecaf",
            "name": "Software Engineer (Mid)"
        },
        {
            "id": "7c60dc10-d197-11ec-8869-95560f39fba8",
            "name": "Senior MEP Project Engineer"
        },
        {
            "id": "7c62bbf0-4eea-11ea-984b-ab7c86104b01",
            "name": "Senior Call Centre Agent"
        },
        {
            "id": "7c655650-6db0-11ea-9ec5-e513ab7cef49",
            "name": "Assistant Engineer (MEP)"
        },
        {
            "id": "7c6eb280-638f-11ea-a7f7-55ec7d3fe57c",
            "name": "Stater Man"
        },
        {
            "id": "7c6fe2c0-e3bc-11ea-b909-f3b514398bfb",
            "name": "Sr. Chef De Partie"
        },
        {
            "id": "7c7004b0-5f50-11ea-a0f9-3b6436392f48",
            "name": "Assistant Supervisior"
        },
        {
            "id": "7c7e6320-e3bc-11ea-87d7-f502dbd6b34d",
            "name": "Front Office Supervisor"
        },
        {
            "id": "7c84ebc0-4eea-11ea-af73-73530f8c5547",
            "name": "Risk Support"
        },
        {
            "id": "7c946790-e3bc-11ea-8f07-4944c6d4edb8",
            "name": "Human Resources Supervisor"
        },
        {
            "id": "7c9e7b80-685c-11ec-af1b-090ee3635618",
            "name": "Sales Operation Manager"
        },
        {
            "id": "7ca5b310-e3bc-11ea-a6b6-f7456240785c",
            "name": "Senior Mechanical Engineer (MEP)"
        },
        {
            "id": "7caf0930-e3bc-11ea-ab1b-efa52e971354",
            "name": "Marketing and Customer Service Executive"
        },
        {
            "id": "7ccc00f0-d7ef-11eb-bce2-65891d0f76c3",
            "name": "System Administrator"
        },
        {
            "id": "7cd3ce30-f870-11ed-9f9d-a1de70a9ccad",
            "name": "Sports Attendant\t"
        },
        {
            "id": "7cdc8430-6ea6-11ec-87b1-915ff5071d0e",
            "name": "Warehouse,Procurement & Logistics Manager"
        },
        {
            "id": "7ce38bd0-6db0-11ea-b194-3b3ad668fc6a",
            "name": "Site Engineer(Civil)"
        },
        {
            "id": "7cf38050-eb99-11ea-a289-4157acf4f395",
            "name": "House Keeping"
        },
        {
            "id": "7d180fe0-e3bc-11ea-882e-fb8c6cc763bc",
            "name": "Chief Engineer for Pila Boats"
        },
        {
            "id": "7d21caa0-6db0-11ea-bcb8-e7106efd6cab",
            "name": "Site Engineer(Archi)"
        },
        {
            "id": "7d282640-e3bc-11ea-9238-e784e8691d8b",
            "name": "Marketing & Communication Manager"
        },
        {
            "id": "7d480910-e3bc-11ea-acf9-c52c9d994b2e",
            "name": "Group HR Manager (Talent Acquisition and Operations)"
        },
        {
            "id": "7d4ae060-852b-11ea-aab5-9d3a5f7f0b16",
            "name": "Commercial Performance Analyst"
        },
        {
            "id": "7d5cf890-638f-11ea-aa06-c524b0bd29a9",
            "name": "Irrigation Operator"
        },
        {
            "id": "7d665a30-e3bc-11ea-82b9-6f14e682c9e2",
            "name": "Security Officer"
        },
        {
            "id": "7d7b0ea0-fa7d-11eb-9a66-ab8b90553be3",
            "name": "Voice of Champion"
        },
        {
            "id": "7d8bdf40-e3bc-11ea-b34d-e36f4ff22e51",
            "name": "Bar Manager"
        },
        {
            "id": "7d9cc640-6db0-11ea-897c-0ba5ce1f10e9",
            "name": "Site Enginer(MEP)"
        },
        {
            "id": "7da19790-e3bc-11ea-8b9f-c3a3de7fc784",
            "name": "Risk Specialist"
        },
        {
            "id": "7db23580-32de-11ea-8696-c150b7efb131",
            "name": "Outlet Manager "
        },
        {
            "id": "7dd3af80-eb99-11ea-ba2a-8f2de38a1ae9",
            "name": "Assistant Director of Food & Beverage"
        },
        {
            "id": "7dd4e5e0-638f-11ea-b5ea-83ce681b7ba7",
            "name": "Gurad"
        },
        {
            "id": "7de4b2b0-e3bc-11ea-b422-cfa896b84412",
            "name": "Jr. Assistant Mechanic"
        },
        {
            "id": "7dedb710-e3bc-11ea-a293-97ba6652ae33",
            "name": "Assistant Chief Engineer"
        },
        {
            "id": "7df228d0-3273-11ee-936d-fd12b593899c",
            "name": "Logistics Staff"
        },
        {
            "id": "7df6f3c0-e3bc-11ea-a26d-079b2d2e20bc",
            "name": "Business Development Manager - Contract Logistics"
        },
        {
            "id": "7dfd4340-e3bc-11ea-9cf2-b573c04bf55d",
            "name": "Deputy Sales Manager"
        },
        {
            "id": "7e196e60-6db0-11ea-bb61-e958c07d4cc1",
            "name": "CAD Engineer"
        },
        {
            "id": "7e212330-32de-11ea-94ce-af975817649e",
            "name": "Head of Finance"
        },
        {
            "id": "7e29b460-f870-11ed-858d-557c1b756fe5",
            "name": "Technician Grade-III\t\t"
        },
        {
            "id": "7e56fa40-6db0-11ea-9286-6580f1c3fd1e",
            "name": "Site Engineer(MEP)"
        },
        {
            "id": "7e5eff90-e3bc-11ea-80c1-47bf1b44ebc1",
            "name": "Logistics & Admin Assistant Manager"
        },
        {
            "id": "7e699ce0-e3bc-11ea-a721-e1033de9c178",
            "name": "Director of Government Relations Department"
        },
        {
            "id": "7e6f76c0-e3bc-11ea-a557-79a05462278f",
            "name": "Brista"
        },
        {
            "id": "7e7152c0-8a77-11ee-9bee-5baf9c59b2c7",
            "name": "Credit Underwriting Manager"
        },
        {
            "id": "7e73b1e0-32de-11ea-9cd7-ab1bb89d7b02",
            "name": "Procurement Manager"
        },
        {
            "id": "7e797d80-dd98-11ec-b7f7-c12f06aa350a",
            "name": "Client Service Associate"
        },
        {
            "id": "7e91ab10-e3bc-11ea-9993-617d9674d4de",
            "name": "Senior Bartender"
        },
        {
            "id": "7ea57800-32de-11ea-8bd4-233c3ebdb45f",
            "name": "Senior Graphic Designer"
        },
        {
            "id": "7eb11ed0-e3bc-11ea-abad-2f604f9a74be",
            "name": "Aftersales Admin"
        },
        {
            "id": "7ec296a0-638f-11ea-8b7e-03fcbbff324e",
            "name": "Asst;Staff Quarter Incharge"
        },
        {
            "id": "7ec53130-e3bc-11ea-80e0-5383af44770c",
            "name": "Marketing Administrator"
        },
        {
            "id": "7edfe010-5f50-11ea-b0e2-eb3a01ceff11",
            "name": "Senior Admin Officer"
        },
        {
            "id": "7eeb3b00-eb99-11ea-812b-030b8ceaf15f",
            "name": "Spa Therapist"
        },
        {
            "id": "7eecd280-c3cd-11ed-9571-0f45b168d5cb",
            "name": "Assistant Manager (Product Support)"
        },
        {
            "id": "7ef0c7f0-32de-11ea-a25f-d511093890c5",
            "name": "Maintenance Executive"
        },
        {
            "id": "7ef850b0-e3bc-11ea-8a12-45eabbe4bd26",
            "name": "Site Draftman"
        },
        {
            "id": "7f087a90-e3bc-11ea-8109-dbca3eb05e98",
            "name": "Online Optimization Coordinator"
        },
        {
            "id": "7f3953a0-e3bc-11ea-a476-7fe3a512ce13",
            "name": "HR Coordinator"
        },
        {
            "id": "7f3cc7d0-32de-11ea-b386-6f6c448d6282",
            "name": "Office Administration Officer"
        },
        {
            "id": "7f4e4460-9ac4-11ed-8312-0f54fd1be278",
            "name": "HR Project Coordinator"
        },
        {
            "id": "7f6200e0-ab00-11ea-a5d1-c93f0e50f979",
            "name": "Spare Parts Operation Administrator"
        },
        {
            "id": "7f764160-e3bc-11ea-b0f9-0374818b7f59",
            "name": "Assistance Manager(HR,Admin)"
        },
        {
            "id": "7fbf7fb0-dd98-11ec-8b94-7749b65e45f9",
            "name": "Repair and Maintenance Engineer (MEP)"
        },
        {
            "id": "7fcac0c0-5947-11eb-9510-fda8ac4d2cc3",
            "name": "Area Head-Waiters"
        },
        {
            "id": "7fd2e990-e3bc-11ea-9342-2f703eac11df",
            "name": "Site Engineer (Civil)"
        },
        {
            "id": "7fd603c0-c2fe-11ed-b303-e1558b2a5fe5",
            "name": "External Affairs Officer"
        },
        {
            "id": "7fdaf7e0-e3bc-11ea-be6c-61f278e64d87",
            "name": "Site Engineer (Archi)"
        },
        {
            "id": "7fe6b480-5947-11eb-a16f-c7f2c418f7de",
            "name": "Area Head-Waitress"
        },
        {
            "id": "7fe8f050-dd98-11ec-ba3b-61d97501099d",
            "name": "Repair and Maintenance Engineer (Civil)"
        },
        {
            "id": "8004a2f0-5947-11eb-ae26-4108fccdcd8f",
            "name": "Bus Boy"
        },
        {
            "id": "80378cc0-e3bc-11ea-9b7c-15034a48a5c2",
            "name": "Management Office Executive"
        },
        {
            "id": "803e5ab0-5947-11eb-aeda-a7ca0e38bbe0",
            "name": "T-Bortender"
        },
        {
            "id": "80a5c2e0-3d51-11ed-a60d-f714af5810c3",
            "name": "Intern"
        },
        {
            "id": "80b292b0-e3bc-11ea-8127-07a1832a81c7",
            "name": "F & B Supervisor"
        },
        {
            "id": "80b3d6d0-5947-11eb-9f32-a79b3290f28f",
            "name": "Trainee-BBQ"
        },
        {
            "id": "80c9b6e0-6db0-11ea-a561-292d72f14dcc",
            "name": "Leasing Operations Manager"
        },
        {
            "id": "80d3b570-f1b5-11ea-8831-89201edafbac",
            "name": "Assistant Project Administrator"
        },
        {
            "id": "80d5acc0-7378-11ec-832a-9106083b25d9",
            "name": "Project Coordinator (HR Strategy & Development)"
        },
        {
            "id": "80d5fa60-e3bc-11ea-a16a-b52cdd3f83c6",
            "name": "Account Payable Coordinator"
        },
        {
            "id": "80de2820-e3bc-11ea-9214-510db54ccaac",
            "name": "HR & Admin Assistant"
        },
        {
            "id": "810024a0-1c43-11ec-9d39-79742fb35dcf",
            "name": "Driving Range Supervisor and Teaching Pro"
        },
        {
            "id": "810c1230-e3bc-11ea-bc8b-c5975696bbd3",
            "name": "Admin Assistant (Leasing Operations)"
        },
        {
            "id": "81361fb0-e3bc-11ea-bfe4-3d50d86699cd",
            "name": "Assistant  Brand Manager"
        },
        {
            "id": "8136d880-eb99-11ea-9372-f3a473edc8f1",
            "name": "Captain of META IV"
        },
        {
            "id": "813b1960-30ee-11ee-b03f-dd907b2665da",
            "name": "Assistant Manager (Archi/ID)"
        },
        {
            "id": "81531ad0-e3bc-11ea-91bf-b14458a90bcd",
            "name": "Finance Manager (Process & Performance Management)"
        },
        {
            "id": "817d96f0-218b-11ea-9fc4-d7413de043a6",
            "name": "Restaurant Team Member"
        },
        {
            "id": "8190d9b0-e3bc-11ea-a06e-e5bf4a091445",
            "name": "Assistant Manager (Event & Communication)"
        },
        {
            "id": "8197f0c0-852b-11ea-be47-e33caa48a823",
            "name": "Senior Estate Manager"
        },
        {
            "id": "819a2630-e3bc-11ea-af1a-4578ab714b88",
            "name": "Manager-Responsible Business"
        },
        {
            "id": "81c37f70-146b-11ed-aa85-c55c857ef8fd",
            "name": "Collection Administrator"
        },
        {
            "id": "81e49170-e3bc-11ea-9993-a1224f2dad4e",
            "name": "Jr.Mechanic"
        },
        {
            "id": "81ed1bc0-e3bc-11ea-b1b5-9fb1d7fffa9a",
            "name": "Site Engineer (Civil/Archi)"
        },
        {
            "id": "81f2c980-146b-11ed-ad0a-0308dc9beee6",
            "name": "Admin Supervior"
        },
        {
            "id": "82058290-638f-11ea-8881-73d0fbd6c04f",
            "name": "Leasing Assistant"
        },
        {
            "id": "820c7330-e3bc-11ea-ad8b-17f0eb7ccee2",
            "name": "Marketing Specialist"
        },
        {
            "id": "821bed10-218b-11ea-8ef8-87009f6c247e",
            "name": "Assistant Restaurant Manager"
        },
        {
            "id": "82366720-ac70-11ea-a8d2-377ca0776398",
            "name": "Team Leader( Commerial & Logistics )"
        },
        {
            "id": "823cc960-e3bc-11ea-8e72-834f4d1fb379",
            "name": "Senior System Engineer(Lead)"
        },
        {
            "id": "824eb940-e3bc-11ea-aa8a-b5c3c0c15339",
            "name": "PABX Operator Cum Administrator"
        },
        {
            "id": "826f8080-6db0-11ea-9083-4fd62defa37d",
            "name": "Site Engineer(Civil/Archi)"
        },
        {
            "id": "828582e0-c677-11ed-8b59-ed6d8a194348",
            "name": "Jr. HR Executive"
        },
        {
            "id": "82aa0980-e3bc-11ea-ac68-01dfca296bb2",
            "name": "Jr.Service Engineer"
        },
        {
            "id": "82caae50-e3bc-11ea-b7ed-5558e83592b6",
            "name": "Apprentic Account(6 month contract)"
        },
        {
            "id": "82d85b20-e3bc-11ea-8b95-13fabba106ee",
            "name": "Documentation Coordinatior"
        },
        {
            "id": "82f0bb00-218b-11ea-a477-a347531de315",
            "name": "Restaurant Team Leader"
        },
        {
            "id": "82f23000-6db0-11ea-94ea-e1c165ca6670",
            "name": "Admin Assistant(Leasing Operations)"
        },
        {
            "id": "82f613e0-9524-11ec-b3f3-978fc378b836",
            "name": "Leasing Liaison Executive"
        },
        {
            "id": "83054af0-00c8-11eb-920a-35d04c3fccb6",
            "name": "Testing"
        },
        {
            "id": "833849a0-e3bc-11ea-a4d0-c31cdd2c47cc",
            "name": "Marketing & Communication Executive"
        },
        {
            "id": "833fee30-eb99-11ea-9e08-d5f58bdcd808",
            "name": "Demi Chef (Pastry)"
        },
        {
            "id": "835bd280-7549-11ed-9aea-4fa1b3db921e",
            "name": "RRR & SPMS Coordinator"
        },
        {
            "id": "8373fa80-e3bc-11ea-af1f-810ee10a6bf3",
            "name": "Development (Operations) Manager"
        },
        {
            "id": "83815640-218b-11ea-959c-67538c1845b9",
            "name": "Restaurant Supervisor"
        },
        {
            "id": "8399cfb0-218b-11ea-b9fd-4b307af51f51",
            "name": "1st Assistant Restaurant General Manager"
        },
        {
            "id": "83b28420-6db0-11ea-bef0-f1286907df5b",
            "name": "Site Engineer (MEP)"
        },
        {
            "id": "83ded360-60cf-11ee-b841-47cf73a8b7f2",
            "name": "Lead Project Development"
        },
        {
            "id": "8410acd0-7377-11ec-a19e-33013670b69a",
            "name": "Assistant HR Manager (HR Operations)"
        },
        {
            "id": "841192a0-bf71-11e9-9bd8-1fef81aab0b2",
            "name": "HR Executive"
        },
        {
            "id": "84129f50-bf71-11e9-88b2-8f33e16c9645",
            "name": "HR Manager"
        },
        {
            "id": "8413f610-bf71-11e9-8c35-c1890fcbb697",
            "name": "Admin"
        },
        {
            "id": "84322230-6db0-11ea-ae1e-b31d45d23a7a",
            "name": "Safety Supervisor"
        },
        {
            "id": "8477f140-852b-11ea-bed8-337f18106699",
            "name": "Head of Asset Management"
        },
        {
            "id": "84997260-638f-11ea-9863-7dcc71914799",
            "name": "Assistant Shift Leader"
        },
        {
            "id": "84a21fe0-218b-11ea-99c4-7d52a4f051bf",
            "name": "Admin Assistant"
        },
        {
            "id": "84b34020-6db0-11ea-9b10-b3f0049708a3",
            "name": "Deputy Construction\n Manager"
        },
        {
            "id": "84b96160-218b-11ea-aa3f-696f81b1ac26",
            "name": "Cleaner"
        },
        {
            "id": "84d6f8a0-4ef6-11ea-9d35-839272ba93a9",
            "name": "Senior Service Desk (KFC Office)"
        },
        {
            "id": "850147d0-331b-11ec-8b53-7f211bcba1d0",
            "name": "Utility & Operation Manager"
        },
        {
            "id": "85495a90-218b-11ea-ab65-851221b7092c",
            "name": "Receptionist"
        },
        {
            "id": "857872c0-218b-11ea-a739-3377dee925e8",
            "name": "Sr-Admin Executive"
        },
        {
            "id": "858333b0-aa62-11ea-8d1c-d7af31698f91",
            "name": "Spare Parts Operation Executive"
        },
        {
            "id": "85da3730-1315-11ec-ae88-93d0aafc6641",
            "name": "HR & Administrative Director"
        },
        {
            "id": "85f38dc0-d74a-11ea-9b31-59613ac2cdd8",
            "name": "Associate (Level 1)"
        },
        {
            "id": "86308290-f8ef-11ec-9c54-ef6294961ffe",
            "name": "Housekeeping Coordinator"
        },
        {
            "id": "863df360-852b-11ea-a0c1-976d6ebca53a",
            "name": "Estate Operation & Landscaping Manager"
        },
        {
            "id": "8643a880-2f11-11eb-b9fe-958dcb2f6af9",
            "name": "Human Resources & Administration Manager"
        },
        {
            "id": "864908e0-58dc-11eb-8f47-c5491d75fb63",
            "name": "Trainee-Floor"
        },
        {
            "id": "86864000-ca17-11ed-a663-077f5ea7d9f9",
            "name": "Senior Engineer(Civil)"
        },
        {
            "id": "869e9ac0-58dc-11eb-bf14-a739ca4f4a89",
            "name": "Sr-Kyay Oh"
        },
        {
            "id": "86e8f100-638f-11ea-a753-cfee26ab9c77",
            "name": "Driving Range & Locker Spervisor"
        },
        {
            "id": "86eaf410-58dc-11eb-893e-df864905a30f",
            "name": "Sr- Cashier"
        },
        {
            "id": "86f6e400-2dc0-11ec-8aaa-11f707071e26",
            "name": "Cook Helper(Butchery)"
        },
        {
            "id": "86f7d110-6db0-11ea-b82a-7b79f8361eb9",
            "name": "Budget Controller"
        },
        {
            "id": "87399600-8a77-11ee-b106-cf031d6c5244",
            "name": "Senior B2B Partnership Manager"
        },
        {
            "id": "8741dbf0-6db0-11ea-91d5-7b10733541dd",
            "name": "Procurement / QS"
        },
        {
            "id": "87464010-2fbf-11ec-bd1c-816b3e976db9",
            "name": "Mechanical Officer"
        },
        {
            "id": "874a1480-218b-11ea-9346-79ee6d6c8b3f",
            "name": "Marketing Assistant"
        },
        {
            "id": "87625ef0-218b-11ea-adde-17a68af61188",
            "name": "Senior Marketing Executive"
        },
        {
            "id": "876a4270-5f50-11ea-b3f5-6de45f131a6b",
            "name": "Senior Maintenance Supervisor"
        },
        {
            "id": "8779b5c0-218b-11ea-84f4-bd5d3f91b171",
            "name": "Videographer"
        },
        {
            "id": "877b1370-52e8-11ee-82cf-43e42630d953",
            "name": "Business Support Assistant"
        },
        {
            "id": "879106b0-218b-11ea-94aa-617e94c2fab8",
            "name": "Marketing Executive"
        },
        {
            "id": "879bd450-71d9-11eb-ab56-55faafeb9a22",
            "name": "Parts Manager"
        },
        {
            "id": "87a87800-218b-11ea-b859-bff0b1842305",
            "name": "Sales Executive"
        },
        {
            "id": "87bef3e0-6db0-11ea-9e04-cda7894f5da6",
            "name": "Junior C&S Engineer"
        },
        {
            "id": "87bf8820-218b-11ea-ab88-4b69cff32253",
            "name": "Designer"
        },
        {
            "id": "87ee6c60-218b-11ea-8578-d94c5c57461c",
            "name": "Sr-Designer"
        },
        {
            "id": "87f86480-f8ee-11ec-a450-4185a24d2136",
            "name": "Estate Operation Officer"
        },
        {
            "id": "8802def0-6db0-11ea-8a79-9f44368760b1",
            "name": "IT Manager"
        },
        {
            "id": "8835d9f0-218b-11ea-b7dc-d197dec63c44",
            "name": "R&D Executive"
        },
        {
            "id": "884299a0-2da6-11eb-95a2-f3655e79ecba",
            "name": "Sale Admin and Finance"
        },
        {
            "id": "88433410-6db0-11ea-871b-19e9092ba1cb",
            "name": "Senior QA/QC Coordinator"
        },
        {
            "id": "884f89e0-218b-11ea-97eb-4fbf1274f7a9",
            "name": "Jr- Data Analyst"
        },
        {
            "id": "88685dc0-218b-11ea-934f-4dfdeabcc1e6",
            "name": "Sr- Data Analyst"
        },
        {
            "id": "8879bb10-638f-11ea-b172-09f1cf681daf",
            "name": "Credit Control Executive"
        },
        {
            "id": "88808ec0-218b-11ea-85b3-dd19652b557f",
            "name": "Sr-R&D Executive"
        },
        {
            "id": "8881aac0-6db0-11ea-9a2c-a9d5996075c6",
            "name": "Junoir Architect"
        },
        {
            "id": "889c90c0-6197-11ee-ae8c-8b59dd6ce5bd",
            "name": "HR Assistant (Intern)"
        },
        {
            "id": "889cfec0-f27b-11ea-b9fa-85b6dffdc7fd",
            "name": "Senior Engineer (ID)"
        },
        {
            "id": "88b80c40-8ff4-11ed-abbb-db32dbb5115b",
            "name": "Jr. Content Writer"
        },
        {
            "id": "88f80c80-638f-11ea-a0ae-413ebeb42775",
            "name": "Golf Course Operator"
        },
        {
            "id": "88fdd270-6db0-11ea-aa90-51cabd423725",
            "name": "Junior ID Coordinator"
        },
        {
            "id": "8910e8f0-218b-11ea-8c4a-e7420cbc62b0",
            "name": "Chairperson Office Secretary"
        },
        {
            "id": "89266b70-1193-11ee-ae50-d3a838a02066",
            "name": "Bar Supervisor"
        },
        {
            "id": "892b0b00-218b-11ea-ac85-db3d9c65df9a",
            "name": "Sr-Auditor"
        },
        {
            "id": "89440cf0-218b-11ea-9240-8762ab150c65",
            "name": "Asst: Auditor"
        },
        {
            "id": "895b9a90-218b-11ea-a70d-b31a1fd9c9ae",
            "name": "Auditor"
        },
        {
            "id": "89799820-0e49-11ed-8648-0188ddf8f155",
            "name": "Head of Technology"
        },
        {
            "id": "89984e00-6db0-11ea-af2a-8f274f03f793",
            "name": "AUTOCAD Drafter"
        },
        {
            "id": "89ba8a90-218b-11ea-a0dd-db53b511fc2c",
            "name": " Assistant Auditor"
        },
        {
            "id": "89c21ea0-6197-11ee-926b-43473907e308",
            "name": "Software Engineer (Intern)"
        },
        {
            "id": "8a01cb70-6db0-11ea-aa69-3128dd1914bb",
            "name": "Junior ACMV Engineer (MEP)"
        },
        {
            "id": "8a4c6310-f26c-11ea-b870-5fd5d5f850da",
            "name": "Assistant Land Recorder"
        },
        {
            "id": "8a62a690-218b-11ea-b093-d14c8b195ccb",
            "name": "Chief Auditor"
        },
        {
            "id": "8a7aad90-218b-11ea-bd0d-2d4d69c42463",
            "name": "Operation Administrator"
        },
        {
            "id": "8a8076c0-e832-11ea-8849-eb7dd7bc2d92",
            "name": "Supply Chain & Logistics Coordinator"
        },
        {
            "id": "8a843c90-e058-11ea-9165-192085eee086",
            "name": "Credit Collection Officer"
        },
        {
            "id": "8a9280b0-218b-11ea-85a4-39ea7592a7c5",
            "name": "Asst: R&D Manager"
        },
        {
            "id": "8a9c7c80-6db0-11ea-bf0f-53c994582888",
            "name": "Office Secretary"
        },
        {
            "id": "8a9e6970-8299-11ed-93d5-a383ab99e8e7",
            "name": "Customer Service Associate"
        },
        {
            "id": "8aaa2b30-218b-11ea-83cb-4fce60b07e56",
            "name": "Solution Manager"
        },
        {
            "id": "8ace1b80-218b-11ea-aad7-ffc035c0d2cb",
            "name": "Asst: Marketing Manager"
        },
        {
            "id": "8afe7880-218b-11ea-a76d-5db7d97e5e32",
            "name": "Asst: Accountant"
        },
        {
            "id": "8b122510-eb99-11ea-98dd-a33e19fb6b2e",
            "name": "Demi Chef di Partie"
        },
        {
            "id": "8b2fffc0-218b-11ea-b6d6-870c00534dba",
            "name": "Sr-Accountant"
        },
        {
            "id": "8b473e80-d163-11ec-b894-df0a635631bf",
            "name": "Assistant R&D Manager"
        },
        {
            "id": "8b5aa240-eb99-11ea-a5e1-7bd21e510f77",
            "name": "Security Guard"
        },
        {
            "id": "8bedfa70-e2f2-11ec-900f-c5ddcee69f7d",
            "name": "Senior Engineer-cum-Senior Engineering Administration Executive"
        },
        {
            "id": "8bf900a0-8a77-11ea-9421-874ecca4439e",
            "name": "Creative Lead"
        },
        {
            "id": "8c111a70-6991-11ea-8189-05b3a7145678",
            "name": "Business Intelligence Manager"
        },
        {
            "id": "8c6c4060-6db0-11ea-ad46-7f2da12f70a0",
            "name": "Document Controller"
        },
        {
            "id": "8cab3bc0-6db0-11ea-bc4c-ad22725178f0",
            "name": "Senior Electrical Engineer (MEP)"
        },
        {
            "id": "8cac9e60-ee17-11ed-ab17-b9629febbee0",
            "name": "HR & Administration Executive"
        },
        {
            "id": "8cec32f0-6eca-11ed-ac9a-8f3fa5454bfa",
            "name": "Technician Grade-Ill"
        },
        {
            "id": "8cef8450-0551-11ee-9338-a7ca4f0dfa11",
            "name": "Strategic Business Director (Head of YHE Commerical )"
        },
        {
            "id": "8d2f2fc0-6db0-11ea-a72c-dd4613a352fc",
            "name": "Assistant Surveyor"
        },
        {
            "id": "8d64ca60-3d9e-11ea-909a-d3e4ea66afc5",
            "name": "Assistant Restaurant Manager (SIC)"
        },
        {
            "id": "8d663d30-218b-11ea-914a-c707f8bd1555",
            "name": "Kyay Oh Trainer"
        },
        {
            "id": "8d6e24d0-6db0-11ea-a321-2d3816e5e95a",
            "name": "Senior  C&S Engineer"
        },
        {
            "id": "8d7f5b50-218b-11ea-9ec7-21cec79ef507",
            "name": "Cold Trainer"
        },
        {
            "id": "8d849e20-ae1f-11eb-b366-878e5c693790",
            "name": "Accounts & Treasury Assistant"
        },
        {
            "id": "8d97e330-218b-11ea-9f11-c17a4303e7f7",
            "name": "Trainee Executive"
        },
        {
            "id": "8dc97de0-42a5-11ea-bb09-d96d396753bf",
            "name": "Staff Nurse"
        },
        {
            "id": "8dcafb40-218b-11ea-856e-35b9a92ae21f",
            "name": "Operation General Manager"
        },
        {
            "id": "8dddcae0-ea3b-11ed-a1e3-7140b3c7178e",
            "name": "Field HR Executive"
        },
        {
            "id": "8df4e1d0-42a5-11ea-8c1e-e13100759b6f",
            "name": "Asst: Operations Manager"
        },
        {
            "id": "8e1498c0-42a5-11ea-9e84-79747c816779",
            "name": "Talent and Training Manager"
        },
        {
            "id": "8e1a1ae0-b2dc-11eb-ac94-c5044ce53edb",
            "name": "Senior Manager Lower Myanmar Region"
        },
        {
            "id": "8e2b85f0-218b-11ea-8bb8-f78f36ced06a",
            "name": "BBQ Trainer"
        },
        {
            "id": "8e461340-aa67-11eb-93ec-4dc085e1270a",
            "name": "Rural Electrification Manager"
        },
        {
            "id": "8e46b700-218b-11ea-8694-9943f509ec9b",
            "name": "Operation Executive"
        },
        {
            "id": "8e59b240-7d1e-11ed-a139-4759d22cb853",
            "name": "Heavy Goods Vehicle"
        },
        {
            "id": "8e8e7960-6db0-11ea-a15b-154714542b8d",
            "name": "Assistant Planning Engineer"
        },
        {
            "id": "8e8f3b20-218b-11ea-9fb4-1f0dd1c5f429",
            "name": "Operation Manager"
        },
        {
            "id": "8ea74bb0-218b-11ea-aed3-b5bd480eade0",
            "name": "Chief Cook"
        },
        {
            "id": "8ecb3b70-7964-11ea-9908-53d73193860c",
            "name": "Assistant Warehouse Manager"
        },
        {
            "id": "8ecd7720-3b62-11eb-839a-bf361457b747",
            "name": "Head, Sales & Marketing"
        },
        {
            "id": "8f0df680-b0c6-11ec-8acc-cb4c0a1bab39",
            "name": "C&I Coordinator"
        },
        {
            "id": "8f20fc50-218b-11ea-8dba-45df437b0f48",
            "name": "Property Assistant"
        },
        {
            "id": "8f396560-218b-11ea-9fa3-11742a3cb0cf",
            "name": "Sr-Property Executive"
        },
        {
            "id": "8f68d040-7d1e-11ed-a7cc-6de41cc15af3",
            "name": "Light Goods Vehicel Driver"
        },
        {
            "id": "8f69b800-218b-11ea-9a60-7d2bce626eeb",
            "name": "Software Analyst"
        },
        {
            "id": "8f825100-218b-11ea-aadc-f565189592cd",
            "name": "Jr- IT Assistant"
        },
        {
            "id": "8f9ac7d0-218b-11ea-974e-ab7d30d63c75",
            "name": "Network Technician"
        },
        {
            "id": "8fcd7b60-1921-11ed-a2ba-81f710491bfe",
            "name": "Chinese Chef De Partie"
        },
        {
            "id": "8fd20a60-7548-11ed-8a13-7b617fdcba82",
            "name": "Site Liaison Officer"
        },
        {
            "id": "8fd9f6a0-cc2b-11ec-bb5a-a71d26572552",
            "name": "Admin Assistant Manager"
        },
        {
            "id": "8ff081c0-5393-11ea-84a8-95cd81781c39",
            "name": "SEO"
        },
        {
            "id": "90148d10-6db0-11ea-a997-e3e84ada95ea",
            "name": "Compliance & Approvals \nOfficer"
        },
        {
            "id": "901cee20-5393-11ea-9be7-07d9af9be082",
            "name": "Assistant Project Manager"
        },
        {
            "id": "902c6770-d7c2-11ea-b168-230a61025973",
            "name": "Chief Performance Officer"
        },
        {
            "id": "904888e0-218b-11ea-9bb0-25abdd8754aa",
            "name": "Team Member"
        },
        {
            "id": "90614280-218b-11ea-8028-4f804181a6f6",
            "name": "Supervisor"
        },
        {
            "id": "90644f30-5393-11ea-adfa-cfdf5889e906",
            "name": "Estate Manager"
        },
        {
            "id": "9075b4c0-1465-11ec-a810-5dd83d18be5f",
            "name": "Field Call Officer(MDY)"
        },
        {
            "id": "9086b200-5393-11ea-9457-4f120baf293e",
            "name": "Block Assistant"
        },
        {
            "id": "90aa4160-0034-11ee-bcfb-eb750e7aaa24",
            "name": "Sr. Technician"
        },
        {
            "id": "90aa99e0-5393-11ea-8bf5-dbf123a22051",
            "name": "HR & Admin- Head"
        },
        {
            "id": "915b3220-218b-11ea-a3e6-f10e3f9dfddd",
            "name": "Office Cleaner"
        },
        {
            "id": "9165a310-9aea-11eb-bb72-4de0c23e25a3",
            "name": "Legal Translator & Corporate Secretarial Officer"
        },
        {
            "id": "91747e40-218b-11ea-8f4d-61a5a64af4b9",
            "name": "Recruitment Specialist"
        },
        {
            "id": "918ef5a0-e70c-11ec-9e1e-f3cd7106724c",
            "name": "Sales Driver"
        },
        {
            "id": "91ef7860-eb99-11ea-9c62-994276c1ced6",
            "name": "Customer Relation Executive"
        },
        {
            "id": "91f2eaa0-218b-11ea-8553-f3665a4f8d93",
            "name": "Restaurant General Manager"
        },
        {
            "id": "91fd7f60-0a91-11ee-a599-25f0b2ed65e8",
            "name": "Assistant Credit Risk Manager"
        },
        {
            "id": "92399540-6db0-11ea-b454-57b9dc591543",
            "name": "Planning Engineer"
        },
        {
            "id": "9247b380-e596-11ed-bc9d-39cadf3e7c10",
            "name": "Network Lead"
        },
        {
            "id": "924ef0d0-0e85-11ee-861a-77073e6f5524",
            "name": "Skilled Labour\t\t"
        },
        {
            "id": "92a977e0-6db0-11ea-86da-f59051f6b5e2",
            "name": "Compliance, Environmental\n & Social Manager"
        },
        {
            "id": "92c54eb0-0670-11ee-85b7-133382738567",
            "name": "Senior Treasury Officer"
        },
        {
            "id": "92c5a060-f672-11eb-8d8b-5589e9dd2ae5",
            "name": "Lead Design Controller"
        },
        {
            "id": "932a1ff0-74af-11ec-8de6-5912c91bff4e",
            "name": "Manager - Front Office"
        },
        {
            "id": "93467bf0-20ee-11ec-9e8e-9347426d391a",
            "name": "Senior Manager Legal and Compliance"
        },
        {
            "id": "93546670-74af-11ec-8d22-1b4dafb74c10",
            "name": "Deputy Chief Executive Officer"
        },
        {
            "id": "937e45d0-74af-11ec-983e-57b1c4373431",
            "name": "Interim Chief Nursing Officer"
        },
        {
            "id": "93907d00-8ff8-11ed-be5d-275f123c9cf1",
            "name": "Jr. IOS Developer"
        },
        {
            "id": "93a81a30-74af-11ec-9007-6372ab20707b",
            "name": "Operations Manager - Supply Chain"
        },
        {
            "id": "93b6ba10-6db0-11ea-b8b5-0f26affeda0e",
            "name": "Lead Document Controller"
        },
        {
            "id": "93c2c630-5f50-11ea-b781-1d570287871f",
            "name": "Assistant Officer"
        },
        {
            "id": "93c5d520-f857-11ec-b1ef-355be480bff9",
            "name": "Head, Procurement & Program Management"
        },
        {
            "id": "93d1c660-74af-11ec-b0d0-f7bc5415d517",
            "name": "General Manager - Corporate Support Services"
        },
        {
            "id": "93f06a40-0290-11ed-8354-31fe4ccc64e3",
            "name": "Housekeeping Attendance"
        },
        {
            "id": "93f344d0-4e55-11ea-811d-1de66b4a1e26",
            "name": "Master Data & Business Intelligence Expert"
        },
        {
            "id": "9424d760-74af-11ec-ad8c-e148d4ca1eb2",
            "name": "General Manager - Finance"
        },
        {
            "id": "943bc010-778b-11ed-941d-6bb5d5bf6c9c",
            "name": "QHSE Engineer"
        },
        {
            "id": "944f45f0-74af-11ec-895e-55ce731bc2b7",
            "name": "Manager - People Development"
        },
        {
            "id": "9486e6d0-6db0-11ea-a797-7308f62fe0f4",
            "name": "Mechanical Inspector (MEP)"
        },
        {
            "id": "948d9720-74af-11ec-b10e-d7346422193a",
            "name": "General Manager - Quality Management"
        },
        {
            "id": "949f6f90-71d9-11eb-9d35-ed91294298bb",
            "name": "Pro Technician"
        },
        {
            "id": "94bd1500-74af-11ec-adb1-e9415054bef4",
            "name": "Interim Chief Communication Officer"
        },
        {
            "id": "94c06db0-7bd3-11eb-9967-2348ec7a9dd9",
            "name": "HOD "
        },
        {
            "id": "94c56f40-6db0-11ea-9824-c5923bf1354e",
            "name": "Architect "
        },
        {
            "id": "94df1320-7bd3-11eb-a2c5-8779fe755f9e",
            "name": "Employe"
        },
        {
            "id": "94e86b20-74af-11ec-b30a-db9df6aa7750",
            "name": "Chief Experience Officer"
        },
        {
            "id": "94f98b70-eb99-11ea-b4b0-f5de68cf7332",
            "name": "Assistant Compliance & Approval / Social Manager"
        },
        {
            "id": "95087530-4259-11ee-b24f-c356ecc5e997",
            "name": "Marketing & Operating Executive"
        },
        {
            "id": "9512c470-74af-11ec-9a84-791981f5c536",
            "name": "Manager - People Management"
        },
        {
            "id": "953cae90-bed3-11ec-a70e-0d0089702770",
            "name": "Supply Chain Junior Executive"
        },
        {
            "id": "953cbce0-6db0-11ea-bcb7-61427036e71d",
            "name": "Senior Mechnical Engineer (MEP)"
        },
        {
            "id": "953ec980-74af-11ec-b771-a55617e933ed",
            "name": "Chief Medical Officer"
        },
        {
            "id": "9543ca90-d07e-11ea-9b1e-8d4800eb750d",
            "name": "Senior Service Desk"
        },
        {
            "id": "956bd310-74af-11ec-89ce-e9e60afed689",
            "name": "Chief Corporate Support Services Officer"
        },
        {
            "id": "956cb0f0-bed3-11ec-a126-95d3c1f07590",
            "name": "Sales Admin Executive"
        },
        {
            "id": "9598d4a0-74af-11ec-b20a-b1b4379e0d60",
            "name": "Interim Chief Technology Officer"
        },
        {
            "id": "95a64140-eb99-11ea-8f6f-fdc134879527",
            "name": "Logistics Services Manager"
        },
        {
            "id": "95c47df0-74af-11ec-ac40-23e6bd613af7",
            "name": "Operations Manager - Ancillary Services"
        },
        {
            "id": "95ea04c0-58e2-11eb-b0bd-f97c48c96da6",
            "name": "Jr-Kyay Oh"
        },
        {
            "id": "95eb8a20-58dd-11eb-b18e-575fefb2f83a",
            "name": "Wok"
        },
        {
            "id": "95eecc20-74af-11ec-92fa-2dde883e6fed",
            "name": "Interim Chief Operating Officer - Hospitals & Clinics Operations"
        },
        {
            "id": "9605fde0-58dd-11eb-9a10-856ca0d2f89f",
            "name": "Area Head Waitress"
        },
        {
            "id": "960e0d60-5946-11eb-ae94-bfbcb08f5768",
            "name": "Trainee Supervisor"
        },
        {
            "id": "9619b5a0-74af-11ec-9444-dd7be713f3b1",
            "name": "Operations Manager - TWC Clinic"
        },
        {
            "id": "96207180-58dd-11eb-b65d-15c8789c488f",
            "name": "Jr Kyay Oh"
        },
        {
            "id": "96271660-25e0-11eb-9410-35e797150f8a",
            "name": "Business Development Manager"
        },
        {
            "id": "96382570-f2ca-11ec-ac14-b92a870c5bfc",
            "name": "Assistant Security Officer"
        },
        {
            "id": "964445d0-5946-11eb-82bc-2fef251d3880",
            "name": "Asst;Manager"
        },
        {
            "id": "96510b20-6db0-11ea-88c9-4b18e8c6a8f5",
            "name": "Site MEP Engineer"
        },
        {
            "id": "9655d070-ea3b-11ed-a655-4bff81c21996",
            "name": "Head of Finance & Head of Strategy"
        },
        {
            "id": "96624660-5888-11ea-8a6a-556d420521bd",
            "name": "Senior Recruitment Executive"
        },
        {
            "id": "966f7d60-74af-11ec-a67d-ed6cc0d31402",
            "name": "Manager - Imaging"
        },
        {
            "id": "968b0120-58dd-11eb-8a63-4537f3ab6842",
            "name": "Trainee Chinese"
        },
        {
            "id": "969ae190-74af-11ec-8aa9-1fa760719ad7",
            "name": "Manager - Laboratory"
        },
        {
            "id": "96b5d280-5888-11ea-baa3-0dfe92343ca2",
            "name": "Admin & HR Executive"
        },
        {
            "id": "96c80a20-74af-11ec-8d2c-69fc8f0e9073",
            "name": "Manager - Medical Record"
        },
        {
            "id": "96d62640-6db0-11ea-9386-f9b0f371c387",
            "name": "Quantity Surveyor (ID)"
        },
        {
            "id": "96dc5400-5888-11ea-afb2-f35d80145264",
            "name": "Training Executive"
        },
        {
            "id": "96f2fcc0-74af-11ec-8c20-cbd4af65e90b",
            "name": "Junior Registrar"
        },
        {
            "id": "96f46de0-58dd-11eb-b330-259a67b25440",
            "name": "T- Kyay Oh"
        },
        {
            "id": "96f6afc0-77c2-11ec-af1a-fff378769f29",
            "name": "Interim HR Manager"
        },
        {
            "id": "96fd6a40-98a6-11ed-977f-a3e7570422dc",
            "name": "Strategy and Finance Assosiate"
        },
        {
            "id": "9702f750-5888-11ea-9457-2d9f3b6f0934",
            "name": "Fleet & Distribution \nSupervisor"
        },
        {
            "id": "97153bc0-6db0-11ea-b5b9-c9a33124234f",
            "name": "Senior Document Controller"
        },
        {
            "id": "971cc5b0-74af-11ec-b69d-716a141e7cfb",
            "name": "Supervisor - Mini Mart"
        },
        {
            "id": "97225980-77c2-11ec-9f2c-c572a90c1c1a",
            "name": "Manager - Finance"
        },
        {
            "id": "97229f20-480c-11ee-9e00-9d47ff9b313e",
            "name": "Project Coordinator & Documents Controller"
        },
        {
            "id": "97283ec0-b93d-11eb-9070-dbdef45a8a3e",
            "name": "Sales and Leasing Director"
        },
        {
            "id": "97295e60-dd9a-11ec-801f-83d1fdf89ac7",
            "name": "General Labour"
        },
        {
            "id": "97408660-98a6-11ed-8dcd-7b5954caefde",
            "name": "Jr. Site Reliability Engineer"
        },
        {
            "id": "9745dbc0-74af-11ec-a5d2-a51476a9ce87",
            "name": "Operations Manager - NDC Clinic"
        },
        {
            "id": "97700880-74af-11ec-9369-83277ae6b7fa",
            "name": "Nursing Executive - CSSD"
        },
        {
            "id": "979a5560-74af-11ec-bc73-6f6fdc95728e",
            "name": "Nursing Executive - HD"
        },
        {
            "id": "979bb940-5888-11ea-a8cc-dd4e88242c8a",
            "name": "Inventory Manager"
        },
        {
            "id": "97aeb840-58dd-11eb-8fc2-5388b00a5940",
            "name": "Jr-Coffee Master"
        },
        {
            "id": "97c42a90-74af-11ec-aa35-f1beb3be543d",
            "name": "Nursing Executive - OT"
        },
        {
            "id": "97cd1bb0-6ddb-11ec-a3f0-13488d9ffbeb",
            "name": "Strategy Associate"
        },
        {
            "id": "97d185a0-6db0-11ea-8a37-f325a58709cc",
            "name": "Electrical Inspector "
        },
        {
            "id": "97ede8c0-74af-11ec-b9d0-47871190a28d",
            "name": "Assistant Manager - Pharmacy"
        },
        {
            "id": "97fb2080-331b-11ed-acf6-25f3e2854473",
            "name": "Senior iOS Developer"
        },
        {
            "id": "98155d60-6db0-11ea-ae13-fba4831f07ce",
            "name": "MEP Site Engineer (Electrical)"
        },
        {
            "id": "983adc20-9042-11ea-ab08-d532a10bf5ae",
            "name": "Head of Product,Quality & Sustainability"
        },
        {
            "id": "983d4360-49bd-11eb-ae91-63921774fbfd",
            "name": "Showroom Supervisor"
        },
        {
            "id": "98419930-74af-11ec-bd2c-f9866eb19fde",
            "name": "Manager - Rehabilitation"
        },
        {
            "id": "98615200-6db0-11ea-a715-d785f2daf51f",
            "name": "Interior Design Coordinator"
        },
        {
            "id": "98978ae0-2299-11ed-b39e-155aea1afc57",
            "name": "Senior Warehouse & Logistics Manager"
        },
        {
            "id": "98d2c930-9042-11ea-920e-79b32e13e8d9",
            "name": "System Executive"
        },
        {
            "id": "9903a8f0-23d8-11eb-b6e1-f7921e7998f0",
            "name": "Digital Marketing Specialist"
        },
        {
            "id": "993787e0-6db0-11ea-a644-797379eb693f",
            "name": "Junior Architect"
        },
        {
            "id": "9942d630-5f50-11ea-81f7-4f27a542ae96",
            "name": "Supervisor (fire)"
        },
        {
            "id": "99477910-6e50-11ea-a343-350a24bf981c",
            "name": "Accessories and Apparel Sales Executive"
        },
        {
            "id": "99896090-aba0-11ea-8ca9-9fdc8d06d6b6",
            "name": "Parts Sales Engineer"
        },
        {
            "id": "99a205e0-7fff-11ea-be15-571da3e77686",
            "name": "Chief Commercial Officer"
        },
        {
            "id": "99b42270-6db0-11ea-a7c6-73ff4a81ba98",
            "name": "IT Technican"
        },
        {
            "id": "99b4e020-b3fa-11ec-900a-750aa3b450d8",
            "name": "SCM Senior Executive"
        },
        {
            "id": "99d9f860-f6c2-11ec-ba83-bbb892fbd027",
            "name": "Senior Human Resources Executive"
        },
        {
            "id": "99eb2ab0-07d3-11ed-a67b-2d8c6e7b8287",
            "name": "Workshop Controller"
        },
        {
            "id": "99f039f0-45ed-11ed-81da-715b28675344",
            "name": "Project Supervisor"
        },
        {
            "id": "99fc8fb0-23fc-11eb-9e73-0b909e60a710",
            "name": " Assistant Site Engineer(ID & Finishing) "
        },
        {
            "id": "9a35de20-07d3-11ed-a47c-450bd8a04f4a",
            "name": "CRM Executive"
        },
        {
            "id": "9a4d5060-0bee-11ed-9e36-5377b6f0a907",
            "name": "Manager – Commercial & Corporate Affairs"
        },
        {
            "id": "9aac7980-52bc-11ee-80d2-ab208f6dbe72",
            "name": "Senior Site Engineer (ID)"
        },
        {
            "id": "9ad47c40-829d-11ed-8d89-37c9874f3dc9",
            "name": " Assistant Cashier"
        },
        {
            "id": "9b0b66e0-2ef7-11eb-8d8d-d97f5498f6f9",
            "name": "Assistant Site Engineer (ID & Finishing)"
        },
        {
            "id": "9b130d60-5ebe-11eb-9111-edb704b390ec",
            "name": "Payroll"
        },
        {
            "id": "9b28c6b0-c60e-11ec-ac67-f186237d8969",
            "name": "Senior 3D Visualizer"
        },
        {
            "id": "9b297ae0-6db0-11ea-9443-417ba10e6ab6",
            "name": "Desing Project Manager"
        },
        {
            "id": "9b3277c0-5ebe-11eb-a560-a1c550a0309f",
            "name": "Admin (Without Payroll)"
        },
        {
            "id": "9b4e5a70-5ebe-11eb-9b6b-772f7f878ca5",
            "name": "Admin (with payroll) "
        },
        {
            "id": "9b866760-49bd-11eb-9fe9-818f3388d5d0",
            "name": "Laundry & PA"
        },
        {
            "id": "9b881260-4029-11eb-8932-911328a7e77b",
            "name": "Change Management Coordinator"
        },
        {
            "id": "9bb275b0-6db0-11ea-a400-c304366f15bb",
            "name": "Assistant Acountant"
        },
        {
            "id": "9bf22e10-6db0-11ea-a33a-d9c250b17b79",
            "name": "Architectural Technician"
        },
        {
            "id": "9c557500-1307-11ed-a72a-9397d40b40b3",
            "name": "Assistant Banquet Manager"
        },
        {
            "id": "9c7438d0-6db0-11ea-994a-7b862a972ae7",
            "name": "Senior Project Architect"
        },
        {
            "id": "9c75fb60-1314-11ec-9d51-eb61b6b8d41b",
            "name": "QHSE coordinator & Quality Engineer"
        },
        {
            "id": "9cb4b0c0-6db0-11ea-89a8-ff0e50384efd",
            "name": "Architectural Coordinator"
        },
        {
            "id": "9cb78eb0-5a0d-11eb-920d-41e1e456c4e4",
            "name": "Assistant to the CEO & Government Relations Manager"
        },
        {
            "id": "9ceff840-056d-11ec-a760-bf4044007e6c",
            "name": "Warehouse Operation"
        },
        {
            "id": "9cfa4a50-6db0-11ea-8627-652ff1cb1a2e",
            "name": "Senior Architectural Technician"
        },
        {
            "id": "9d1d4170-0556-11ee-8bf0-0928ade64e8f",
            "name": "Chief Financial Controller (Head of YHE Operation)"
        },
        {
            "id": "9d4496f0-c460-11ec-99fd-1f5b2877a5e4",
            "name": "GM Customer Solutions / Head of Carshare"
        },
        {
            "id": "9d4f3a70-b3f9-11ec-8a7d-ebc8cf61e1a1",
            "name": "Business Development Senior Associate"
        },
        {
            "id": "9d5605a0-2fcb-11ec-b388-918164877af6",
            "name": "P&E Senior Foreman"
        },
        {
            "id": "9d584bd0-1bc7-11ee-ba09-0134b0d86142",
            "name": "Parts Supervisor (Procurement)"
        },
        {
            "id": "9d59e400-ae38-11ea-9e23-2933dd3b71a9",
            "name": "Head of QHSE"
        },
        {
            "id": "9d5a4650-ccf7-11ec-ba65-fd26263672a4",
            "name": "Spare Part Manager"
        },
        {
            "id": "9d7313b0-c18d-11ea-8e7e-f13620d1e16f",
            "name": "Key Account Executive"
        },
        {
            "id": "9d857cd0-6db0-11ea-a135-05423d764701",
            "name": "Visualizer / Architectural Technician"
        },
        {
            "id": "9d8cd930-71d9-11eb-88e1-dd2624460467",
            "name": "Body Technician"
        },
        {
            "id": "9d9b0900-5f4e-11ea-86b0-f5cd692b0951",
            "name": "Country Manager"
        },
        {
            "id": "9da33c80-ebf9-11ea-9980-09bc7c91aaef",
            "name": "Surveilance Manager"
        },
        {
            "id": "9da7bd40-5060-11ee-9fcd-9126c5fb2878",
            "name": "Farm Supervisor"
        },
        {
            "id": "9db465c0-0512-11ee-bfdf-75d2050dffc6",
            "name": "Collection Manager"
        },
        {
            "id": "9dc9ab10-5f4e-11ea-a27f-0386ddfc1052",
            "name": "HR Supervisor"
        },
        {
            "id": "9dcc4520-5f4f-11ea-81c0-01569c8c7c3d",
            "name": "Country Club & Residence Manager"
        },
        {
            "id": "9de7ede0-8599-11ed-9d0e-d79804b22f0a",
            "name": "Senior Landscaping Officer"
        },
        {
            "id": "9e0fef70-1003-11ee-9bff-3b674ac892ee",
            "name": "Sales & Reservation Assistant"
        },
        {
            "id": "9e251270-5f4e-11ea-8902-5343a4aa1e54",
            "name": "PA to Country Manager"
        },
        {
            "id": "9e4340a0-5f4f-11ea-973c-910c29581a54",
            "name": "Senior Landscaping Manager"
        },
        {
            "id": "9e45c220-6db0-11ea-8499-cd198361772d",
            "name": "Junior Structural Engineer"
        },
        {
            "id": "9e508c80-5f4e-11ea-8759-fdbc398a11f6",
            "name": "Adventure Specialist"
        },
        {
            "id": "9e56b360-268a-11eb-a2fc-8d050f2d27ad",
            "name": "Purchasing Officer"
        },
        {
            "id": "9e67a3e0-6872-11ec-ab4b-a58e31f4ca1e",
            "name": "Resales Marketing Coordinator"
        },
        {
            "id": "9e7d1250-5f4e-11ea-acd4-b1e49a2fd695",
            "name": "Product Assistant"
        },
        {
            "id": "9e7e1790-5f50-11ea-a055-73e29deb9831",
            "name": "Assistant Supervisor (Fire)"
        },
        {
            "id": "9e996920-c18d-11ea-8fb2-21ed1b235d1d",
            "name": "Asst; Supervisor"
        },
        {
            "id": "9e9cbef0-6101-11ee-ab0d-d9b4bad1f2c1",
            "name": "O&M Manager"
        },
        {
            "id": "9ea6bc90-8390-11ee-979a-3f06915ad427",
            "name": "Servicer Engineer"
        },
        {
            "id": "9ebc0080-5bb9-11eb-86b8-e94115fa00bc",
            "name": "NOC Manager"
        },
        {
            "id": "9ed29bc0-5f4e-11ea-8899-a1c009c1e6a0",
            "name": "Sales Manager (French)"
        },
        {
            "id": "9f038c40-6db0-11ea-9e29-d72e1f6100df",
            "name": "Office & HR Manager"
        },
        {
            "id": "9f269740-5f4e-11ea-991a-0d9dfba8f964",
            "name": "Sales Consultant"
        },
        {
            "id": "9f29f570-5f4f-11ea-b7c3-39e2c4b757dc",
            "name": "Senior Supervisor"
        },
        {
            "id": "9f4fc3c0-5393-11ea-b6a5-570aa338b479",
            "name": "Block Supervisor"
        },
        {
            "id": "9f72a440-066e-11ee-8346-3ffb8361996c",
            "name": "Facilities Manager"
        },
        {
            "id": "9f7a51c0-5f4e-11ea-a198-9fea81f3c7ec",
            "name": " Sales Execuutive"
        },
        {
            "id": "9f942b60-5f4f-11ea-b009-81f24d12a3a8",
            "name": "F & B Manager"
        },
        {
            "id": "9f950a60-5393-11ea-97b9-4d6c17360f87",
            "name": "Site Manager"
        },
        {
            "id": "9fdb4100-5393-11ea-96a7-0bae9d47f87d",
            "name": "Land Surveyor"
        },
        {
            "id": "9ffa15b0-5f4e-11ea-ace5-936041a7452b",
            "name": "Inbound Manager"
        },
        {
            "id": "a0164fe0-6db0-11ea-8d14-03565f67a14e",
            "name": "Investment Manager"
        },
        {
            "id": "a0257530-5f4e-11ea-bca0-0da8ab898985",
            "name": "Reservation Executive"
        },
        {
            "id": "a04f17c0-5f4e-11ea-ae17-77253fedabf3",
            "name": "Flight Operation Executive"
        },
        {
            "id": "a0511b80-b2fc-11eb-981b-5181b3d7e97f",
            "name": "IT and HR Manager"
        },
        {
            "id": "a0580c90-9362-11ed-9a91-b99bb498696c",
            "name": "CFO, Yoma Land"
        },
        {
            "id": "a0731900-5f4f-11ea-b380-f51715330ab3",
            "name": "Assistant Admin Manager"
        },
        {
            "id": "a08725c0-c6ee-11ed-abdb-09c77814ce3e",
            "name": "Junior Servicer Engineer"
        },
        {
            "id": "a088db80-5393-11ea-bf0b-9dfa600d081e",
            "name": "Reception Clerk"
        },
        {
            "id": "a0a1be20-5f4e-11ea-ba8c-153f847925ca",
            "name": "C/D/S Manager"
        },
        {
            "id": "a0ab5a10-5393-11ea-9b33-616db05a1e3d",
            "name": "Permanent Labour"
        },
        {
            "id": "a0cd43b0-5f4e-11ea-8301-5924df8f4c90",
            "name": "Contractin Administrator"
        },
        {
            "id": "a0ddd460-5f4f-11ea-a8f6-715d9aac4460",
            "name": "Commercial Property Manager"
        },
        {
            "id": "a0fba0f0-5f4e-11ea-85aa-3d4506680a65",
            "name": "IT Engineer"
        },
        {
            "id": "a12531c0-79c4-11ed-9000-eb6555e800ee",
            "name": "Junior Purchasing Executive"
        },
        {
            "id": "a1273920-5f4e-11ea-aea3-f93a7b591d30",
            "name": "Senior Reservation Executive"
        },
        {
            "id": "a148f7d0-3545-11ee-9a63-8756444c514c",
            "name": "Junior Android Developer"
        },
        {
            "id": "a14f47e0-5f4f-11ea-8862-2bd08db4a507",
            "name": "Property Officer"
        },
        {
            "id": "a178d040-5393-11ea-87dd-b366731209b6",
            "name": "Techincal Assist"
        },
        {
            "id": "a1794790-588b-11ea-bbf9-d1190c8538da",
            "name": "PGY-1"
        },
        {
            "id": "a17e9730-5f4e-11ea-bc3f-4d58ec78e763",
            "name": "Receiving & Store Supervisor"
        },
        {
            "id": "a180a230-432e-11ea-a3ba-09d208e40a8e",
            "name": "Manager - Responsible Business"
        },
        {
            "id": "a1a08560-588b-11ea-a7fc-1557cabe23ea",
            "name": "PGY-2"
        },
        {
            "id": "a1ab2870-2b65-11ee-b680-b3e307454a27",
            "name": "Junior BI Analyst"
        },
        {
            "id": "a1c79380-588b-11ea-9750-0b707de52fb2",
            "name": "SMO-1"
        },
        {
            "id": "a1d93980-af2c-11ed-9a05-5b7fb48a3cd6",
            "name": "Senior Web Designer"
        },
        {
            "id": "a1eed8b0-ccf8-11ec-810b-63b7021cbea3",
            "name": "Assistant Warehouse Manager (Whole goods)"
        },
        {
            "id": "a1fcaa30-757a-11ed-ab4a-af65a1ab1e41",
            "name": "CRM Trainee"
        },
        {
            "id": "a2074150-5f4e-11ea-b611-79da6fdbc9ac",
            "name": "HK Manager"
        },
        {
            "id": "a2117cc0-aad7-11ea-b392-45aacb43cb97",
            "name": "Group Head of HR"
        },
        {
            "id": "a236c7d0-5f4e-11ea-9da9-dd86d1d7d07f",
            "name": "Boat Skipper"
        },
        {
            "id": "a26459f0-5f4e-11ea-992b-79e60abf4d68",
            "name": "Project Manager"
        },
        {
            "id": "a2658a50-588b-11ea-bfcf-7750ee3290df",
            "name": "SMO-2"
        },
        {
            "id": "a2dfdc10-5f4e-11ea-a318-fbbf21ee353e",
            "name": "Asst. Front Office Manager"
        },
        {
            "id": "a2e1f4b0-8849-11ee-8bad-c506f683357e",
            "name": "Senior Purchasing Officer"
        },
        {
            "id": "a3162230-5f4e-11ea-85ec-95fcc203bd3b",
            "name": "Securtiy Supervisor"
        },
        {
            "id": "a31fdf30-4ee9-11ea-9165-3d201adef72e",
            "name": "Deputy General Manager"
        },
        {
            "id": "a33b4880-5f4f-11ea-9731-a5cfbe908967",
            "name": "Estate Services and Quality Manager"
        },
        {
            "id": "a35107c0-5f4e-11ea-8ab0-0166f9cbceb9",
            "name": "Hotel Manager"
        },
        {
            "id": "a3609da0-f339-11ea-86f3-836c6f2e7ea6",
            "name": "Admin & HR Coordinator"
        },
        {
            "id": "a366b170-4c91-11ee-ad10-4978fbe985c3",
            "name": "Civil & Structural Manager"
        },
        {
            "id": "a3846890-4ee9-11ea-b9c3-6522e7154507",
            "name": "Remarketing Manager"
        },
        {
            "id": "a38c4c70-5f4e-11ea-b2ee-eb8118049623",
            "name": "HR Execuritve"
        },
        {
            "id": "a3a60740-4ee9-11ea-8a6c-a111663e156f",
            "name": "Head Of Operation"
        },
        {
            "id": "a3c83460-4ee9-11ea-b536-cb4482dfa107",
            "name": "Senior Customer Service Representative"
        },
        {
            "id": "a3cb5f10-5f4e-11ea-8b6f-059754d53cd0",
            "name": "Sir.Accountant"
        },
        {
            "id": "a3e8adc0-c18d-11ea-98cb-75835d34b925",
            "name": "Senior Guard"
        },
        {
            "id": "a3ebf1b0-4ee9-11ea-aa60-c1bf5449d67c",
            "name": "Insurance & Claim Manager"
        },
        {
            "id": "a3fb49f0-ebf9-11ea-92d9-5bde2a14a150",
            "name": "HR Executive Data Analysis"
        },
        {
            "id": "a407a710-5f4e-11ea-8a45-a797f1133d36",
            "name": "Front Office Manager"
        },
        {
            "id": "a4094ba0-bc2d-11ed-bba0-637357f85836",
            "name": "Quantity Surveyor\t"
        },
        {
            "id": "a40d7100-4ee9-11ea-a53a-df903094dcd6",
            "name": "Customer Service Representative"
        },
        {
            "id": "a4319000-ab73-11ed-ae6b-4ff371d48f0a",
            "name": "Inventory Controller (Units)"
        },
        {
            "id": "a458c300-4ee9-11ea-ad60-3703ec61a69c",
            "name": "Fleet Maintenance Controller"
        },
        {
            "id": "a47cb1b0-5f4e-11ea-a04c-4db1b65a3382",
            "name": "Sir.Chef De Party"
        },
        {
            "id": "a483cef0-4ee9-11ea-ae59-ab33a0927584",
            "name": "Claim Specialist"
        },
        {
            "id": "a4a86fc0-3d45-11ed-8298-1b2a85198529",
            "name": "HR, Admin and Cashier Officer"
        },
        {
            "id": "a4b00c40-5f4e-11ea-8af7-972b9c0c6961",
            "name": "HK Supervisor"
        },
        {
            "id": "a4b1b4f0-8758-11ed-bf98-bb73c52461f0",
            "name": "Assistant Finance & Accounting Manager"
        },
        {
            "id": "a4b71760-4ee9-11ea-8004-952885fad06d",
            "name": "Dealer Sales Executive"
        },
        {
            "id": "a4c626e0-5f4f-11ea-a4ea-4f929ed2b5f2",
            "name": "Senior Human Resources Manager"
        },
        {
            "id": "a4dfb080-4ee9-11ea-96b8-17b64f2c9d66",
            "name": "National Sales Manager"
        },
        {
            "id": "a4e5fbc0-5f4e-11ea-85b4-191c2d9a1308",
            "name": "M&E Supervisor"
        },
        {
            "id": "a4f26d50-588b-11ea-9372-f3bc51ae302a",
            "name": "SNO-1"
        },
        {
            "id": "a4f50420-3d45-11ed-b985-7129800f4ad0",
            "name": "Senior Sales Engineer"
        },
        {
            "id": "a5045e50-4ee9-11ea-928a-6f1c1bcb81a1",
            "name": "Credit Controller"
        },
        {
            "id": "a544a4e0-5f50-11ea-9ca3-0319b1c70f2d",
            "name": "Chief Security Officer"
        },
        {
            "id": "a54d7800-5f4e-11ea-b12b-07c1643cc219",
            "name": "Chief Technicien"
        },
        {
            "id": "a5539a60-3d45-11ed-94bf-07a29e9ed766",
            "name": "Operation Representative"
        },
        {
            "id": "a55a2fb0-4ee9-11ea-85c4-97a6839d8cae",
            "name": "Account Analysis"
        },
        {
            "id": "a5872120-5f4e-11ea-8bfe-6f5382f2307c",
            "name": "H.K Manager"
        },
        {
            "id": "a5bb97c0-4ee9-11ea-8991-8b5f876300a9",
            "name": "Regional Manager"
        },
        {
            "id": "a5bf0720-5f4e-11ea-8bd6-db4bc53da84b",
            "name": "Assistant Food & Beverage Mng"
        },
        {
            "id": "a5dab510-7377-11ec-b5ec-377da1247357",
            "name": "HR Executive (HR Operations)"
        },
        {
            "id": "a5e47f50-4ee9-11ea-b17d-7d585593c3fa",
            "name": "Head of Sales & Marketing"
        },
        {
            "id": "a5e6b190-2a4d-11ec-8563-6756276b7c52",
            "name": "Event & Account Manager"
        },
        {
            "id": "a6007110-5f4f-11ea-81e2-b75225a061c8",
            "name": "Graphic Designer & Marketing Coordinator"
        },
        {
            "id": "a60c0680-4ee9-11ea-bfc6-c373071662fb",
            "name": "Customer Service Representative (Carshare)"
        },
        {
            "id": "a62cf180-4ee9-11ea-a8c5-593f434f0d7f",
            "name": "Customer Serivice Representative"
        },
        {
            "id": "a6329c50-5f4e-11ea-91e1-a7444b74c223",
            "name": "Ass :Finance Mng"
        },
        {
            "id": "a64dc4d0-4ee9-11ea-bb2a-379badb1d00c",
            "name": "Training & HR Manager"
        },
        {
            "id": "a64f76b0-5f50-11ea-a910-3fa06e728269",
            "name": "Assistant Chief Security Officer"
        },
        {
            "id": "a65289c0-6db6-11ea-885b-cdf0af90b9b1",
            "name": "Senior Surveyor "
        },
        {
            "id": "a679e960-5f4f-11ea-8539-cb41a54b6b2e",
            "name": "Marketing and Communication Manager"
        },
        {
            "id": "a6d01b90-4ee9-11ea-a8d9-3b0e16a63215",
            "name": "Heavy Fleet Equipment Manager "
        },
        {
            "id": "a6dee180-5f4e-11ea-bcc0-dddb8a1e597e",
            "name": "Operations Assistant Manager"
        },
        {
            "id": "a6e4e650-5f4f-11ea-b598-d7ea587bb50c",
            "name": "Marketing and Communication Executive"
        },
        {
            "id": "a6fb98c0-4ee9-11ea-8942-0b8b911f3515",
            "name": "Fleet Control Manager"
        },
        {
            "id": "a712c280-6db6-11ea-92f1-37ee6977c3b6",
            "name": "Survey Helper"
        },
        {
            "id": "a7150800-5f4e-11ea-b17a-41c859669e70",
            "name": "Operations Executive"
        },
        {
            "id": "a74ade30-5f4e-11ea-aa88-97871e0cd1ba",
            "name": "Manager(HR,Admin)"
        },
        {
            "id": "a774edd0-5f4e-11ea-a69e-21e2672ad9f5",
            "name": "Reservations Senior  Executive"
        },
        {
            "id": "a786f9e0-4ee9-11ea-8dfe-311f8a5525dc",
            "name": "Assistant HR/ Admin"
        },
        {
            "id": "a7a9b530-4ee9-11ea-b2c7-33157a4944d6",
            "name": "Branch Manager"
        },
        {
            "id": "a7b1f3f0-588b-11ea-9788-9f33eeba5f41",
            "name": "Sr. Midwife "
        },
        {
            "id": "a7c9e350-5f4e-11ea-bf82-990c9aed93b7",
            "name": "Reservation Jr Executive"
        },
        {
            "id": "a7d37430-6db6-11ea-b454-ad03187cf627",
            "name": "Senior Structure CAD & Site Engineer"
        },
        {
            "id": "a7eaebe0-4ee9-11ea-821c-391cc3826693",
            "name": "Senior Customer Service Representative (Carshare)"
        },
        {
            "id": "a7f38050-5f4e-11ea-97b4-cb74c70b6364",
            "name": "HR junior Executive"
        },
        {
            "id": "a80b8350-4ee9-11ea-8083-1dbdcc8cd179",
            "name": "Head of Credit "
        },
        {
            "id": "a8270870-e336-11ed-9052-893c17b00a55",
            "name": "Senior Merchant Support Executive"
        },
        {
            "id": "a82c5d60-4ee9-11ea-985f-f9d3ec8ce159",
            "name": "Assistant Mechanic"
        },
        {
            "id": "a84d18e0-4ee9-11ea-b992-1ff3f98cd05c",
            "name": "Maintenance Coordinator"
        },
        {
            "id": "a8712eb0-22d9-11ed-8cdc-f3f966da7230",
            "name": "Junior Accountant (Account Payable)"
        },
        {
            "id": "a893ef90-4ee9-11ea-a7a4-833a23a32d09",
            "name": "Lead Mobile Mechanic"
        },
        {
            "id": "a89e9430-5f4f-11ea-9d8f-fd76c3349e4e",
            "name": "Landscaping Manager"
        },
        {
            "id": "a8a1bea0-5f4e-11ea-99fb-651fa6a422fd",
            "name": "Asst.Branch Manager"
        },
        {
            "id": "a8b4c3c0-4ee9-11ea-b7a5-a9a72b7cdae5",
            "name": "Mobile Mechanic"
        },
        {
            "id": "a8cba7a0-5f4e-11ea-ab10-ada8b40cae72",
            "name": "Sales Desk Manager"
        },
        {
            "id": "a8d5a4c0-4ee9-11ea-8db4-9720ab61c2e3",
            "name": "Assistant Tyre Specialist"
        },
        {
            "id": "a8e410a0-67e2-11ee-b73b-7b5f060e5ba9",
            "name": "Assistant Customer Service Manager"
        },
        {
            "id": "a8eb6f30-588b-11ea-b076-83a2c9c72a3f",
            "name": "Sr. Staff Nurse"
        },
        {
            "id": "a8f754c0-5f4e-11ea-be53-cb60767e6f7c",
            "name": "Field Manager-2"
        },
        {
            "id": "a9213aa0-5f4e-11ea-97a2-ddb5371fa2a7",
            "name": "Senior Sales & Mkt. Executive"
        },
        {
            "id": "a94bf7e0-5f4e-11ea-8319-25ab73dd37cc",
            "name": "Asst, Operation Manager"
        },
        {
            "id": "a957b4f0-42a5-11ea-95f4-95c5971d83f0",
            "name": "Aesthetic & Dematology Reg"
        },
        {
            "id": "a9635c70-588b-11ea-948c-1f7089bffa68",
            "name": "Staff Nurse (Part Time)"
        },
        {
            "id": "a9760570-5f4e-11ea-bcbf-3b46a432ee72",
            "name": "Asst Office Supervisor"
        },
        {
            "id": "a976cc90-4ee9-11ea-9de1-b77a63367f7b",
            "name": "Customer Service Representative (Lashio)"
        },
        {
            "id": "a99e61a0-42a5-11ea-86f2-192f36be7e8e",
            "name": "Resident Medical Officer"
        },
        {
            "id": "a9a08a30-5f4e-11ea-bf52-cf778f01129c",
            "name": "Cluster Manager"
        },
        {
            "id": "a9bca530-42a5-11ea-9ee1-6d88de27dae9",
            "name": "PGY 2"
        },
        {
            "id": "a9cd13a0-5f4e-11ea-8f10-f11cfb62aa9f",
            "name": "Sous Chef "
        },
        {
            "id": "a9d649a0-0671-11ee-ba2c-c9c88508c273",
            "name": "Reception Supervisor"
        },
        {
            "id": "a9dabcc0-42a5-11ea-a950-4190be8001fc",
            "name": "SMO 2"
        },
        {
            "id": "a9e0dd70-4ee9-11ea-8db2-01dc18db6c52",
            "name": "Hiker"
        },
        {
            "id": "a9e18270-a59c-11ec-ba25-67928086e99f",
            "name": "Sales Staff"
        },
        {
            "id": "a9f89d80-42a5-11ea-a3cb-1314bd3b8d0a",
            "name": "SMO"
        },
        {
            "id": "a9fa1f80-5f4e-11ea-afdf-4f5a5ee7b642",
            "name": "Assisttant HR Manager"
        },
        {
            "id": "aa2633a0-5f4e-11ea-9f66-7510008a4a2b",
            "name": "Sales Associate "
        },
        {
            "id": "aa2d0b10-a59c-11ec-8810-cf6bbaed1a05",
            "name": "Guest Service Staff"
        },
        {
            "id": "aa3bd7d0-984b-11ec-9b9e-83439f835b54",
            "name": "Service & Product Support Manager"
        },
        {
            "id": "aa518bc0-42a5-11ea-a178-9555948a7a49",
            "name": "Front Office Officer"
        },
        {
            "id": "aa64e9b0-4ee9-11ea-b68d-93cf04dc8749",
            "name": "Car Share System Operator"
        },
        {
            "id": "aa6f9c50-42a5-11ea-bf5c-8f1ab7d896ec",
            "name": "Radiographer 1"
        },
        {
            "id": "aa7df860-5f4e-11ea-9bf2-17735922cd2a",
            "name": "StoreKeeper"
        },
        {
            "id": "aaa7e530-5f4e-11ea-9f48-517046dec117",
            "name": "ACE"
        },
        {
            "id": "aaabe190-4ee9-11ea-b203-4326bfc7b4c5",
            "name": "Marketing Coordinator"
        },
        {
            "id": "aaace380-42a5-11ea-b345-bbac1f2ff516",
            "name": "HCA (OPD)"
        },
        {
            "id": "aad3ab00-5f4e-11ea-bb49-31eb3247d928",
            "name": "F&B Supervisor "
        },
        {
            "id": "aad41390-a59c-11ec-85be-99fe51e0a710",
            "name": "ACMV Engineer"
        },
        {
            "id": "aae8cd40-588b-11ea-a623-a11fb832cad4",
            "name": "Fixed Assets Coordinator"
        },
        {
            "id": "aae8e460-42a5-11ea-8354-f53f8aa72e78",
            "name": "Staff Nurse (HD)"
        },
        {
            "id": "aaec8d20-4ee9-11ea-948b-e5f6ae459d9e",
            "name": "Sales Admin"
        },
        {
            "id": "aaff5280-5f4e-11ea-b678-1d2db1645681",
            "name": "FO Manager"
        },
        {
            "id": "ab06db80-42a5-11ea-9da2-01d26a566011",
            "name": "HCA (Cardiac )"
        },
        {
            "id": "ab0fd350-588b-11ea-8242-c9ba7bd00381",
            "name": "Sales Officer"
        },
        {
            "id": "ab41ee20-42a5-11ea-9817-3b8b829b0431",
            "name": "HCA"
        },
        {
            "id": "ab4cb4f0-4ee9-11ea-a370-97fd15336d8d",
            "name": "Risk Department"
        },
        {
            "id": "ab52feb0-6db6-11ea-8fe2-b94e4b34d992",
            "name": "Site Supervisor"
        },
        {
            "id": "ab57ae80-5f4e-11ea-9f66-1d76b97d496d",
            "name": "HK Incharge"
        },
        {
            "id": "ab625b30-42a5-11ea-bd27-99a20d944249",
            "name": "Messenger (FO)"
        },
        {
            "id": "ab6aa130-78e7-11ea-8ff8-e3c2b1fb4621",
            "name": "Admin/HR Officer"
        },
        {
            "id": "ab7f60a0-a3c3-11ea-bf34-5fe6a07893a1",
            "name": "Branch Support Administrator"
        },
        {
            "id": "ab7f99a0-42a5-11ea-afa9-111e1b2012da",
            "name": "Asst Manager"
        },
        {
            "id": "ab91b960-4ee9-11ea-9764-65ebc7f602c8",
            "name": "Hier"
        },
        {
            "id": "ab9d21b0-42a5-11ea-bcc1-cd48ae5fb6e4",
            "name": "Technician (Plastic)"
        },
        {
            "id": "aba2f670-a59c-11ec-a0a3-eb28673151ee",
            "name": " Housekeeping Attendant"
        },
        {
            "id": "abad5240-6273-11ee-918a-45fc85012e83",
            "name": "F&B and Events Coordinator"
        },
        {
            "id": "abadbfc0-588b-11ea-8a53-dd3349b175d0",
            "name": "Sr. Supervisor"
        },
        {
            "id": "abb1c910-4ee9-11ea-9111-811b72c0b79b",
            "name": "Fleet Mobile Mechanic"
        },
        {
            "id": "abbaa420-42a5-11ea-b4d3-b5b3586d0ae8",
            "name": "Pharmacist 1"
        },
        {
            "id": "abbfd220-78e7-11ea-8ff1-33a43b43632b",
            "name": "Plot Supervisor"
        },
        {
            "id": "abd1f4a0-4ee9-11ea-8259-7d5f56cbc895",
            "name": "Senior Customer Service Agent"
        },
        {
            "id": "abd4dd30-588b-11ea-817d-db3891b8d394",
            "name": "In Charge"
        },
        {
            "id": "abd827a0-42a5-11ea-a4ab-5343d8a91b2d",
            "name": "Midwife 2"
        },
        {
            "id": "ac164250-4ee9-11ea-ab7b-9523b3498763",
            "name": "Senior Software Engineer"
        },
        {
            "id": "ac389f60-4ee9-11ea-875d-4bb11c83483f",
            "name": "Risk Assessment & Credit Collection Officer"
        },
        {
            "id": "ac4a18d0-588b-11ea-b7d0-e388b0c10118",
            "name": "Room-In Charge"
        },
        {
            "id": "ac767010-7242-11ea-b6eb-578564b3a3ec",
            "name": "After Sales Consultant"
        },
        {
            "id": "ac8a4060-42a5-11ea-a088-698e202079d2",
            "name": "Front Office Assistant"
        },
        {
            "id": "acc579b0-a93d-11ec-a4d1-bb4918bba0af",
            "name": "Nursing Executive - ED"
        },
        {
            "id": "acdc5cd0-4ee9-11ea-b8a3-9f83c7e926b7",
            "name": "Digital Marketing "
        },
        {
            "id": "acf68000-e26d-11ed-895d-f77be4b37fe5",
            "name": "Hostess\t\t"
        },
        {
            "id": "acfe0750-4ee9-11ea-8a3d-ad65374cd716",
            "name": "Tax Accountant"
        },
        {
            "id": "ad093920-3f78-11eb-9b96-4964c577b41c",
            "name": "Inventory Palnner"
        },
        {
            "id": "ad10c860-e34a-11ed-9b9f-cfa9d249aea4",
            "name": "Driver\t\t"
        },
        {
            "id": "ad14feb0-775f-11ec-a068-9b088cf503f6",
            "name": "Manager - General Support Service "
        },
        {
            "id": "ad295560-68ed-11ea-a7b3-191c56f67943",
            "name": "Marketing Director "
        },
        {
            "id": "ad3a6900-42a5-11ea-a9f8-b18f20d8bc88",
            "name": "Phlebotomist"
        },
        {
            "id": "ad716150-775f-11ec-b43f-f16c00ffbfc2",
            "name": "General Manager - Hospital Operations"
        },
        {
            "id": "ad795510-9967-11ee-8bae-e7da38e13626",
            "name": "Admin & Operations Executive"
        },
        {
            "id": "ad9f3930-775f-11ec-a6d4-a733b1534a62",
            "name": "Head of Nursing"
        },
        {
            "id": "adb330d0-42a5-11ea-8831-b3182ecea7ca",
            "name": "Medical Record Assistant"
        },
        {
            "id": "add10010-42a5-11ea-a762-39978f557b07",
            "name": "Housekeeper"
        },
        {
            "id": "addbc100-6609-11eb-8d9d-4b294c3a89be",
            "name": "QHSE Coordinator & QC Engineer"
        },
        {
            "id": "ade52960-2b12-11eb-8115-07c90427963e",
            "name": "Senior Vice President (Travels)"
        },
        {
            "id": "ade58030-fc17-11ec-a05b-b93620b829fa",
            "name": "Assistant to the CEO and External Relations Manager"
        },
        {
            "id": "ae00f8a0-53e9-11ec-b203-0bd5cdb0266d",
            "name": "Head of Property Affairs"
        },
        {
            "id": "ae162660-2b1c-11eb-84ba-39dd00f00f36",
            "name": "O&M Enginner"
        },
        {
            "id": "ae220960-588b-11ea-8251-25ffd8f6ac54",
            "name": "Asst: Supervisor"
        },
        {
            "id": "ae294b80-42a5-11ea-8815-7b0d7700355f",
            "name": "Sr. Front Officer"
        },
        {
            "id": "ae2c1690-78e7-11ea-ae9c-6f54db742310",
            "name": "Admin Officer (Plantation)"
        },
        {
            "id": "ae30ee40-7744-11ea-8123-af4a1e936fe0",
            "name": "Assistant Manager Community Engagement"
        },
        {
            "id": "ae3aac20-c069-11ec-b7fa-43a62219978a",
            "name": "IT Product Manager"
        },
        {
            "id": "ae4443d0-2fda-11ec-8649-99051fafca3a",
            "name": "Senior M&E Engineer"
        },
        {
            "id": "ae46c2c0-42a5-11ea-9362-c7628f1a3c73",
            "name": "Staff Nurse ( OPD )"
        },
        {
            "id": "ae674a90-42a5-11ea-a54a-37de8239e4e0",
            "name": "In-Charge(HK&F&M)"
        },
        {
            "id": "ae765810-c069-11ec-ae64-df0926252f89",
            "name": "Strategy and Finance Associate (Associate Level II)"
        },
        {
            "id": "ae787860-7744-11ea-a094-272cb86da40a",
            "name": "Assistant to the CEO"
        },
        {
            "id": "ae850640-42a5-11ea-a89d-ed49965fd0b2",
            "name": "Sr. Medical Record Officer"
        },
        {
            "id": "ae941d90-0a0d-11eb-8e7c-1174daaa2f53",
            "name": "Assistant Chef"
        },
        {
            "id": "ae97c800-5961-11eb-bb22-1fbe98b4cd57",
            "name": "Cook and Dishwasher "
        },
        {
            "id": "aea2c1d0-42a5-11ea-a48a-9ff6e6eb0c48",
            "name": "Charge Nurse (OPD )"
        },
        {
            "id": "aeb23d60-5961-11eb-8110-ff642e719aaf",
            "name": "Junior Work"
        },
        {
            "id": "aec40110-7744-11ea-900c-ebcf4eaa61b3",
            "name": "NOC Shift Lead"
        },
        {
            "id": "aedee690-656f-11ed-a197-cbfb4e6666cf",
            "name": "SCM QA Junior Associate"
        },
        {
            "id": "aee6f260-588b-11ea-b7ab-65bdd934073f",
            "name": "Laundry Staff"
        },
        {
            "id": "af880d60-588b-11ea-ab69-ffd48b14d0ac",
            "name": "Sr. Officer"
        },
        {
            "id": "afa0b7b0-e0fd-11ea-8cc5-ad045deabcfe",
            "name": "Outlet Manager Trainee"
        },
        {
            "id": "b0056180-593a-11eb-b8c3-710779874789",
            "name": "BBQ-Helper"
        },
        {
            "id": "b02ec4a0-7c87-11ee-9d22-fb232b534b33",
            "name": "Hiker (Intern)"
        },
        {
            "id": "b099d020-588b-11ea-8024-6b15461779cf",
            "name": "Messsenger"
        },
        {
            "id": "b0c1c2b0-588b-11ea-8300-5bf3e0c6b2f2",
            "name": "Messenger"
        },
        {
            "id": "b0e429c0-0909-11ee-9df6-49c01bbaf39d",
            "name": "Senior Sales & Marketing Executive"
        },
        {
            "id": "b0e9b590-588b-11ea-8cdb-4d72c5f45514",
            "name": "Telephone Operator"
        },
        {
            "id": "b0f47620-a258-11eb-9e2d-4785366d98b4",
            "name": "Head of Operations - METRO Business Unit"
        },
        {
            "id": "b111a540-5830-11ec-b9b7-bd3970a6f58a",
            "name": "Assistant Food Court Manager"
        },
        {
            "id": "b124afa0-a258-11eb-87d1-394cac15b09c",
            "name": "Head of Commercial"
        },
        {
            "id": "b12e2360-593a-11eb-b961-cbd404d1592a",
            "name": "Trainee Cold"
        },
        {
            "id": "b1bcbdf0-69b2-11ea-8ade-4fab2bc73fe1",
            "name": "Product Support (Special Project) "
        },
        {
            "id": "b213f510-69b2-11ea-9fe9-570010554709",
            "name": "Product Support Manager"
        },
        {
            "id": "b24f7c70-69b2-11ea-9f59-33f3d236dd74",
            "name": "Head of Product Support"
        },
        {
            "id": "b27bd750-593a-11eb-8ff1-8be70cd28b67",
            "name": "Dish Washier"
        },
        {
            "id": "b29b5fe0-593a-11eb-bd8e-ff781b2e00d3",
            "name": "Kitchen Supervisor"
        },
        {
            "id": "b2d1a3a0-593a-11eb-80d7-ad1ebae6ff85",
            "name": "Asst: BBQ Leader"
        },
        {
            "id": "b2f0f620-5a0c-11eb-9738-91da7ca759a0",
            "name": "Procurement & Logistics Manager"
        },
        {
            "id": "b30b5e00-593a-11eb-b893-779bfbbca237",
            "name": "Asst: Store"
        },
        {
            "id": "b3544050-593a-11eb-b1b7-69c0f91296ea",
            "name": "Junior Cutter"
        },
        {
            "id": "b35ba480-095c-11eb-8ece-59ca84dee879",
            "name": "HK Attendance"
        },
        {
            "id": "b374a660-588b-11ea-ab0a-9fb99a409c69",
            "name": "HR "
        },
        {
            "id": "b38cf3f0-2646-11ee-aabc-ad0cd0631cdb",
            "name": "Structure Engineer"
        },
        {
            "id": "b38e0da0-9a73-11ea-af7e-a5a49e1d8844",
            "name": "Commercial Executive"
        },
        {
            "id": "b412fd60-db1b-11eb-bf0d-8743a61c2b0f",
            "name": "Sales Engineer"
        },
        {
            "id": "b4bc7e00-504e-11ee-98f2-85b558b6c91c",
            "name": "fixed assets controller"
        },
        {
            "id": "b512eeb0-593a-11eb-8a99-6f8e41459280",
            "name": "Trainee KO"
        },
        {
            "id": "b51cae80-6958-11ed-adbd-9b54c66aa07d",
            "name": "Senior Android Developer"
        },
        {
            "id": "b530c0e0-c60d-11ec-a926-8d3a1ee87b97",
            "name": "Finance Manager (Payment Processing)"
        },
        {
            "id": "b556d9a0-6daa-11ea-a5e2-af99bc8c18a1",
            "name": "Construction Manager"
        },
        {
            "id": "b56c5280-aeb3-11ea-8436-295c5517a266",
            "name": "Assistant Director"
        },
        {
            "id": "b5a42bd0-f6fa-11ea-9aeb-dbdc9dd251e0",
            "name": "GM (Marketing & Carshare)"
        },
        {
            "id": "b5b397c0-6daa-11ea-90ae-091e5f7f1534",
            "name": "Senior Leasing Manager"
        },
        {
            "id": "b5bc6650-d7f2-11ec-9d9b-d7abb7fa7805",
            "name": "Senior M&E Technician"
        },
        {
            "id": "b5bf1030-0466-11ee-b946-cb0c87b9b7b3",
            "name": "Account Analyst"
        },
        {
            "id": "b5c21d40-5944-11eb-833e-b5013a70d56c",
            "name": " Junior-Bartender"
        },
        {
            "id": "b5e54310-0c50-11eb-8480-e960d62ec26b",
            "name": "Assistant Parts Manager"
        },
        {
            "id": "b605d620-6daa-11ea-a551-bfcd7c874087",
            "name": "Head of Retail Leasing - Yoma Central/Peninsula "
        },
        {
            "id": "b60a6200-4a86-11eb-8451-95e3b38277fd",
            "name": "Software Engineer"
        },
        {
            "id": "b6368390-0e85-11ee-a6f2-97eed2c34ba2",
            "name": "Technician Grade -IV"
        },
        {
            "id": "b637c3a0-5944-11eb-8550-9b62a1f4f334",
            "name": "Shop  Supervisor"
        },
        {
            "id": "b6644590-48bf-11eb-91ab-15bf8297222d",
            "name": "Customer Solutions & Fleet Manager"
        },
        {
            "id": "b67dbb30-58ee-11ee-8270-2f83940a2ccb",
            "name": "Assistant Golf Course and Facilities Manager"
        },
        {
            "id": "b6cc50a0-6daa-11ea-a782-eb3ec72e17db",
            "name": "Project Director"
        },
        {
            "id": "b6e6b400-b56f-11ec-ada5-21ff3e6708d4",
            "name": "Assistant Tax and Treasury Manager"
        },
        {
            "id": "b6f0e350-d106-11ec-88f4-d78aecbf04f6",
            "name": "Chief Nursing Officer"
        },
        {
            "id": "b70c37b0-a664-11ec-a73d-b1a972da4c2d",
            "name": "FP&A Analyst and Transformation Accountant"
        },
        {
            "id": "b74ed400-82c2-11ea-a2e4-575b90b530bc",
            "name": "Business Intelligence Analyst"
        },
        {
            "id": "b75a37f0-c0d3-11ea-a6e0-29e645ee1c05",
            "name": "Project Coordinator (IT)"
        },
        {
            "id": "b75d5110-6daa-11ea-a2ca-c5557301127e",
            "name": "Senior Architectural Manager"
        },
        {
            "id": "b7ed81d0-0a2a-11ec-87fd-b9aa6d0c6f29",
            "name": "Head, Information Systems"
        },
        {
            "id": "b802e210-634d-11ea-8731-ad50ba63f387",
            "name": "Head Of Vehicle Lease & Rental"
        },
        {
            "id": "b8133e40-c06f-11ec-ae80-293b6f99e666",
            "name": "Credit Collection Manager"
        },
        {
            "id": "b81d5940-6daa-11ea-8809-7322e9e09d79",
            "name": "Senior Design Manager"
        },
        {
            "id": "b8714f40-6daa-11ea-b4d4-e3a560361263",
            "name": "Project Control Manager"
        },
        {
            "id": "b8ae8810-927d-11ee-b014-d3b238fb6377",
            "name": "Junior Data Engineer"
        },
        {
            "id": "b8b42050-6daa-11ea-9a2c-9b8aff595186",
            "name": "Program Manager"
        },
        {
            "id": "b9707290-0e85-11ee-97f2-b3c2d1ce20a4",
            "name": "Technician Grade -Ill"
        },
        {
            "id": "b9746840-e5e7-11ea-9cef-5ff5230b06b3",
            "name": "Assistant Maintenance Manager"
        },
        {
            "id": "b9dd0bf0-6daa-11ea-8757-1528fb86b3e0",
            "name": "Project Director -SPA PM"
        },
        {
            "id": "b9f33690-abc0-11ea-a881-1b3f661bf207",
            "name": "fleet Admin Assistant"
        },
        {
            "id": "ba2759c0-52ba-11ee-aa90-b1b06dbdb350",
            "name": "Senior Bellboy"
        },
        {
            "id": "ba2977e0-4f07-11ea-8827-4bd9afddaa05",
            "name": "Customer Satisfaction Manager"
        },
        {
            "id": "ba47bf60-e17b-11ec-ab53-c312c0e7fad7",
            "name": "Customer Relations Director"
        },
        {
            "id": "ba4c1350-814b-11eb-b5d7-e574ce81f0a2",
            "name": "Senior Engineer (Civil)"
        },
        {
            "id": "ba5f3940-e5e7-11ea-a59d-91634cfd519b",
            "name": "Senior Ticketing Executive"
        },
        {
            "id": "ba685a40-6daa-11ea-8571-87fab6e81c8b",
            "name": "QS Manager"
        },
        {
            "id": "ba7e00f0-77cd-11ec-8607-ebd3134b49f6",
            "name": "Nursining Executive - Ward 3"
        },
        {
            "id": "ba805c20-1573-11ee-880d-573bcff06158",
            "name": "Head of Customer and Corporate Affairs"
        },
        {
            "id": "baa89250-77cd-11ec-9571-4199c44a3a8a",
            "name": "Nursining Executive - CSSD"
        },
        {
            "id": "baf33850-6daa-11ea-a092-7bfb8bac6eaa",
            "name": "Design and Procurement Manager "
        },
        {
            "id": "bb023850-c28b-11e9-8c5e-bbf3686750ab",
            "name": "Group HR Manager (C&B)"
        },
        {
            "id": "bb1d80f0-c28b-11e9-84a5-e12b9d755c36",
            "name": "Senior Manager"
        },
        {
            "id": "bb27bbe0-095f-11eb-93cd-6f8d9e70588f",
            "name": "Accounting Manager"
        },
        {
            "id": "bb2b2ce0-4ef8-11ea-b04a-33c134101a4c",
            "name": "Service Desk (Star City)"
        },
        {
            "id": "bb33fe10-c28b-11e9-80b9-d501eee52eb2",
            "name": "Group HR Manager (HR&Admin, Head Office)"
        },
        {
            "id": "bb4a0c10-c28b-11e9-8377-7f5c3e8c64b1",
            "name": "HR Executive (C&B)"
        },
        {
            "id": "bb540690-77cd-11ec-a800-edc1ffaf9988",
            "name": "Nursining Executive - Ward 4"
        },
        {
            "id": "bb5fcda0-c28b-11e9-b536-cb43a3f99204",
            "name": "Office Manager"
        },
        {
            "id": "bb746e70-c28b-11e9-836b-a5b4e9e5e610",
            "name": "HR Manager (C&B)"
        },
        {
            "id": "bb8084c0-4b95-11ed-8894-d79f324f94a4",
            "name": "Sr Manager - Marketing & Car Share"
        },
        {
            "id": "bba97e60-5f50-11ea-b96c-4f9d25c5a467",
            "name": "Technician Grade III"
        },
        {
            "id": "bbb67780-c28b-11e9-8565-4fbb8c46cf05",
            "name": "Group Head, Human Resources"
        },
        {
            "id": "bbbbb950-2389-11ed-b5ed-3971e5eccdf6",
            "name": "Sales Operations Manager"
        },
        {
            "id": "bbd689e0-6daa-11ea-9404-a1b8713fe60a",
            "name": "Senior C & S Engineer"
        },
        {
            "id": "bbe23ad0-c28b-11e9-8d5a-9d4bd7bfd104",
            "name": "Assistant HR Manager (C&B)"
        },
        {
            "id": "bbe340e0-5f50-11ea-9414-25fb4d2c8b18",
            "name": "Electrical Engineer"
        },
        {
            "id": "bc0da900-c28b-11e9-8b76-415c9885c11a",
            "name": "Senior IT Solutions Manager"
        },
        {
            "id": "bc1b1490-5f50-11ea-892e-9fdbe457ffab",
            "name": "Assistant IT Engineer"
        },
        {
            "id": "bc1b7100-9651-11ec-bbef-37bef15fba1f",
            "name": "Engineer-Machanical "
        },
        {
            "id": "bc1daca0-0554-11ee-9579-adacce958fcf",
            "name": "General Manager (Construction Equipment and Power Generator)"
        },
        {
            "id": "bc261440-c28b-11e9-b1aa-b913947257d5",
            "name": "Assistant HR Manager"
        },
        {
            "id": "bc262d40-77cd-11ec-8150-fd7e95e6363d",
            "name": "Senior Procurement Officer (Pharmacy)"
        },
        {
            "id": "bc3d5200-c28b-11e9-8a33-f7e4d892eea8",
            "name": "Senior Network Engineer"
        },
        {
            "id": "bc4049d0-0b9f-11eb-83b4-9529220b0e03",
            "name": "Team Leader Trainee"
        },
        {
            "id": "bc500bf0-77cd-11ec-9417-f93da71396d5",
            "name": "POD Assistant "
        },
        {
            "id": "bc6b0530-c28b-11e9-988c-ab2aa609c400",
            "name": "IT Solutions Manager"
        },
        {
            "id": "bc7a09a0-77cd-11ec-9b0b-99017a1fa543",
            "name": "Senior Procurement Officer (Medical & General )"
        },
        {
            "id": "bc7e07e0-0909-11ee-8420-0ff083cbc878",
            "name": "Vehicle Fleet Supervisor"
        },
        {
            "id": "bc8d3290-041e-11ee-b858-c1dfb2541386",
            "name": "F&B Coordinator"
        },
        {
            "id": "bc97a9b0-c28b-11e9-ad85-1d3cdb06be68",
            "name": "DMS Support"
        },
        {
            "id": "bca63d40-6daa-11ea-885a-29d946a23898",
            "name": "Senior QS"
        },
        {
            "id": "bcef2360-c28b-11e9-bb09-7d18e5a9a91b",
            "name": "HR Executive (R&S)"
        },
        {
            "id": "bd01ada0-5f50-11ea-8359-13746a51a052",
            "name": "Technician Grade IV"
        },
        {
            "id": "bd072a80-c28b-11e9-9c09-f5ba33cf92c5",
            "name": "IT Assistant"
        },
        {
            "id": "bd105290-403a-11eb-b958-176b167e17dc",
            "name": "Tennis Attendant"
        },
        {
            "id": "bd1f4ad0-c28b-11e9-b3dd-1df39c1e3c0d",
            "name": "Junior HR Executive (C&B)"
        },
        {
            "id": "bd2c76c0-331b-11eb-a4f2-2f3250da688e",
            "name": "Resident Architect"
        },
        {
            "id": "bd4f99b0-c28b-11e9-a3a7-91b73d674e1b",
            "name": "IT Supervisor"
        },
        {
            "id": "bd5d5900-5f16-11eb-b857-7917dd24d275",
            "name": "Planning Manager (Yoma Central Project)"
        },
        {
            "id": "bd5fbc10-0eec-11ed-8349-c1337e8e1909",
            "name": "Junior Site Reliability Engineer"
        },
        {
            "id": "bd6e2ad0-5f50-11ea-b0c0-bb99708abb52",
            "name": "Assistant Operation Manager"
        },
        {
            "id": "bd709d80-6daa-11ea-b65a-3b25d299d62c",
            "name": "Façade Manager"
        },
        {
            "id": "bd7d7dc0-c28b-11e9-b7bd-358ca1f84164",
            "name": "IT Helpdesk"
        },
        {
            "id": "bda96040-c28b-11e9-aa5a-1f5fa8dfe290",
            "name": "Senior IT Helpdesk"
        },
        {
            "id": "bdbdeaf0-6daa-11ea-bfd8-6b3ec8d2a8ed",
            "name": "Senior Architect"
        },
        {
            "id": "bdd67760-c28b-11e9-bc09-ad548ac499ec",
            "name": "Assistant HR Executive"
        },
        {
            "id": "bdd6c140-0bab-11eb-89c0-61d344affb02",
            "name": "Supervisor Trainee"
        },
        {
            "id": "bdd736c0-0eec-11ed-8e61-ff4ca0ba6d20",
            "name": "Junior Software Engineer"
        },
        {
            "id": "bdec1b70-c28b-11e9-9da3-7161d048580e",
            "name": "Help Desk (Group IT Department)"
        },
        {
            "id": "be003d40-0eec-11ed-9af8-07d97f79b563",
            "name": "Andriod Developer"
        },
        {
            "id": "be0f20d0-5f50-11ea-ba16-7f5e1692124c",
            "name": "Assistant Duty Engineer"
        },
        {
            "id": "be1786d0-c28b-11e9-9b01-8550a06d3378",
            "name": "Helpdesk"
        },
        {
            "id": "be244700-77cd-11ec-94e9-a79d8f2a2134",
            "name": "Nursining Executive - Ward 2"
        },
        {
            "id": "be2dbbc0-c28b-11e9-901b-99595c39a4ce",
            "name": "IT Support Team Lead"
        },
        {
            "id": "be419b00-b57a-11ec-9ca5-ed5cdfc282f7",
            "name": "Assistant Treasury Manager"
        },
        {
            "id": "be44be10-c28b-11e9-a8af-f1204ba51e6c",
            "name": "Web Designer"
        },
        {
            "id": "be46fbe0-6daa-11ea-883f-1fbdaa42ce00",
            "name": "Architectural Design Manager"
        },
        {
            "id": "be5b9930-c28b-11e9-b732-892212fc9d34",
            "name": "Training Manager"
        },
        {
            "id": "be711230-c28b-11e9-a2b7-e5fb718ccfd1",
            "name": "Degital and Analytics Manager"
        },
        {
            "id": "be737d60-0eec-11ed-a199-61e3adc01dd4",
            "name": "Development Team Lead"
        },
        {
            "id": "be7c7520-5f50-11ea-8add-b3a7c0e7e252",
            "name": "Duty Engineer"
        },
        {
            "id": "be865030-c28b-11e9-9aa6-b1a62b852e80",
            "name": "IT Support Manager"
        },
        {
            "id": "be8e4b40-6daa-11ea-a5c2-8d24c9f4f644",
            "name": "Architectural Revit Drafter"
        },
        {
            "id": "be9b2ff0-c28b-11e9-92c3-d97252f127e6",
            "name": "IT Project Manager "
        },
        {
            "id": "beb18e80-c28b-11e9-b9d3-e17842009a80",
            "name": "Software Developer"
        },
        {
            "id": "bec6b410-c28b-11e9-9fb0-739a858832fc",
            "name": "Network Manager"
        },
        {
            "id": "bed00750-6daa-11ea-80e6-e3894f1038cb",
            "name": "Senior Construction Manager"
        },
        {
            "id": "bedbcf70-c28b-11e9-91c0-fbc5587d116d",
            "name": "Digital Projects Manager"
        },
        {
            "id": "beea1800-0eec-11ed-9cfd-816f324c2476",
            "name": "Product Designer"
        },
        {
            "id": "bef0bf60-c28b-11e9-b8ee-d1e070e998d9",
            "name": "Project Coordinator"
        },
        {
            "id": "befbc6b0-77cd-11ec-a5b5-53f87e41ae78",
            "name": "Nursining Executive - ED & OPD"
        },
        {
            "id": "bf05bbb0-c28b-11e9-a011-6bafb96aef80",
            "name": "Training & Development Coordinator"
        },
        {
            "id": "bf0f3960-6daa-11ea-9054-e5219d2d4a56",
            "name": "Interior  Design Manager"
        },
        {
            "id": "bf10c500-0eec-11ed-b82e-95bdb863b94d",
            "name": "Frontend Developer"
        },
        {
            "id": "bf18fa30-6337-11ee-8a90-fd1014b3f673",
            "name": "Junior Technician"
        },
        {
            "id": "bf2ea200-c28b-11e9-ad20-df71f23516e2",
            "name": "System Engineer"
        },
        {
            "id": "bf378150-0eec-11ed-b149-a3438b56880b",
            "name": "SRE Team Lead"
        },
        {
            "id": "bf4d7040-6daa-11ea-9a7d-078021295848",
            "name": "MEP Manager(Mechnical)"
        },
        {
            "id": "bf500c00-77cd-11ec-a446-331329794e6e",
            "name": "Nursining Executive - Silver Ward"
        },
        {
            "id": "bf581fd0-c28b-11e9-a935-6fb516831763",
            "name": "Application Architect"
        },
        {
            "id": "bf6cd300-c28b-11e9-b8cc-991475bb557b",
            "name": "Application Developer"
        },
        {
            "id": "bf83b350-7365-11ec-a58b-cd3e6b8045ae",
            "name": "HR Executive (HR Strategy & Development)"
        },
        {
            "id": "bf8b2340-6daa-11ea-a875-5b0015df706e",
            "name": "Deputy General Manager, Marketing for Yoma Land"
        },
        {
            "id": "bf971d10-c28b-11e9-aa0f-f72f08dafadb",
            "name": "Technical Project Lead"
        },
        {
            "id": "bf9c3050-3a95-11eb-92eb-8780a78289f3",
            "name": "Interior Design Manager (YCP)"
        },
        {
            "id": "bfa606e0-32de-11ea-9913-dbb66c666e29",
            "name": "Team Leader"
        },
        {
            "id": "bfabeb40-c28b-11e9-be70-1fb8dc0ca039",
            "name": "Quality Assurance Engineer"
        },
        {
            "id": "bfbbed10-1db3-11eb-a115-6929e9d18fd8",
            "name": "Corporate Relationship Executive"
        },
        {
            "id": "bfcbf440-6daa-11ea-8901-a7705726a9d5",
            "name": "Finance Director"
        },
        {
            "id": "bfd6e640-c28b-11e9-a5a9-a16a7d97fc88",
            "name": "Senior Security Engineer"
        },
        {
            "id": "bfecb9c0-c28b-11e9-ad73-c1c3a7d28979",
            "name": "Academy Coordinator"
        },
        {
            "id": "c0023dc0-c28b-11e9-b209-1d0298e0e4e6",
            "name": "Program Manager (Talent Management)"
        },
        {
            "id": "c00d08f0-6daa-11ea-8321-55ef4c634a1a",
            "name": "Head of Investment Management"
        },
        {
            "id": "c016e740-c28b-11e9-b24c-45c4a8be163a",
            "name": "English Tutor"
        },
        {
            "id": "c023cdc0-0eec-11ed-a7c5-bfa60c6b0ae0",
            "name": "Android Developer"
        },
        {
            "id": "c028b5b0-52b7-11ee-b6bb-af917dae9783",
            "name": "Assistant Laundry Manager"
        },
        {
            "id": "c04ca780-6daa-11ea-94e4-1979a9f7b41f",
            "name": "Head of Yoma Land"
        },
        {
            "id": "c0556e80-c28b-11e9-bd30-6149bffac3ff",
            "name": "Help Desk"
        },
        {
            "id": "c0669000-5f50-11ea-b16e-71eb2bd6212f",
            "name": "Senior Engineer"
        },
        {
            "id": "c067e450-f672-11eb-8d45-6984b3b1bc67",
            "name": "Senior Designer"
        },
        {
            "id": "c068f7a0-7959-11ea-83da-53002b03d06e",
            "name": "Deputy Block In-charge "
        },
        {
            "id": "c06a3a00-c28b-11e9-b7db-65ef8a60d769",
            "name": "Senior HR Executive"
        },
        {
            "id": "c09f6990-32de-11ea-83d2-55f1021c5ee1",
            "name": "Cashier "
        },
        {
            "id": "c0b35930-4472-11eb-bb85-8b7e8106cc6e",
            "name": "Data Analyst (C&I)"
        },
        {
            "id": "c0bef7d0-c28b-11e9-9840-2375d54a7132",
            "name": "Web Designer/Management"
        },
        {
            "id": "c0c91430-77cd-11ec-9f76-3d8041a37883",
            "name": "Technician - Mechanical"
        },
        {
            "id": "c0cb68d0-6daa-11ea-bf1e-fbb2f288596a",
            "name": "HR Director"
        },
        {
            "id": "c0d604d0-c28b-11e9-a801-75cca2f450ed",
            "name": "Administrative Coordinator"
        },
        {
            "id": "c0dc7f60-ad1a-11ec-950f-1969cf99b422",
            "name": "Customer Service & Operation Coordinator"
        },
        {
            "id": "c0f51ce0-4472-11eb-ac47-7938771a2c91",
            "name": "Inventory & Quality Controller"
        },
        {
            "id": "c1042e60-1466-11ec-b125-9d95b11ded91",
            "name": "Field Call Officer(P)"
        },
        {
            "id": "c10bb480-6daa-11ea-a1cb-e34c643f7aea",
            "name": "Junior Marketing Executive"
        },
        {
            "id": "c10da130-32de-11ea-9e43-a391fb74a3d9",
            "name": "Bartender "
        },
        {
            "id": "c1264440-c01a-11ea-8f8f-a79f1012008a",
            "name": "Assistant Repossess Officer"
        },
        {
            "id": "c129bb80-c28b-11e9-b7b5-91c7d42b5d7c",
            "name": "HR Executive (Talent Acquisition)"
        },
        {
            "id": "c12c3f30-e4b6-11ed-b3a4-6343e9b66ee7",
            "name": "Parts Executive"
        },
        {
            "id": "c139ead0-32de-11ea-89b8-f9fde0717f3e",
            "name": "Waiter "
        },
        {
            "id": "c13e9920-c28b-11e9-ac16-1d692b30a449",
            "name": "Teach Project Lead"
        },
        {
            "id": "c153a210-c28b-11e9-8f53-69d670605e7a",
            "name": "Senior IT Manager"
        },
        {
            "id": "c1688380-c28b-11e9-86c7-8bc32ff7e756",
            "name": "Digital Marketing Manager"
        },
        {
            "id": "c16ef4f0-f670-11eb-aa46-abdd277cb5fd",
            "name": "Lead Project Controller"
        },
        {
            "id": "c17604a0-f2bb-11ea-82f6-a7a44597676f",
            "name": "Community Engagement Officer"
        },
        {
            "id": "c17a8710-685c-11ec-ac87-25d553601940",
            "name": "Resales Manager"
        },
        {
            "id": "c17abfd0-88fc-11ea-89f4-cf04f521e51b",
            "name": "Operations Shift Controller"
        },
        {
            "id": "c17d2cc0-c28b-11e9-b9b6-39065d487177",
            "name": "Application Support"
        },
        {
            "id": "c1a900f0-32de-11ea-9ed4-bf916277551a",
            "name": "Waitress "
        },
        {
            "id": "c1dd2800-9425-11ea-8cfa-53a2b364197c",
            "name": "MO Manager"
        },
        {
            "id": "c1fa4750-c28b-11e9-ab09-65c31df1fc16",
            "name": "Group Talent Acquisition Manager & HR Operations"
        },
        {
            "id": "c205e920-32de-11ea-a9c9-3d3eb7ae76a6",
            "name": "Housekeeping "
        },
        {
            "id": "c20b34f0-6daa-11ea-b56d-2bf52fc4e9d7",
            "name": "M&E Engineer"
        },
        {
            "id": "c20ed7e0-c28b-11e9-b3ed-ab85b3c972e4",
            "name": "Content Coordinator"
        },
        {
            "id": "c223ad70-c28b-11e9-8439-ff91e4cc7c7e",
            "name": "Sr. HR Executive (C&B)"
        },
        {
            "id": "c2327dd0-32de-11ea-b7c7-737eaa0f6175",
            "name": "Security "
        },
        {
            "id": "c23a5ed0-22f3-11ed-93ce-3b7849896d09",
            "name": "PM&D Assistant"
        },
        {
            "id": "c24edeb0-c28b-11e9-aba3-a57b92a5df04",
            "name": "IT Operations Manager"
        },
        {
            "id": "c2543860-2f9f-11eb-8d28-af7262d083a5",
            "name": "Junior Human Resources Executive"
        },
        {
            "id": "c28ba830-6daa-11ea-8e5c-5b81880775a9",
            "name": "Deputy Head of Marketing"
        },
        {
            "id": "c28d7f50-32de-11ea-8312-b7beb24cbd1b",
            "name": "Head Chef "
        },
        {
            "id": "c2a3d530-32de-11ea-afb0-27fc24403e0d",
            "name": "Chef de Partie (CDP) "
        },
        {
            "id": "c2ba4d50-32de-11ea-b19b-d3c8deadf792",
            "name": "Commis I "
        },
        {
            "id": "c2c26d70-7959-11ea-8fa7-8d5b35d1eefb",
            "name": "Teacher, STG School"
        },
        {
            "id": "c2cbb2d0-331b-11ec-a1f4-f136ad626b32",
            "name": "Assistant Utility Operation Manager"
        },
        {
            "id": "c2d63b80-7879-11ea-a1ab-7f57ec93f785",
            "name": "ID/Project Manager"
        },
        {
            "id": "c2e6b880-32de-11ea-9505-7b7d56ac3734",
            "name": "Commis II"
        },
        {
            "id": "c2fcf6a0-32de-11ea-834a-bdbb899375cf",
            "name": "Commis III"
        },
        {
            "id": "c30704c0-6daa-11ea-b873-21b234b749aa",
            "name": "Junior Marketing Executive (Digital & So-Me Marketing)"
        },
        {
            "id": "c3122320-42e6-11eb-bcdb-7d5e59885899",
            "name": "Recreation Manager (Land and Sea Activities)"
        },
        {
            "id": "c31ba540-7879-11ea-aa6a-47ef14bdf8b6",
            "name": "Site Architect"
        },
        {
            "id": "c32fa5e0-32de-11ea-8b96-8d9d8928b452",
            "name": "Kitchen Helper "
        },
        {
            "id": "c35795a0-685d-11ec-8a00-77167a237686",
            "name": "Senior Sales Admin Executive"
        },
        {
            "id": "c35b2880-7959-11ea-9898-a731b98c55b7",
            "name": "Excavator Operator"
        },
        {
            "id": "c36634c0-7879-11ea-ae84-0b2525348bf2",
            "name": "M&E Project Manager"
        },
        {
            "id": "c369cbb0-5f50-11ea-af6e-71341478651d",
            "name": "Asst. Duty Engineer"
        },
        {
            "id": "c3aa9fc0-7879-11ea-8d36-8fcb07d04064",
            "name": "Health and Safety Manager"
        },
        {
            "id": "c3c4e590-36df-11ec-b567-5710c907a9f4",
            "name": "Resales Eexcutive"
        },
        {
            "id": "c3e5de80-671e-11ee-ad65-77457d676267",
            "name": "Warehouse Controller"
        },
        {
            "id": "c3f2c650-aa0c-11ea-83fb-eba59e46fef7",
            "name": "Spare Parts Sales & Admin Executive"
        },
        {
            "id": "c3f60180-7879-11ea-8e85-cd6c473077d1",
            "name": "Liaison Manager"
        },
        {
            "id": "c3fe7700-6daa-11ea-afb9-f1290c4e1c68",
            "name": "Marketing & Customer Service Executive"
        },
        {
            "id": "c42ee410-44c2-11eb-b594-9d877ee505b8",
            "name": "Supervisor (Customer Solutions)"
        },
        {
            "id": "c43bee60-6daa-11ea-bb45-d9deb82bd7cc",
            "name": "Senior Investment Analyst"
        },
        {
            "id": "c4459a90-7879-11ea-8ede-b9e0d3c7f184",
            "name": "MRB Coordination Manager"
        },
        {
            "id": "c479c330-6daa-11ea-9a2f-e980e4205aab",
            "name": "Financial Controller (Financial Reporting)"
        },
        {
            "id": "c4895d20-7879-11ea-943a-6b48804a6808",
            "name": "Liasion Manager (Politic)"
        },
        {
            "id": "c4b65350-f784-11ec-954b-416105a67613",
            "name": "Senior QHSE Engineer"
        },
        {
            "id": "c4c3a4e0-6daa-11ea-98bf-cfd6a186a3a1",
            "name": "Marketing Admin"
        },
        {
            "id": "c4ca2170-7879-11ea-aa63-51144204a19d",
            "name": "C&S Design Manager"
        },
        {
            "id": "c4eb5160-e7d2-11ec-b6d4-6d2f78f1bd88",
            "name": "Sports and Recreation Junior Executive"
        },
        {
            "id": "c50aca60-7879-11ea-8319-4b903514a030",
            "name": "Resident Engineer (MEP)"
        },
        {
            "id": "c5489520-e5ce-11ea-b469-918cfb9acde8",
            "name": "Civil & Structure Manager"
        },
        {
            "id": "c5bac450-6dab-11ea-9681-aba0ee0429fa",
            "name": "Page Boy"
        },
        {
            "id": "c5d292e0-0eac-11eb-ace9-8f8843abf092",
            "name": "Sales & Marketing Coordinator"
        },
        {
            "id": "c5ff5f20-6dab-11ea-a89a-cfb511bc0bd5",
            "name": "Sales Gallery Attendant"
        },
        {
            "id": "c60b4c70-6daa-11ea-b3a8-33366124ba3f",
            "name": "Investment Performance Analyst"
        },
        {
            "id": "c63eca30-6101-11ee-bab8-15799f6d0860",
            "name": "Manager (Design & Implementation)"
        },
        {
            "id": "c67aa3c0-52b7-11ee-b731-4da5844a7f76",
            "name": "Linen Attendant"
        },
        {
            "id": "c67e8b90-6dab-11ea-a9fa-af6b739db733",
            "name": "General Worker"
        },
        {
            "id": "c68c4c90-7959-11ea-b45e-3b9da05c01c4",
            "name": "Assistant Block In-charge"
        },
        {
            "id": "c68c69e0-6daa-11ea-9757-5503def1fd3a",
            "name": "Deputy Project Director"
        },
        {
            "id": "c69b03e0-7879-11ea-972d-c57f9fc1848a",
            "name": "Architectural Technician/Visualizer"
        },
        {
            "id": "c69f1690-ed5e-11ed-bf9e-5189ec2d3ac4",
            "name": "Senior Customer Service Executive"
        },
        {
            "id": "c6a95a30-d906-11e9-9712-0f453175d5e2",
            "name": "CEO"
        },
        {
            "id": "c6bc3730-6dab-11ea-a31f-19ff55aa1401",
            "name": "Executive Driver "
        },
        {
            "id": "c6c8e560-14fc-11ec-9660-f1e3f227370d",
            "name": "Credit Collection and Repossession Officer"
        },
        {
            "id": "c6cf0060-f847-11ec-aaf0-df63532e143c",
            "name": "Implementation Manager"
        },
        {
            "id": "c6d5c4e0-7950-11ea-aaac-234544a10742",
            "name": "Apprentice Account (6 month contract) "
        },
        {
            "id": "c6f17590-14fc-11ec-b2d8-9bd4cb733c6b",
            "name": "Assistant Credit Collection and Repossession Officer"
        },
        {
            "id": "c70d05f0-6daa-11ea-8c83-e72026a893be",
            "name": "Landscape Design Manager"
        },
        {
            "id": "c710b4e0-d197-11ec-8ebc-255bb921a03b",
            "name": "Site Engineer- Civil"
        },
        {
            "id": "c740bec0-810d-11ee-af6f-0f052bd50121",
            "name": "Field QA Officer"
        },
        {
            "id": "c74728a0-e27c-11e9-93c5-eb8ac6a2f39f",
            "name": "Chairman of Agriculture"
        },
        {
            "id": "c75ff160-e27c-11e9-8b42-910e312a429f",
            "name": "CFO"
        },
        {
            "id": "c7774ff0-e27c-11e9-9a57-b7a63656fd47",
            "name": "Driver"
        },
        {
            "id": "c77f0830-6daa-11ea-9ebc-099fbc3b9dc1",
            "name": "Head of CSD"
        },
        {
            "id": "c78ee100-e27c-11e9-9c72-51f7eff2e433",
            "name": "Secretary to Group Ambassador"
        },
        {
            "id": "c7922f30-5f50-11ea-9c2a-155d63e8fa6c",
            "name": "Maintenance Engineer"
        },
        {
            "id": "c7a52eb0-e27c-11e9-8f8c-13f431eee7b5",
            "name": "Head of Photography & Art Works"
        },
        {
            "id": "c7bceb80-e27c-11e9-9a3e-b339ce8eb379",
            "name": "Legal Counsel"
        },
        {
            "id": "c7d487d0-e27c-11e9-90fc-3f5075fc63ac",
            "name": "Associate"
        },
        {
            "id": "c7ed9c60-6daa-11ea-a40f-191c33332c84",
            "name": "Design Director"
        },
        {
            "id": "c8038330-e27c-11e9-91e1-677f302b5473",
            "name": "Manager , Group Communication"
        },
        {
            "id": "c81a1400-e27c-11e9-a276-b56a6fa38d79",
            "name": "Senior Associate"
        },
        {
            "id": "c81ac7c0-7879-11ea-80b3-c1d81aec8050",
            "name": "Senior Structural Engineer"
        },
        {
            "id": "c82feb00-e27c-11e9-be6e-bd893ec660e2",
            "name": "House Manager"
        },
        {
            "id": "c83f6720-7959-11ea-be65-c3177e6134dc",
            "name": "Block In-charge"
        },
        {
            "id": "c8475300-e27c-11e9-90bf-0b7432e8d818",
            "name": "Group Head of CSR"
        },
        {
            "id": "c84cc490-6daa-11ea-81a0-2f4532e744df",
            "name": "Assistant Cost Manager"
        },
        {
            "id": "c85fbab0-e27c-11e9-af1e-113f00a1054b",
            "name": "Chief of Staff"
        },
        {
            "id": "c87601c0-e27c-11e9-a7e9-a1775fece763",
            "name": "Managing Counsel"
        },
        {
            "id": "c890b350-7d92-11ec-9206-2daa6e24e1ee",
            "name": "Handicap Secretary"
        },
        {
            "id": "c89ab8d0-7879-11ea-b4dc-e5c2907c489e",
            "name": "Engineer Technician"
        },
        {
            "id": "c8a99520-6357-11ea-a9f5-67bc425e00ab",
            "name": "Apprentice Technician"
        },
        {
            "id": "c8b71850-e27c-11e9-ad59-37faa8e33684",
            "name": "Managing Associate"
        },
        {
            "id": "c8ccff70-e27c-11e9-be5e-5f98238608c4",
            "name": "Head Of Insights and Analytics"
        },
        {
            "id": "c8fb0ca0-e27c-11e9-8537-6f15417bd744",
            "name": "Project Associate"
        },
        {
            "id": "c90976c0-6daa-11ea-b5ea-65215d4ad5bd",
            "name": "Golf Course Operation Manager / PGA Teaching Professional"
        },
        {
            "id": "c909e360-7879-11ea-b705-ff39a112e8f8",
            "name": "Document Administrator "
        },
        {
            "id": "c9279be0-e27c-11e9-8efe-a553e434440e",
            "name": "Legal Officer"
        },
        {
            "id": "c9402cc0-e27c-11e9-b5e9-3b82abd116ce",
            "name": "Executive Assistant"
        },
        {
            "id": "c956fc70-241c-11ed-94b1-2b0478b5979a",
            "name": "HR/Admin Coordinator"
        },
        {
            "id": "c957a440-e27c-11e9-ae53-9be45c398862",
            "name": "Corporate Secretarial Manager"
        },
        {
            "id": "c96ce660-e27c-11e9-9661-c9aba79d8d63",
            "name": "Project Assistant"
        },
        {
            "id": "c98249f0-e27c-11e9-a85c-2df7e51ffc68",
            "name": "Front Office & Employee Service Manager"
        },
        {
            "id": "c9987650-2d22-11ee-8f8a-d3a634828b30",
            "name": "Senior Landscape Architect"
        },
        {
            "id": "c998d510-e27c-11e9-9164-8d29d0299249",
            "name": "Coordinator"
        },
        {
            "id": "c99a7d80-848d-11ea-8046-876fb1e332aa",
            "name": "Shareholder Manager"
        },
        {
            "id": "c9a33160-23ec-11eb-b5ba-7bbe75c750b9",
            "name": "Assistant Collections Manager"
        },
        {
            "id": "c9a71440-b2dc-11eb-b5d7-35cd1f873071",
            "name": "Admin & Network Development Executive"
        },
        {
            "id": "c9afa340-e27c-11e9-9642-375017bb3975",
            "name": "Admin Executive"
        },
        {
            "id": "c9b5b5c0-5f50-11ea-87b7-2d65a7e03de7",
            "name": "Technician IV"
        },
        {
            "id": "c9bb78a0-5a3d-11eb-8b7d-4980486f4f91",
            "name": "Assistant Manager,Program Management Office"
        },
        {
            "id": "c9cab0b0-e27c-11e9-8fc0-9d34def0824e",
            "name": "Senior Admin Manager"
        },
        {
            "id": "c9cc1ef0-6daa-11ea-839a-a55a03cee46a",
            "name": "Real Estate Development Planner"
        },
        {
            "id": "c9dff340-e27c-11e9-a0ba-93e188375bc4",
            "name": "Front Office Executive"
        },
        {
            "id": "c9fcd5a0-7959-11ea-b7e1-7953b3fe2cc4",
            "name": "Carpenter"
        },
        {
            "id": "ca0abd00-e27c-11e9-8b63-554fd882df55",
            "name": "Senior Legal Officer"
        },
        {
            "id": "ca0d7d00-6daa-11ea-860d-e7c7d87a243b",
            "name": "General Manager, TED"
        },
        {
            "id": "ca3a2e40-e27c-11e9-ba08-bf2271e6e550",
            "name": "Analyst"
        },
        {
            "id": "ca53ed20-e27c-11e9-bb64-694ea341c87e",
            "name": "Assistant Manager Front Office & Employee Service"
        },
        {
            "id": "ca756550-7950-11ea-b093-83e021eb99fd",
            "name": "Auto Electrician"
        },
        {
            "id": "ca76efb0-1bcd-11ee-b517-89b221934209",
            "name": "SalesManager"
        },
        {
            "id": "ca8246a0-e27c-11e9-8f2f-5135a7140a82",
            "name": "Legal translator"
        },
        {
            "id": "ca990cb0-e27c-11e9-846c-db0dc99a2345",
            "name": "Corporate Secretarial Assistant"
        },
        {
            "id": "caaedb90-e27c-11e9-87e4-71be94ec3b90",
            "name": "Communications Executive"
        },
        {
            "id": "cac48d10-e27c-11e9-8dd7-0773dbbf4e8b",
            "name": "Office Helper"
        },
        {
            "id": "cac71dd0-7959-11ea-8bf2-6740935300b6",
            "name": "Medical Officer"
        },
        {
            "id": "cada5860-7950-11ea-8114-c115f5f24d22",
            "name": "Jr. Service Engineer (Generator) "
        },
        {
            "id": "cb0bf7a0-9acc-11ed-acab-037a86276056",
            "name": "Sales & Marketing Director"
        },
        {
            "id": "cb2d4050-c1ea-11ec-a1c6-0b2fb68c08da",
            "name": "Assistant Credit Collection Manager"
        },
        {
            "id": "cb2fe9c0-5880-11ea-a1dd-83dae90cb1a0",
            "name": "Sales & Marketing Manager"
        },
        {
            "id": "cb4529a0-e27c-11e9-afc7-63e547e1215f",
            "name": "Admin Officer"
        },
        {
            "id": "cb752680-5880-11ea-ace5-17c592dc2b1f",
            "name": "IT Analyst"
        },
        {
            "id": "cb7d4760-9acc-11ed-84e6-3d72047bef26",
            "name": "Skilled Labour\t"
        },
        {
            "id": "cb80e590-7879-11ea-bbf8-d1b6a9a2bae4",
            "name": "Document Control Assistant"
        },
        {
            "id": "cb85a250-e27c-11e9-8777-45e17272e1d5",
            "name": "Transport Officer"
        },
        {
            "id": "cb9b6700-e27c-11e9-8920-3d255e2dbcb1",
            "name": "Admin Manager"
        },
        {
            "id": "cb9c9380-ad71-11ea-97f5-4d0a888eec85",
            "name": "Housekeeping Assistant Supervisor"
        },
        {
            "id": "cbad6d50-638a-11ee-ae41-1556ef2a1130",
            "name": "M&E Technician (Pool)"
        },
        {
            "id": "cbc19b60-7879-11ea-867b-b1c4942b410a",
            "name": "Contracts Administrator"
        },
        {
            "id": "cbc2acf0-5880-11ea-8c08-b7efc809fbd9",
            "name": "Regional Sales Manager ( YGN )"
        },
        {
            "id": "cbe7e860-5880-11ea-8bb8-49d95bb8cba8",
            "name": "Admin cum Account Assistant"
        },
        {
            "id": "cbf7a090-09b6-11ee-9dbe-d9e6c6fa6364",
            "name": "Deputy Maintenance Manager"
        },
        {
            "id": "cc0d32b0-9280-11ee-9962-83ed4c21e079",
            "name": "Senoir Data Engineer"
        },
        {
            "id": "cc1dcce0-e27c-11e9-a2cd-810ce3c20b09",
            "name": "Cook"
        },
        {
            "id": "cc5c6d80-5880-11ea-9081-a176ac56c793",
            "name": "Customer Services Assistant"
        },
        {
            "id": "cc75add0-0f7e-11eb-8156-99045c032624",
            "name": "Project Admin"
        },
        {
            "id": "cc82eb30-5880-11ea-8eca-591d384c9cc2",
            "name": "Customer Service Executive"
        },
        {
            "id": "cca4ab00-e27c-11e9-96f6-9f6174a3248c",
            "name": "Office Staff"
        },
        {
            "id": "cca6f1c0-8755-11ee-be98-4526eb6e29d0",
            "name": "Junior Java Developer"
        },
        {
            "id": "ccca7240-7879-11ea-90e3-87744e849940",
            "name": "Senior Projcet Coordinator "
        },
        {
            "id": "ccd10f20-e27c-11e9-9863-3797abba7a03",
            "name": "Team Coordinator & Executive Assistant"
        },
        {
            "id": "ccf84eb0-5880-11ea-bfa3-ed7a3bfb779d",
            "name": "Training & Development Manager"
        },
        {
            "id": "ccfe8ef0-e27c-11e9-a2e4-e945f381cfc4",
            "name": "Senior Director"
        },
        {
            "id": "cd4207f0-5880-11ea-9741-c98d9600bda0",
            "name": "Logistics Admin Executive"
        },
        {
            "id": "cd424290-e27c-11e9-a587-25a0000ad06e",
            "name": "Director"
        },
        {
            "id": "cd4433c0-0672-11ee-91a9-6165d68e9f6e",
            "name": "Senior Owner Liaison Executive"
        },
        {
            "id": "cd66c6f0-5880-11ea-827a-5f16e606cf57",
            "name": "Fleet Customer Executive"
        },
        {
            "id": "cd6e09d0-e27c-11e9-9de4-9730073bbc38",
            "name": "Office Administrator"
        },
        {
            "id": "cd6fc190-d1d6-11ed-97c5-930cd9922884",
            "name": "Senior Electrical Design Engineer"
        },
        {
            "id": "cd859030-e27c-11e9-a5c2-0db5530bace1",
            "name": "Government Relations Coordinator"
        },
        {
            "id": "cd8bc3a0-5880-11ea-b135-73a3b0cd84a1",
            "name": "WMS Operator"
        },
        {
            "id": "cd8e62d0-7879-11ea-bef2-4924a983aa33",
            "name": "Assistant Leasing Manager"
        },
        {
            "id": "cd9fafe0-e27c-11e9-9ef3-99b6673a0051",
            "name": "Chief Operating Officer"
        },
        {
            "id": "cdb18160-5880-11ea-b1cf-01e969c83796",
            "name": "Procurement Executive"
        },
        {
            "id": "cdb5fa80-e27c-11e9-8a9d-e1227e3358aa",
            "name": "Chief Engineer"
        },
        {
            "id": "cdc35100-4ef9-11ea-9844-33a08564b169",
            "name": "Service Desk (KFC Office)"
        },
        {
            "id": "ce04e6e0-7879-11ea-afde-8b6b3cca4eb0",
            "name": "Leasing Operations Technician"
        },
        {
            "id": "ce270f30-7959-11ea-9fd4-5f133aa39820",
            "name": "Tractor Driver"
        },
        {
            "id": "ce359d30-cfff-11eb-841f-379cd918d82a",
            "name": "Assistant to the CEO and Community & Government Relations Manager"
        },
        {
            "id": "ce44a9e0-5880-11ea-972f-9b8fa3ac97a8",
            "name": "Driver Supervisor"
        },
        {
            "id": "ce6eac60-e27c-11e9-929d-5b4ea3b0ad67",
            "name": "Creative Manager "
        },
        {
            "id": "ce886f20-55f9-11ee-80e7-8da99f327735",
            "name": "Site Engineer (Façade)"
        },
        {
            "id": "ce95d4a0-2fd7-11ec-9b86-af52a1d7d6ac",
            "name": "Deputy Trades & Landscaping Manager"
        },
        {
            "id": "ce9af800-5121-11ee-95e7-f79ee2d6d382",
            "name": "Logistics Adminstrator"
        },
        {
            "id": "ce9d2a90-e27c-11e9-acea-1105a14d0b30",
            "name": "Head Of Department"
        },
        {
            "id": "ceb3fec0-5880-11ea-9475-151ddd70d8f6",
            "name": "Warehouse Manager"
        },
        {
            "id": "ceb400d0-e27c-11e9-ab1a-71b74961d46c",
            "name": "Manager"
        },
        {
            "id": "ced2ae60-8ff6-11ed-b48c-57324e3aa454",
            "name": "BI Analyst"
        },
        {
            "id": "cedfaf90-e27c-11e9-b4b9-ad08728b5560",
            "name": "Legal Officer & Corporate Secretarial Manager"
        },
        {
            "id": "cef93af0-7879-11ea-92f3-233d71c0b1c8",
            "name": "Senior Engineer ( Archi & ID )"
        },
        {
            "id": "cf20cd80-e27c-11e9-98df-19651fdf58f8",
            "name": "Corporate Secretarial Officer"
        },
        {
            "id": "cf22c8c0-5880-11ea-b42a-214e87a85760",
            "name": "Business Development Manager-Contact Logistics"
        },
        {
            "id": "cf2452b0-775e-11ec-8739-ebbea189644a",
            "name": "In-Charge - Clinical Services"
        },
        {
            "id": "cf4b2700-5880-11ea-854a-7d5cec415f05",
            "name": "Driver & Fleet Compliance Manager"
        },
        {
            "id": "cf51b2b0-775e-11ec-b4b6-0f8d8814ed34",
            "name": "Interim In-charge - Emergency"
        },
        {
            "id": "cf73aa10-5880-11ea-9a3c-6150cef12699",
            "name": "Managing Director"
        },
        {
            "id": "cf754930-2ecc-11eb-b5e0-f78d349fcf55",
            "name": "Assistant Service Manager"
        },
        {
            "id": "cf794360-e27c-11e9-a6bf-272ce610c404",
            "name": "Director, Chairman's Office"
        },
        {
            "id": "cf8ccd30-55f9-11ee-b4f4-af59b9866232",
            "name": "Project Design Coordinator"
        },
        {
            "id": "cf8fc9f0-e27c-11e9-8c88-6397a92a5264",
            "name": "Senior Corporate Secretarial Officer"
        },
        {
            "id": "cf9f09e0-5880-11ea-aad4-4340a4526fdb",
            "name": "Business and Strategy Analysis Manager"
        },
        {
            "id": "cfc7fcd0-5880-11ea-8c97-f72446055686",
            "name": "Fleet & Distribution Manager"
        },
        {
            "id": "cfcbef60-d1b4-11ec-8326-5d42336296d8",
            "name": "Manager - Customer Care and Loyalty "
        },
        {
            "id": "cfdda500-775e-11ec-b2bd-353b7306bc89",
            "name": " Executive Management Associate"
        },
        {
            "id": "cff45630-f1eb-11ea-b0c5-5bd64c7af81f",
            "name": "\tQuality Assurance"
        },
        {
            "id": "d005e6a0-e27c-11e9-849d-19c947746bcf",
            "name": "Engine Room In Charge"
        },
        {
            "id": "d0176490-7959-11ea-80e1-69a32b362846",
            "name": "In-charge (Water Supply)"
        },
        {
            "id": "d01ce3e0-e27c-11e9-a399-d37eb29f7523",
            "name": "Captain"
        },
        {
            "id": "d02b3210-e5a2-11ed-9daa-cdcb239d5308",
            "name": "Java Developer"
        },
        {
            "id": "d03322a0-e27c-11e9-b9e3-ad47ed9492e8",
            "name": "Assistant Ship In Charge"
        },
        {
            "id": "d034e140-7879-11ea-a9b3-9b188c062e48",
            "name": "Senior HSE Supervisor"
        },
        {
            "id": "d0431080-0c02-11ee-8185-8d0a813d1026",
            "name": "System Monitor"
        },
        {
            "id": "d05fe640-e27c-11e9-bb15-2311cf199300",
            "name": "Cruise Manager"
        },
        {
            "id": "d075cd70-e27c-11e9-92f4-1706038fb997",
            "name": "Oiler"
        },
        {
            "id": "d08be9f0-e27c-11e9-9aab-83e826c7f0fb",
            "name": "Treasury Manager"
        },
        {
            "id": "d09529a0-b2d5-11eb-ad76-21dfe39ad0f2",
            "name": "Parts Sales Admin (JCB,NHG)"
        },
        {
            "id": "d097be40-d1b4-11ec-9f3c-e79b94c732a0",
            "name": "Moble Application Analyst"
        },
        {
            "id": "d0a4c860-7959-11ea-9d77-934e125400f7",
            "name": "In-charge (Housekeeping)"
        },
        {
            "id": "d0c766f0-775e-11ec-8d25-370cf638f598",
            "name": "Nursing Executive"
        },
        {
            "id": "d0cf0c10-d1b4-11ec-9f3e-0b4c5a7679e2",
            "name": "Business Analyst(Digital Branding)"
        },
        {
            "id": "d0e97070-e27c-11e9-86f4-05a888c93cc5",
            "name": "Senior Finance Manager"
        },
        {
            "id": "d0eabe80-2fd6-11ec-89f0-e9f49f656d28",
            "name": "Senior PA(Head of Standby Team)"
        },
        {
            "id": "d101f500-e27c-11e9-9d84-c920441d7ea0",
            "name": "Accounts Supervisor"
        },
        {
            "id": "d1186150-e27c-11e9-bcac-5199b99058e0",
            "name": "Protocol officer"
        },
        {
            "id": "d12e8f20-e27c-11e9-aad9-61725128f4e5",
            "name": "Import / Export Administrator"
        },
        {
            "id": "d13204b0-7959-11ea-882f-f1e5e3a1de85",
            "name": "In-charge (Security)"
        },
        {
            "id": "d144b540-e27c-11e9-9c8f-ef456048ade3",
            "name": "Account Manager"
        },
        {
            "id": "d14ac940-775e-11ec-9678-8d13517797b6",
            "name": "Interim Nursing Executive"
        },
        {
            "id": "d1628cb0-330a-11ec-9c02-5b32659f94f0",
            "name": "Advisor (Agriculture Group)"
        },
        {
            "id": "d174a240-7959-11ea-8049-cd3279dc8cc2",
            "name": "Water Pump Operator"
        },
        {
            "id": "d1b836b0-e27c-11e9-9514-8fa3503e4695",
            "name": "Accounts Assosciate II"
        },
        {
            "id": "d1c21190-f6c2-11ec-a8cc-254d9bdb769f",
            "name": "Junior Site Engineer (Civil)"
        },
        {
            "id": "d1ce82e0-e27c-11e9-8ed1-d71f08f7050c",
            "name": "Senior Accountant"
        },
        {
            "id": "d1deb910-775e-11ec-baba-ed05b8600a00",
            "name": "Interim Assistant Manager - Pharmacy"
        },
        {
            "id": "d1e535b0-e27c-11e9-9758-49e1824874a0",
            "name": "Cashier Associate"
        },
        {
            "id": "d1ead500-7879-11ea-bac3-bfc189d67d60",
            "name": "Director of Golf "
        },
        {
            "id": "d2050910-2019-11ec-a456-71519d4490f9",
            "name": "Inventory and Account Receivable Accountant"
        },
        {
            "id": "d2189900-775e-11ec-99ab-41a5cd92acf9",
            "name": "In-Charge Engineer - M&E"
        },
        {
            "id": "d2295290-e27c-11e9-ba12-8bb587e2f2f8",
            "name": "Accountant"
        },
        {
            "id": "d23fbf40-e27c-11e9-bf59-83267822c52a",
            "name": "Senior Cashier"
        },
        {
            "id": "d2617420-aa2c-11ea-85e4-c185fe785a80",
            "name": "Founder"
        },
        {
            "id": "d26448f0-16db-11ec-ab82-457a11898b81",
            "name": "HR & Training Executive"
        },
        {
            "id": "d2823980-e27c-11e9-8427-8958cb39e375",
            "name": "Assistant Accountant"
        },
        {
            "id": "d2ae5a30-e27c-11e9-bf4a-b7cd21f4ce15",
            "name": "Junior Accountant"
        },
        {
            "id": "d2c5d940-e27c-11e9-bd71-a53506e59c84",
            "name": "Business / Financial Manager"
        },
        {
            "id": "d2dbd3b0-e27c-11e9-a772-ddbe1b524d8e",
            "name": "Assistant Manager"
        },
        {
            "id": "d2eed290-19e7-11ed-90d1-e3c84df684cb",
            "name": "Operation Team Lead"
        },
        {
            "id": "d2f1d5f0-e27c-11e9-8dc8-5b14a40f29a2",
            "name": "Assistant Protocol Officer"
        },
        {
            "id": "d3359730-e27c-11e9-99a4-ad0069433d90",
            "name": "Head of Finance & Investment"
        },
        {
            "id": "d33896c0-52b7-11ee-9ee2-5d0659fb8f87",
            "name": "Demi Chef - Pastry"
        },
        {
            "id": "d33953b0-9e2a-11ee-b04a-d734e982b611",
            "name": "Merchant Acquisition (Intern)"
        },
        {
            "id": "d34c2380-e27c-11e9-aed3-11e15234ec75",
            "name": "Financial Controller"
        },
        {
            "id": "d36c0300-e27c-11e9-b888-430aaead38b4",
            "name": "Head of Business Development"
        },
        {
            "id": "d39b0bd0-e27c-11e9-b897-55d246fc05a4",
            "name": "Advisor to the CEO"
        },
        {
            "id": "d39db690-8ff8-11ed-9fce-2bb3d107cfa8",
            "name": "Jr. Quality Assurance Engineer"
        },
        {
            "id": "d3b1f850-e27c-11e9-bc37-e37a223d27b9",
            "name": "Finance Manager"
        },
        {
            "id": "d3b81440-58d3-11eb-9720-7176557e5a06",
            "name": "QC"
        },
        {
            "id": "d3b9a410-8853-11ea-b1a6-496e425e9038",
            "name": "Development Manager"
        },
        {
            "id": "d3ca0810-e27c-11e9-af1e-5d3b7ebc6935",
            "name": "Senior Manager, Strategy and Finance"
        },
        {
            "id": "d3d65420-58d3-11eb-a576-8b0746ebb541",
            "name": "Assistant Storekeeper"
        },
        {
            "id": "d3fa5970-e27c-11e9-8c9b-f70d94cc0cac",
            "name": "Head of Risk Management"
        },
        {
            "id": "d41f3300-8853-11ea-b048-1742e73bc2ff",
            "name": "Spare Parts Supervisor"
        },
        {
            "id": "d4386de0-58cf-11eb-b3cc-5f8cba0e48e2",
            "name": "Purchasing Executive"
        },
        {
            "id": "d4414540-fd02-11ec-b69c-4d6e1f918e27",
            "name": "Group Treasurer"
        },
        {
            "id": "d446d050-9280-11ee-abf6-39369ed8a594",
            "name": "Mid Data Engineer"
        },
        {
            "id": "d44e3f20-c57c-11ec-9911-fdfe975e5e8d",
            "name": "Logistics & Admin Executive"
        },
        {
            "id": "d4552ab0-e27c-11e9-8f45-5106f9495972",
            "name": "Cashier Cum Admin Assistant"
        },
        {
            "id": "d45d5630-58d3-11eb-81a4-69925541975c",
            "name": "Delivery Staff"
        },
        {
            "id": "d45e3db0-6c16-11ea-9a2a-01e145645991",
            "name": "Logistics & Government Relations Manager"
        },
        {
            "id": "d46b06a0-e27c-11e9-be35-d1cddd94decb",
            "name": "Manager, Corporate Governance & Assurance"
        },
        {
            "id": "d4855e80-8853-11ea-a8ed-95fb0531e3e7",
            "name": "Warehouse Officer (Inventory and Repossessions Control) "
        },
        {
            "id": "d48f4040-0c5d-11eb-8b1c-1f78d91456c5",
            "name": "Assistant Planning Eingineer (MEP)"
        },
        {
            "id": "d4c42510-e27c-11e9-ad87-138556f2637f",
            "name": "Manager, Corporate Governance & Compliance"
        },
        {
            "id": "d4e29dd0-58cf-11eb-88c5-637ab28e4ecb",
            "name": "Sr- Admin & HR Assistant"
        },
        {
            "id": "d4f20640-e27c-11e9-87ff-e1b115589bd5",
            "name": "Assistant Finance Manager"
        },
        {
            "id": "d5024d50-58cf-11eb-877b-ab54096b9cf4",
            "name": "M & E Assistant"
        },
        {
            "id": "d5082680-e27c-11e9-83f3-9d95adda03c4",
            "name": "Environmental & Safety Analyst"
        },
        {
            "id": "d51c9a40-58cf-11eb-8eb1-3ff0346050d2",
            "name": "Assistant Techanician"
        },
        {
            "id": "d51e80b0-e27c-11e9-8155-bd848ef185f4",
            "name": "Account Assistant"
        },
        {
            "id": "d534be60-e27c-11e9-b6bf-11b6846ec37a",
            "name": "Office Assistant"
        },
        {
            "id": "d5372340-58cf-11eb-8290-1b093e020f6e",
            "name": "Asst: Technician"
        },
        {
            "id": "d546a790-0673-11ee-aeb6-cf4fabcb2ca2",
            "name": "Senior Civil Engineer"
        },
        {
            "id": "d54cf2f0-3a78-11ee-97dd-f5f509030c0b",
            "name": "Façade Engineer"
        },
        {
            "id": "d552ec20-58cf-11eb-9248-a7b6a057a888",
            "name": "Assistant Technician"
        },
        {
            "id": "d56142d0-e27c-11e9-8c7f-f70a4eda6cf1",
            "name": "Project Analyst"
        },
        {
            "id": "d577e570-e27c-11e9-913d-f52f629f194f",
            "name": "Internal Audit Manager"
        },
        {
            "id": "d58e25d0-e27c-11e9-952e-c9c4bc35b12c",
            "name": "Manager - Risk Management & Assurance"
        },
        {
            "id": "d59ff730-9f23-11ea-8461-1729bed0a835",
            "name": "Senior Government Relations Executive"
        },
        {
            "id": "d5da0b90-cfe2-11eb-a938-3577ccf7940f",
            "name": "Community & Government relations Manager"
        },
        {
            "id": "d5f33470-58cf-11eb-bee1-1180bf3839b9",
            "name": "Senior Operator"
        },
        {
            "id": "d61fa490-e27c-11e9-a42c-4d9f674e5db3",
            "name": "Executive Office Manager"
        },
        {
            "id": "d63701e0-e27c-11e9-8179-659cd99f2592",
            "name": "Senior Analyst"
        },
        {
            "id": "d64dce50-e27c-11e9-a898-9924f7c2573a",
            "name": "Non-Executive Director"
        },
        {
            "id": "d694ec50-1d33-11ec-a35b-e3e6b8216b39",
            "name": "Head of Graphic Designer"
        },
        {
            "id": "d6b201a0-58cf-11eb-af6c-39fb2c32011b",
            "name": "Asst Store Manager"
        },
        {
            "id": "d6df14a0-e27c-11e9-8d74-79b39fc737c3",
            "name": "Chairman"
        },
        {
            "id": "d6f6e180-e27c-11e9-bc9b-9d8362a09983",
            "name": "Assistant to Executive Director Finance & Investment"
        },
        {
            "id": "d718a140-9e2b-11ee-8468-b3af8199712e",
            "name": "Data Entry Operator (Intern)"
        },
        {
            "id": "d7567fa0-e27c-11e9-aafa-a18f549b41db",
            "name": "Finance Manager, Financial Reporting"
        },
        {
            "id": "d7618900-c1da-11ea-800a-db53b583947e",
            "name": "Head, Design and Engineering"
        },
        {
            "id": "d76f5e70-e27c-11e9-882a-9923433d4492",
            "name": "Group Financial Controller"
        },
        {
            "id": "d7891110-e27c-11e9-90c7-bb0b0557e023",
            "name": "Group General Counsel"
        },
        {
            "id": "d7a0f880-e27c-11e9-95a2-bf23032c2388",
            "name": "Group Communications Consultant"
        },
        {
            "id": "d7b8b5f0-e27c-11e9-bc98-b51536fc99cf",
            "name": "Group Ambassador"
        },
        {
            "id": "d7d0bf90-e27c-11e9-8b49-e1668f8573b2",
            "name": "Event Manager"
        },
        {
            "id": "d7e8fd00-e27c-11e9-b983-3785ecefba71",
            "name": "Head of Sustainability"
        },
        {
            "id": "d80b1250-c6d3-11ed-aff3-fbf188a8487e",
            "name": "Senior Mechanical Design Engineer"
        },
        {
            "id": "d81af3c0-77c6-11ec-a52c-1dd1e266f4b2",
            "name": "Grade"
        },
        {
            "id": "d847a050-77c6-11ec-8eee-ff2e3bc9d57c",
            "name": "Senior Medical Technologist (In-Charge)"
        },
        {
            "id": "d8849340-9280-11ee-a7e6-8db26b76f75b",
            "name": "Technical Writer"
        },
        {
            "id": "d90b5e40-638f-11ea-a08c-e5c031b8e3ed",
            "name": "Assistant MO Manager"
        },
        {
            "id": "d91171e0-07d2-11ed-bfdd-ab4348912757",
            "name": "Parts Assistant Manager"
        },
        {
            "id": "d9486390-638f-11ea-8f2c-b775a40d021c",
            "name": "Analyst/Executive Assistant"
        },
        {
            "id": "d98b70f0-2fde-11ec-8761-05a0327cab53",
            "name": "Senior Work Health & Safety Officer"
        },
        {
            "id": "d98c9960-4034-11eb-a5dc-2972a37bc3b8",
            "name": "Country Club Manager"
        },
        {
            "id": "d9a0c2e0-07d2-11ed-b71e-79a15f7a86f6",
            "name": "National Manager (Sales & Business Development)"
        },
        {
            "id": "d9d19260-07d2-11ed-a91c-afed6a5d6202",
            "name": "HR Sr.Executive"
        },
        {
            "id": "d9d7fac0-f527-11ea-bce0-53fd5fd82f21",
            "name": "Parts Warehouse Staff"
        },
        {
            "id": "d9e84ac0-eb1d-11ed-8e80-d14148d40095",
            "name": "Sale Executive"
        },
        {
            "id": "da3b9a70-e5a2-11ed-8ca1-af43d97821d8",
            "name": "QA Engineer (Functional)"
        },
        {
            "id": "da91bb70-77c6-11ec-978b-170dc9ddeff4",
            "name": "Pathologist"
        },
        {
            "id": "daac0d80-8e0e-11ec-b628-ef5c623878a7",
            "name": "Junior Designer"
        },
        {
            "id": "dade76f0-6001-11ee-9699-2b27e0d56b1b",
            "name": "Asset Management Manager"
        },
        {
            "id": "db048c70-eb1d-11ed-b98b-d9fb8f8807af",
            "name": "Reservation & Ticketing"
        },
        {
            "id": "db225f90-5f7f-11eb-82ce-b7017b7da45b",
            "name": "Head of O&M"
        },
        {
            "id": "db31bee0-46bc-11ec-896a-3dad78e704d6",
            "name": "Senior HR & Admin Executive"
        },
        {
            "id": "db442ee0-8e70-11ee-8022-19b6bea4b751",
            "name": "Events Manager (F&B)"
        },
        {
            "id": "db4abec0-77c6-11ec-b11b-ff2645fa873b",
            "name": "Grade 2"
        },
        {
            "id": "db5d7d90-73cd-11ea-a42f-2dbcc8afb44d",
            "name": "Assistant Maintenance Engineer"
        },
        {
            "id": "db749020-cb38-11ea-a1a8-eb75264510bd",
            "name": "Country Club & Spa Manager"
        },
        {
            "id": "db769170-ab54-11ed-9e11-cdd0f2e30ee5",
            "name": "Senior Cost & Commercial Manager"
        },
        {
            "id": "db927e00-f527-11ea-86c3-5b9afe6e2563",
            "name": "Heavy Good Vehicle Driver"
        },
        {
            "id": "dba70eb0-73cd-11ea-ab01-5772bdf90bf3",
            "name": "Leasing Sales Manager"
        },
        {
            "id": "dba83880-331b-11ec-b5c6-215fe297135e",
            "name": "Utility Operation Manager"
        },
        {
            "id": "dbae5570-77c6-11ec-aba3-8b590aab15ec",
            "name": "Laboratory Assistant"
        },
        {
            "id": "dbb99ee0-f316-11ea-8c26-4169c4fcbd93",
            "name": "Trainee Engineer"
        },
        {
            "id": "dc088940-7aac-11ec-b354-2d70caed0584",
            "name": "Spare Part Admin"
        },
        {
            "id": "dc3b72b0-f527-11ea-b9ce-6787bf1d485d",
            "name": "Junior QS"
        },
        {
            "id": "dc762ea0-f527-11ea-a73e-5f8d917148c0",
            "name": "MEP Site Engineer (Electrical )"
        },
        {
            "id": "dc7fca90-2fd0-11ec-87d8-df85b4d3ffa3",
            "name": "Assistant Secretary / Site Admin"
        },
        {
            "id": "dca2e290-6bd9-11ee-94b7-eb136e7a6989",
            "name": " Accountant"
        },
        {
            "id": "dcac1220-cf74-11ed-9e61-1dfebaf82415",
            "name": "Assistant Purchaser"
        },
        {
            "id": "dcec12e0-f527-11ea-a0c0-ada2b66bd264",
            "name": "Site Engineer (PSFG) "
        },
        {
            "id": "dcf06ef0-73cd-11ea-9336-4952e9dd0325",
            "name": "Sports & Recreation Manager"
        },
        {
            "id": "dd174220-58c3-11eb-9911-33f7278fcc87",
            "name": "Tools Controller & Administration Support"
        },
        {
            "id": "dd1a7660-ed60-11ed-8c12-1da6f29ecd06",
            "name": "Golf Operation Manager"
        },
        {
            "id": "dd2765a0-f527-11ea-850b-4daa99eb3c80",
            "name": "Site Engineer (Electrical)"
        },
        {
            "id": "dd4f3af0-58c3-11eb-a9b4-c35da9b15016",
            "name": "Service Admin (4 month contract)"
        },
        {
            "id": "dd62caf0-f527-11ea-a21f-811b02a63a20",
            "name": "Junior Site Engineer (Mechanical)"
        },
        {
            "id": "dd7f1a50-6fef-11ee-ad7a-cdc135e86f44",
            "name": "Management Trainee"
        },
        {
            "id": "dd907d40-58cb-11eb-ad88-5d91444de302",
            "name": "Chinese Trainer"
        },
        {
            "id": "ddd89720-f527-11ea-bba7-0b51c7ffc19a",
            "name": "Senior QA/QC Engineer (Archi)"
        },
        {
            "id": "ddffda60-3c51-11ec-b877-219a9109c583",
            "name": "Senior Design Architect"
        },
        {
            "id": "de2dad70-0672-11ee-b0d2-9d3f37217cb2",
            "name": "Leasing Operation Executive"
        },
        {
            "id": "de4e66a0-f527-11ea-ad8b-61e8790db4d2",
            "name": "Interior Design Architect"
        },
        {
            "id": "de7acec0-4704-11ee-b60a-81bcfe17daf0",
            "name": "Junior Service Advisor"
        },
        {
            "id": "de8c6ef0-fa7b-11eb-83c9-d50e407e06dd",
            "name": "Champion Recognition Specialist"
        },
        {
            "id": "deaa63c0-15d7-11ec-bf2f-277500805796",
            "name": "Landscape Architect"
        },
        {
            "id": "defb2760-97dc-11ee-96da-b939f7993c1d",
            "name": "Car Cleaner/ Cleaner"
        },
        {
            "id": "df0eacc0-b3f8-11ec-892c-4faeca7618aa",
            "name": "Finance Associate"
        },
        {
            "id": "df408580-2019-11ec-bad7-6789c3766b32",
            "name": "Account Payable Accountant"
        },
        {
            "id": "df83a510-2692-11eb-a8c4-7dafd92671ae",
            "name": "Butcher"
        },
        {
            "id": "dfa34e90-520e-11ee-9314-a71d0d3c0070",
            "name": "HSSE Manager"
        },
        {
            "id": "e00cdf90-23f9-11eb-9e6a-d91c0afa6e18",
            "name": "Assistant Site Engineer(Structure)"
        },
        {
            "id": "e0230650-6bd3-11ed-acff-bf3e43734f0f",
            "name": "IT Product and Operation Manager"
        },
        {
            "id": "e0e5c540-68ca-11ea-a4d3-3d034ca7856d",
            "name": "IT Technician"
        },
        {
            "id": "e1274270-16c8-11eb-92ff-b93603a4bb52",
            "name": "M&E Coordinator"
        },
        {
            "id": "e12bc250-23f1-11eb-b5ae-cf7f4615f891",
            "name": "Assistant Repossession Officer"
        },
        {
            "id": "e14e77c0-0029-11ee-9766-b5fa50a9e691",
            "name": "Jr. Technician"
        },
        {
            "id": "e239ec30-0510-11ee-bd34-3fde56caad00",
            "name": "Seinor Mechanic"
        },
        {
            "id": "e2612080-2604-11ea-a7bd-8bee06ba03cc",
            "name": "IT Project Coordinator"
        },
        {
            "id": "e278e4a0-2fd8-11ec-8774-7b2619f96764",
            "name": "Deputy Procurement & Liaison Manager"
        },
        {
            "id": "e2c64ff0-c3cc-11ed-a0db-c7a0f4d57b04",
            "name": "Training and QC Manager"
        },
        {
            "id": "e3395210-45b6-11eb-a9e0-9d565f951c2f",
            "name": "Interior Design Manager (Yoma Central Project)"
        },
        {
            "id": "e39ecb80-735f-11ec-8161-0d39201d899e",
            "name": "Resales Executive"
        },
        {
            "id": "e3fbeaf0-23f9-11eb-aa4c-d1894af54db2",
            "name": "Site Engineer(ID & Finishing)"
        },
        {
            "id": "e440d210-dda2-11ed-9c0c-d702d0fed8a9",
            "name": "Head of Finance & Strategy"
        },
        {
            "id": "e4e45500-97d1-11ee-9557-dffa25126e3e",
            "name": "Assistant Guest Experience Manager"
        },
        {
            "id": "e5321e10-9e2a-11ee-900b-d326e221b691",
            "name": "Acting Assistant Landscape Manager"
        },
        {
            "id": "e54c5470-23f9-11eb-9426-d7badc0c4456",
            "name": "Site Engineer (Structure)"
        },
        {
            "id": "e5501c50-0900-11ee-85de-0b8e493ff5d0",
            "name": "Cashier Cum Account Assistant"
        },
        {
            "id": "e58e24a0-403b-11eb-ae0d-ab55f6e8d20c",
            "name": "Senior Beautician"
        },
        {
            "id": "e5af8e60-3a5c-11ee-a222-6b7aa7458361",
            "name": "HR and Admin Manager"
        },
        {
            "id": "e6116a60-52b7-11ee-91a8-f7ce84aba008",
            "name": "Engineering Coordinator"
        },
        {
            "id": "e6d291a0-e8d2-11ed-a844-49872ea481bd",
            "name": "Senior Resales Manager"
        },
        {
            "id": "e6ef3ca0-23fd-11eb-b933-b9a07582d985",
            "name": "RE Coordinator"
        },
        {
            "id": "e7439840-fdca-11ed-834c-5720904b3526",
            "name": "Junior Building Maintenance Technician "
        },
        {
            "id": "e775ba30-60f7-11ee-93c9-753bf7da4a63",
            "name": "Health & Safety officer"
        },
        {
            "id": "e792b540-c60d-11ec-b56b-1bd99d9ce568",
            "name": "Assistant Security Supervisor"
        },
        {
            "id": "e8347480-595d-11eb-8df6-bd3dd256829c",
            "name": "CK Leader"
        },
        {
            "id": "e83cd620-d269-11ec-9f5d-f7f56fd8dcf0",
            "name": "Incharge - Molecular Unit"
        },
        {
            "id": "e850fbb0-595d-11eb-93ea-cf7ab9607ad2",
            "name": "Store Incheck "
        },
        {
            "id": "e86d6e80-595d-11eb-ad40-1b763a7bd639",
            "name": "Asst: CK Leader"
        },
        {
            "id": "e8846de0-dd9b-11ec-ae13-8bcf67fc05de",
            "name": "Water Source Security"
        },
        {
            "id": "e88a6860-595d-11eb-bf54-7d8a5524b27c",
            "name": "CK Helper"
        },
        {
            "id": "e8a6f120-595d-11eb-9dc4-09f95470426a",
            "name": "Sr. Asst: Accountant"
        },
        {
            "id": "e8af4e90-7957-11ea-b860-bda48b42cf43",
            "name": "BBQ Leader"
        },
        {
            "id": "e8e25ad0-dd9b-11ec-8544-edab1e48209b",
            "name": "Factory Manager"
        },
        {
            "id": "e8e9a950-781e-11ea-a06b-8f9cb9eb316e",
            "name": "General Manager -KFC"
        },
        {
            "id": "e91be0c0-8e5d-11ee-8f16-ed5fb80b8ca2",
            "name": "Merchants Acquisition (Intern)"
        },
        {
            "id": "e98803d0-4e71-11ec-a479-7381fd0bd65a",
            "name": "Head, Leaders Development"
        },
        {
            "id": "e9922480-595d-11eb-8d69-8d354bbf84f0",
            "name": "Trainee  Supervisor"
        },
        {
            "id": "e9b637f0-d5fd-11ea-be8e-1f831b1d1bf0",
            "name": "Fleet&Distribution Manager"
        },
        {
            "id": "eb056990-5a61-11eb-8c85-6d3699ec73a9",
            "name": "Assistant Marketing Manager"
        },
        {
            "id": "eb2f23c0-5a61-11eb-b125-3585d194bfb2",
            "name": "HR & Admin Manager"
        },
        {
            "id": "eb955f20-7957-11ea-affa-915f4d08eb47",
            "name": "General"
        },
        {
            "id": "ebaf64b0-5a61-11eb-b8b0-a74899168ff6",
            "name": "Utilities & Infrastructure Manager"
        },
        {
            "id": "ebe98d30-c1ef-11ec-a965-119a85d8ad1f",
            "name": "Parts Sales Executive"
        },
        {
            "id": "ebf53210-0103-11ee-a0dd-f5025ce99c17",
            "name": "Senior Merchant Acquisition Executive"
        },
        {
            "id": "ec2b28e0-c066-11ec-9e45-694690d75664",
            "name": "Senior Quality Engineer"
        },
        {
            "id": "ec763e00-7957-11ea-b205-a5b866b1a6ee",
            "name": "Senior Kyay Oh"
        },
        {
            "id": "ec7f2ef0-ee68-11ea-8f63-9dccf4d4ff09",
            "name": "Junior Assistant Technician"
        },
        {
            "id": "ec8855a0-bead-11ef-8405-1bd0896584a8",
            "name": "Junior iOS Developer"
        },
        {
            "id": "ec8e9ee0-bead-11ef-adfe-fd43b4b3b4bd",
            "name": "Junior Full Stack Developer"
        },
        {
            "id": "ec919e00-bead-11ef-a791-cb44771910ea",
            "name": "Lead Project Manager"
        },
        {
            "id": "ec925220-bead-11ef-b2b8-fd4342856f86",
            "name": "Operation Lead (SLA)"
        },
        {
            "id": "ec93fe90-bead-11ef-9f4d-71790444acc2",
            "name": "Lead Android Developer"
        },
        {
            "id": "ec95e300-bead-11ef-803e-33f7e24bc1c6",
            "name": "Lead Software Engineer"
        },
        {
            "id": "ec96add0-bead-11ef-be0f-d5c7cd0f7da4",
            "name": "Solution Architect (Part-Time)"
        },
        {
            "id": "ec976090-bead-11ef-8be8-d516880228c6",
            "name": "Test Automation - Quality Assurance Engineer"
        },
        {
            "id": "ec9b3910-bead-11ef-8f75-ffd9dacd7801",
            "name": "Assistant Investment Operations Manager"
        },
        {
            "id": "ecb730c0-bead-11ef-9df2-99b206157894",
            "name": "IT Solutions Support"
        },
        {
            "id": "ecbbd870-bead-11ef-953a-ff144f165817",
            "name": "Lead Business Intelligence Analyst"
        },
        {
            "id": "ecbc8e80-bead-11ef-a80f-53e71c9d29f0",
            "name": "Lead Manager, Group Internal Audit and Controls"
        },
        {
            "id": "ecc81cc0-bead-11ef-aa28-a1862c8bcd53",
            "name": "Senior HR Executive (Compensation & Benefits)"
        },
        {
            "id": "ecc8eaa0-bead-11ef-a6f3-a116f0c259df",
            "name": "Senior HR Executive (Training & Development)"
        },
        {
            "id": "ecc9b1a0-bead-11ef-a4c6-35a9acfe2ab7",
            "name": "Senior HR Manager (HR Strategy & Development)"
        },
        {
            "id": "ecca5e60-bead-11ef-9328-2333e753c700",
            "name": "Senior HR Project Coordinator"
        },
        {
            "id": "eccd81d0-bead-11ef-9559-8fb3782399a6",
            "name": "Senior Protocol Officer"
        },
        {
            "id": "ecd2ecb0-bead-11ef-9c8f-cb23337fedec",
            "name": "Creative Writer"
        },
        {
            "id": "ecd58880-bead-11ef-a86e-8f1af78ac2da",
            "name": "Head Of Partnership & Marketing"
        },
        {
            "id": "ecd6f6d0-bead-11ef-85b9-d93ca68ad534",
            "name": "Junior Content Writer"
        },
        {
            "id": "ecd7c770-bead-11ef-8b27-35f21403ca29",
            "name": "Junior Customer Service Executive"
        },
        {
            "id": "ecd92e20-bead-11ef-85bd-f32a1d296157",
            "name": "Partnership Executive"
        },
        {
            "id": "ecdb6840-bead-11ef-979d-1f6260d920a2",
            "name": "Senior Patnership Executive"
        },
        {
            "id": "ecdc73b0-bead-11ef-bc2c-53f592ff3496",
            "name": "Advisor to MD"
        },
        {
            "id": "ecdcfdd0-bead-11ef-b889-27550109a307",
            "name": "Cost Control Assistant"
        },
        {
            "id": "ecdd9390-bead-11ef-b519-13d51311c330",
            "name": "Deputy Manager"
        },
        {
            "id": "ecde1dc0-bead-11ef-8aa2-ab7be67604fc",
            "name": "Deputy Managing Director"
        },
        {
            "id": "ece3bd90-bead-11ef-8cf6-f12f04d640a4",
            "name": "Assistant Procurement & Logistic Manager"
        },
        {
            "id": "ece5cf60-bead-11ef-aaea-ff8eedf63dbe",
            "name": "Chief Technology Strategist"
        },
        {
            "id": "ece66510-bead-11ef-8468-8d9799946a80",
            "name": "DG Supervisor"
        },
        {
            "id": "ece77b20-bead-11ef-a7d4-dde5739cf5c1",
            "name": "Finance & Accounting Manager"
        },
        {
            "id": "ecebc650-bead-11ef-9f48-dfe1bfb78ecb",
            "name": "NOC Coordinator"
        },
        {
            "id": "ececf2e0-bead-11ef-8dcc-2974ed2ebe64",
            "name": "NOC Engineer (Trainee)"
        },
        {
            "id": "eced6ed0-018a-11ec-be05-e90f5c73dc43",
            "name": "MEP O&M Supervisor "
        },
        {
            "id": "ecf2f840-bead-11ef-b5c5-8b3691c1956e",
            "name": "Senior Engineer (Design & Implementation)"
        },
        {
            "id": "ecf4c1d0-bead-11ef-b57b-972fe4d36e1b",
            "name": "Senior Procurement & Logistics Coordinator"
        },
        {
            "id": "ecfc8420-bead-11ef-a943-e18d18aaaa98",
            "name": "Fleet Supervisor"
        },
        {
            "id": "ed0528c0-bead-11ef-9b2d-45f86ca1fa9d",
            "name": "Bamboo Artist"
        },
        {
            "id": "ed05ca20-bead-11ef-a428-47210ffd6f85",
            "name": "Carpenter Supervisor"
        },
        {
            "id": "ed065af0-bead-11ef-be8e-9f9315e4e04c",
            "name": "Carving Artist"
        },
        {
            "id": "ed070ff0-bead-11ef-8c78-ef0a78966654",
            "name": "CNC Operator"
        },
        {
            "id": "ed079e90-bead-11ef-b5b7-630fa21a64b5",
            "name": "Finance Manager & GM"
        },
        {
            "id": "ed07f340-4b95-11ed-ab9f-99b5bc21bf48",
            "name": "Sr Manager - Customer Solutions & Car Share"
        },
        {
            "id": "ed082e00-bead-11ef-9431-318617a2e97e",
            "name": "Finishing Supervisor"
        },
        {
            "id": "ed0941e0-bead-11ef-880c-8190343e24bf",
            "name": "Junior Carpenter"
        },
        {
            "id": "ed09d280-bead-11ef-ad3a-a1467ce2a0f6",
            "name": "Machine Supervisor"
        },
        {
            "id": "ed0a61c0-bead-11ef-bf55-3b81498e0ccb",
            "name": "Metal Artist"
        },
        {
            "id": "ed0aefa0-bead-11ef-abf2-29fee092d08a",
            "name": "Nickel Artist"
        },
        {
            "id": "ed0bcd50-bead-11ef-afa5-3be66d976ecf",
            "name": "Production & Project Coordinator"
        },
        {
            "id": "ed0cbe50-bead-11ef-bfaf-5180fc67b43b",
            "name": "Production Staff"
        },
        {
            "id": "ed0f2cf0-bead-11ef-a263-63aa2f7933fb",
            "name": "Raw Leader"
        },
        {
            "id": "ed0fc410-bead-11ef-b1c9-ed9d5483fc57",
            "name": "Raw Manager"
        },
        {
            "id": "ed1056e0-bead-11ef-89c6-f5c194e1eccd",
            "name": "Sanding"
        },
        {
            "id": "ed10ea00-bead-11ef-b73c-990d518a4e3c",
            "name": "Sanding Leader"
        },
        {
            "id": "ed1184f0-bead-11ef-8eb1-99a3d423a033",
            "name": "Senior Carpenter"
        },
        {
            "id": "ed123370-bead-11ef-aba3-c5f55de98a9e",
            "name": "Senior Painter"
        },
        {
            "id": "ed12ce70-bead-11ef-b86f-25cb45d7733a",
            "name": "Site Incharge"
        },
        {
            "id": "ed135b90-bead-11ef-9695-797c52bca278",
            "name": "Site Leader"
        },
        {
            "id": "ed144b60-bead-11ef-9cec-4d2bfd641424",
            "name": "Admin Senior Executive"
        },
        {
            "id": "ed172710-bead-11ef-9ffd-e9b3090c0309",
            "name": "Assistant Training Manager"
        },
        {
            "id": "ed1821c0-bead-11ef-8a08-f1f158974376",
            "name": "Business Development Assistant Manager"
        },
        {
            "id": "ed1adc80-bead-11ef-9067-03c2cbdbcbb9",
            "name": "Field HR Senior Executive"
        },
        {
            "id": "ed1b70b0-bead-11ef-a5d5-65ce9db66ba7",
            "name": "Field QA"
        },
        {
            "id": "ed1cdfa0-bead-11ef-a189-51b8a90555da",
            "name": "Fixed Assests Controller"
        },
        {
            "id": "ed1d9ab0-bead-11ef-a0a3-0bd9d00d0938",
            "name": "Growth Marketing Senior Executive"
        },
        {
            "id": "ed1f3800-bead-11ef-b939-892c927ead0a",
            "name": "HR Internship"
        },
        {
            "id": "ed204a20-bead-11ef-a061-a3500fbcecda",
            "name": "HR Senior Executive"
        },
        {
            "id": "ed273600-bead-11ef-910f-ad035d6e7c1b",
            "name": "Interim Hotel Manager"
        },
        {
            "id": "ed27dad0-bead-11ef-bb5b-e322f62cdf53",
            "name": "Junior Sous Chef"
        },
        {
            "id": "ed29f500-bead-11ef-a57f-5fd308c31b3a",
            "name": "Receptionist/Night Auditor"
        },
        {
            "id": "ed2a9aa0-bead-11ef-a6b6-4db365fd5dd0",
            "name": "Restaurant Manager Consultant"
        },
        {
            "id": "ed3cef20-bead-11ef-bf2d-eff868f5afe6",
            "name": "Government Relationship and Admin Assistant Manager"
        },
        {
            "id": "ed42e0c0-bead-11ef-b11d-edf1cb68b295",
            "name": "Sales and Admin Manager"
        },
        {
            "id": "ed445110-bead-11ef-a70a-1d8cbf8ea16b",
            "name": "Senior Service Advisor and Warranty Administrator"
        },
        {
            "id": "ed484820-bead-11ef-ab64-8139d26fbb6d",
            "name": "Account Receivable Analyst"
        },
        {
            "id": "ed48eb50-bead-11ef-b2d1-7f27041e1498",
            "name": "Assistant Compliance Manager"
        },
        {
            "id": "ed4a6e60-bead-11ef-9e09-6f3514c0f112",
            "name": "Assistant Insurance Manager"
        },
        {
            "id": "ed511d60-bead-11ef-b1e4-abfb8158e71f",
            "name": "Assistant Manager (Collection)"
        },
        {
            "id": "ed51b7d0-bead-11ef-8b16-ff0e61e675a3",
            "name": "Associate Product Owner"
        },
        {
            "id": "ed537140-bead-11ef-bb1a-a1099f3ef3e1",
            "name": "Chief Account"
        },
        {
            "id": "ed587310-bead-11ef-8e6f-4b6e8e0d3b5d",
            "name": "E-Commerce Operations Associate"
        },
        {
            "id": "ed59ad80-bead-11ef-bc39-418fdd00f89c",
            "name": "General Manager (Products)"
        },
        {
            "id": "ed5b3c40-bead-11ef-aa07-61e3760b7ec4",
            "name": "Head of Internal Audit"
        },
        {
            "id": "ed5ca730-bead-11ef-b775-991c5f49c30c",
            "name": "Head of Retail (B2C)"
        },
        {
            "id": "ed5ef970-bead-11ef-9846-d94fe6d99e72",
            "name": "IoT Engineering Manager"
        },
        {
            "id": "ed5f81e0-bead-11ef-9f95-25cc5ae67416",
            "name": "IT Support (Intern)"
        },
        {
            "id": "ed6075b0-bead-11ef-b131-43af8e4f1acf",
            "name": "Junior HR & Admin Executive"
        },
        {
            "id": "ed622e70-bead-11ef-b124-e32b8309f2f0",
            "name": "Manager (Credit Control)"
        },
        {
            "id": "ed642410-bead-11ef-b931-ed5c27fe3840",
            "name": "Operation Associate"
        },
        {
            "id": "ed64ab80-bead-11ef-b799-41dc974ada41",
            "name": "Operation Specialist"
        },
        {
            "id": "ed65af30-bead-11ef-a679-530e006b9b3e",
            "name": "Operations (Intern) IoT"
        },
        {
            "id": "ed660910-34f4-11ee-8c1e-7bf8d3e6ad92",
            "name": "QA Manager"
        },
        {
            "id": "ed6967f0-bead-11ef-bd76-8562fe45e995",
            "name": "Scrum Master"
        },
        {
            "id": "ed6b58b0-bead-11ef-b69a-35637ec75840",
            "name": "Senior DevOps Engineer"
        },
        {
            "id": "ed6cd360-bead-11ef-9947-a34407cfec1d",
            "name": "Senior Key Account Manager"
        },
        {
            "id": "ed6d5960-bead-11ef-9d84-67a9d33dfa53",
            "name": "Senior Manager (Yoma Car Share & Yoma InnoSights)"
        },
        {
            "id": "ed6de000-bead-11ef-aa35-c34d36df947d",
            "name": "Senior Merchant Acquisition Specialist"
        },
        {
            "id": "ed6e5fd0-bead-11ef-a50d-aff52f1f420b",
            "name": "Senior Operation Associate"
        },
        {
            "id": "ed6ef8b0-bead-11ef-bfbe-4920d15d4b1c",
            "name": "Senior Operation Specialist"
        },
        {
            "id": "ed71ac70-bead-11ef-8ecb-f791cb19954c",
            "name": "Senior Manager (Customer Solutions & Car Share)"
        },
        {
            "id": "ed7231f0-bead-11ef-b212-6f3f28e3e980",
            "name": "Senior Manager (Marketing & Car Share)"
        },
        {
            "id": "ed734e60-bead-11ef-b045-f395f6cb2a45",
            "name": "System Monitor (Intern)"
        },
        {
            "id": "ed822390-bead-11ef-be05-7db68195ee77",
            "name": "Parts Sales Supervisor"
        },
        {
            "id": "ed857700-bead-11ef-96a2-055312b90a06",
            "name": "Sales & Service Administrator"
        },
        {
            "id": "ed88c4e0-bead-11ef-816a-db7635d8fe4e",
            "name": "Service Admin & Warranty Executive"
        },
        {
            "id": "ed8a6b60-bead-11ef-9d89-15f9d895ceb9",
            "name": "Showroom Cleaner"
        },
        {
            "id": "ed8b0f40-bead-11ef-84f4-13e36bc12e30",
            "name": "Spare Parts Warehouse Controller"
        },
        {
            "id": "ed8d7fa0-bead-11ef-b0b7-8f31424ea482",
            "name": "Tools Controller"
        },
        {
            "id": "ed96f640-bead-11ef-acff-73ad10407ccb",
            "name": "Assets Officer"
        },
        {
            "id": "ed986f70-bead-11ef-9dce-310cdb535ece",
            "name": "Assistant Engine Room In Charge"
        },
        {
            "id": "ed9997a0-bead-11ef-a522-f1c760afb4c4",
            "name": "Assistant Leasing Admin Manager"
        },
        {
            "id": "ed9a2730-bead-11ef-820d-f566d8ebc353",
            "name": "Assistant Safety & Security Manager"
        },
        {
            "id": "eda06280-bead-11ef-833f-85407bc15abf",
            "name": "Foreman (General)"
        },
        {
            "id": "eda6efe0-bead-11ef-9de2-2bb4fef03b50",
            "name": "Junior Event Executive"
        },
        {
            "id": "eda94680-bead-11ef-9a08-a71e72c8bab4",
            "name": "Junior Site Engineer (C&S)"
        },
        {
            "id": "edb0b4c0-bead-11ef-8f90-793134b9b366",
            "name": "Planning Manager"
        },
        {
            "id": "edb35b80-bead-11ef-883b-29e89792ec39",
            "name": "QA/QC Engineer"
        },
        {
            "id": "edb4c380-bead-11ef-b291-81ed9cd45c44",
            "name": "Recreation Manager"
        },
        {
            "id": "edb7aad0-bead-11ef-95b0-1b5cf0193fab",
            "name": "Senior Financial Analyst"
        },
        {
            "id": "edbc6cc0-bead-11ef-8994-fb4d6bdff478",
            "name": "Sit Supervisor(C&S)."
        },
        {
            "id": "edbd1580-bead-11ef-8a2e-c1896955dc26",
            "name": "Sit Supervisor(MEP)."
        },
        {
            "id": "edbe0740-bead-11ef-9835-e92782f956fc",
            "name": "Site Engineer (Archi / ID)"
        },
        {
            "id": "edbe9020-bead-11ef-8ceb-3f97fd3fb1d2",
            "name": "Site Engineer (C&S)"
        },
        {
            "id": "edc0a270-bead-11ef-b22f-1ded54a58eab",
            "name": "Site Supervisor (C&S)"
        },
        {
            "id": "edc16c30-bead-11ef-afc8-03fbdb16aef3",
            "name": "Site Supervisor (ID)"
        },
        {
            "id": "edc29170-bead-11ef-ac3a-8daaf62c05fc",
            "name": "Site Supervisor(ID)"
        },
        {
            "id": "edc60290-bead-11ef-b7bb-85c6601c4e0d",
            "name": "Assistant Account Manager"
        },
        {
            "id": "edccb970-bead-11ef-a53e-11fefdc405ba",
            "name": "Commis I - Pastry"
        },
        {
            "id": "edcd3b20-bead-11ef-9d63-e1b0484960f5",
            "name": "Commis II - Pastry"
        },
        {
            "id": "edcdb410-bead-11ef-9e89-9bd1daa65964",
            "name": "Cost Accountant"
        },
        {
            "id": "edd1b160-bead-11ef-9207-b9492937ee3a",
            "name": "Facility Officer"
        },
        {
            "id": "ede17060-bead-11ef-9eab-d3302c924881",
            "name": "Senior Sports & Recreation Executive"
        },
        {
            "id": "ede223d0-bead-11ef-9274-ff64a17b3673",
            "name": "Senior Sports Attendant"
        },
        {
            "id": "ede8d990-90eb-11ea-917b-ad24b4b991f9",
            "name": "Cluster In-Charge"
        },
        {
            "id": "ee07de20-44c2-11eb-ab47-2588fcd9fbfc",
            "name": "Fleet Manager (Customer Solutions)"
        },
        {
            "id": "ee2d4c40-bead-11ef-888b-3bd03d20010b",
            "name": "Inventory Officer"
        },
        {
            "id": "ee2df960-bead-11ef-908c-a93685328b5a",
            "name": "Junior Sous Chef - Pastry"
        },
        {
            "id": "ee3356a0-bead-11ef-8abd-43568862e40d",
            "name": "Quantity Surveyour(MEP)"
        },
        {
            "id": "ee391cc0-bead-11ef-9d6b-bf1965c4d0f1",
            "name": "Senior Procurment officer"
        },
        {
            "id": "ee949ec0-7957-11ea-ac88-f5fafd2ff875",
            "name": "Kyay Oh Helper"
        },
        {
            "id": "eee86040-537a-11ee-a203-1d7215d66da0",
            "name": "Leasing Operations Supervisor"
        },
        {
            "id": "ef0e3e70-586f-11ea-90cc-e7443cffd5ce",
            "name": "HR Admin"
        },
        {
            "id": "ef20cfc0-1794-11ec-a174-4f1b7e96195f",
            "name": "Project Consultant"
        },
        {
            "id": "ef39a8c0-1c42-11ec-b5cc-57f087ade828",
            "name": "Human Resources Assistant"
        },
        {
            "id": "ef46ee30-f870-11ed-aebf-b766a0d8ced0",
            "name": "Junior Service Technician"
        },
        {
            "id": "ef49d320-7957-11ea-84aa-372cf6369ad0",
            "name": "Assistant Store"
        },
        {
            "id": "ef8f2980-5ec3-11eb-bd17-950cdeb36a5b",
            "name": "Assistant Accounting Manager"
        },
        {
            "id": "ef94e8a0-81dc-11ee-8cec-f1bdf00d637c",
            "name": "Store Supervisor (Fuel)"
        },
        {
            "id": "efc23a30-6389-11ea-ad08-a785e5a3ff12",
            "name": "Senior Owner Laision Officer"
        },
        {
            "id": "f03f7550-6389-11ea-8680-5b5e896dfd1d",
            "name": "Senior Leasing Coordinator"
        },
        {
            "id": "f05078e0-4ef7-11ea-a683-a173f54587cd",
            "name": "EUS Engineer"
        },
        {
            "id": "f0811560-0e86-11ee-8388-73b824e78d7f",
            "name": "Chef De' Partie"
        },
        {
            "id": "f088d040-7957-11ea-9686-d119928742bd",
            "name": "Junior Bartender"
        },
        {
            "id": "f12ecdb0-6389-11ea-ac10-7994e62320b2",
            "name": "Operation Supervisor"
        },
        {
            "id": "f1371020-595e-11eb-b5f4-c354e085abfc",
            "name": " Head Waitress"
        },
        {
            "id": "f16a1df0-6389-11ea-a612-0b2f4de15588",
            "name": "Golf Course Superintendent"
        },
        {
            "id": "f1dff180-6389-11ea-a25c-91e6f515de43",
            "name": "Communications and PR Manager"
        },
        {
            "id": "f1ebec40-0fb0-11eb-b729-77f7cde7b698",
            "name": "Commercial & Contracts Director"
        },
        {
            "id": "f1f2b9c0-1aa6-11ec-975f-4b0d3abc7990",
            "name": "Finance Business Partner (Assistant Manager)"
        },
        {
            "id": "f256a340-6389-11ea-9cb2-9bb6454fd56b",
            "name": "Leasing Executive"
        },
        {
            "id": "f28337e0-537a-11ee-8b2b-238c096ac716",
            "name": "Junior Property Affairs Executive  "
        },
        {
            "id": "f2835ca0-c3c9-11ed-94a1-0b4b91f8c0c7",
            "name": "MEP Design Manager"
        },
        {
            "id": "f2c375f0-c3c9-11ed-b294-a50fb60d9d5e",
            "name": "MEP Engineer (ELV)"
        },
        {
            "id": "f2c7cb10-6389-11ea-9b75-7bd6c084fcaa",
            "name": "Procurement & Document Control Manager"
        },
        {
            "id": "f3007650-6389-11ea-971c-6be73e7fa27f",
            "name": "Senior Operation Engineer"
        },
        {
            "id": "f30de510-c3c9-11ed-b7db-a34a5eb27fe3",
            "name": "MEP Engineer"
        },
        {
            "id": "f3242430-94e0-11ec-8c67-f7bc6febb134",
            "name": "Technician - Electrical"
        },
        {
            "id": "f3398f30-6389-11ea-8546-53825393cef4",
            "name": "Sr. Leasing Executive"
        },
        {
            "id": "f3c13dd0-c60e-11ec-8d40-4dbbb4a04936",
            "name": "Design Archiect"
        },
        {
            "id": "f3c966c0-7957-11ea-aa7d-277ef8db6f64",
            "name": "Bus Person"
        },
        {
            "id": "f3dd1440-74af-11ec-ac2b-c9990d1b66b4",
            "name": "Business Analyst-Digital and Social Media"
        },
        {
            "id": "f406b960-74af-11ec-9761-5d9200989ada",
            "name": "Senior Nursing Specialist"
        },
        {
            "id": "f48def60-6021-11ee-8559-09523e774ca1",
            "name": "Operation Lead"
        },
        {
            "id": "f4965f40-a59d-11ec-8d50-c3f7d4cda1bc",
            "name": " Technician Grade III "
        },
        {
            "id": "f4ab6360-8a13-11ea-84e7-7bafff7db828",
            "name": "Caddy Master"
        },
        {
            "id": "f5546b40-7f77-11ee-b772-8f44562b0a86",
            "name": "Assistant Marketing Manager - Hotels Experiences"
        },
        {
            "id": "f57ce8e0-ea71-11e9-a4f1-bfe1c3b066f7",
            "name": "Junior Graphic Designer"
        },
        {
            "id": "f59c4fe0-7957-11ea-9bfb-7bc8482b5cba",
            "name": "Trainee Kyay Oh"
        },
        {
            "id": "f5ef4000-9f1c-11ea-9dd9-bf0b6a038bdb",
            "name": "Inventory and Warehouse Controller "
        },
        {
            "id": "f6357310-00be-11ec-95de-17e90a5065ca",
            "name": "Head,IT Department"
        },
        {
            "id": "f6cfa9c0-7957-11ea-a55a-41fc95dd235e",
            "name": "Trainee Floor"
        },
        {
            "id": "f7592af0-7957-11ea-b3cf-1fe7f420222c",
            "name": "Trainee BBQ"
        },
        {
            "id": "f7e29ec0-aa5f-11ec-80a9-8b3ded43dc5b",
            "name": "Assistant Caddy Master"
        },
        {
            "id": "f847dd50-51e8-11ee-8a6c-f9a59490f97a",
            "name": "Senior Account Analyst"
        },
        {
            "id": "f84dbc80-61de-11eb-8a58-0d9a96eb675e",
            "name": "General Manager (New Holland After Sales and Used Equipment)"
        },
        {
            "id": "f8840440-4a5d-11eb-996b-95b7a0b662ce",
            "name": "Assistant Operations Manager"
        },
        {
            "id": "f8caf340-592b-11ea-9916-355aebde7c92",
            "name": "National Brand Director"
        },
        {
            "id": "f8f4f250-592b-11ea-9908-cf8bd857f280",
            "name": "National Aftersales Manager"
        },
        {
            "id": "f906d860-46e4-11ee-b5f9-11bf53bbb67a",
            "name": "Account Reveivable Coordinator"
        },
        {
            "id": "f91c76a0-3d45-11ed-a206-896eb3648649",
            "name": "Sales Operation Assistant Manager"
        },
        {
            "id": "f91f07a0-592b-11ea-a9b8-596636eb82b2",
            "name": "Master Technician"
        },
        {
            "id": "f961de80-a63c-11ea-9f14-35ef37281bea",
            "name": "Estate Service Manager"
        },
        {
            "id": "f96ad320-58e0-11eb-90c8-eb5f37431e2f",
            "name": "Area Head Waiter"
        },
        {
            "id": "f9721010-592b-11ea-81da-a91abceef0e9",
            "name": "Workshop Manager/ Master Technician"
        },
        {
            "id": "fa278810-d5b8-11ec-ac96-a39b88d6f93a",
            "name": "Assistant to Group Head of HR"
        },
        {
            "id": "fa856e60-c0d5-11ea-986e-c12cea59d4f1",
            "name": "Head of sales"
        },
        {
            "id": "fad76dd0-599f-11eb-be0f-9dd53538b3ef",
            "name": "Dishwasher"
        },
        {
            "id": "fad88e60-2ef5-11eb-a348-5307c3748f8b",
            "name": "Site Engineer (ID & Finishing)"
        },
        {
            "id": "faf6ce10-599a-11eb-99a0-b772a1a1b12c",
            "name": "Jr; Kyay Oh"
        },
        {
            "id": "fafd9810-789f-11ed-920a-915bae17f44a",
            "name": "Junior Site Engineer (MEP)"
        },
        {
            "id": "fb135440-4ef6-11ea-99d2-5f7672d6cfcc",
            "name": "Application Coordinator"
        },
        {
            "id": "fb1a1040-4dfd-11ee-ad23-09f162daf830",
            "name": "ABCD"
        },
        {
            "id": "fb3048d0-e70d-11ec-80f0-23ae6a566c17",
            "name": "Documentation Coordinator"
        },
        {
            "id": "fb348ba0-9046-11ea-b8cf-ed9c42531ed6",
            "name": "Myanmar Advisor"
        },
        {
            "id": "fb4a02d0-599a-11eb-9454-f5be8cdfb955",
            "name": "Ko-Helper"
        },
        {
            "id": "fb644ba0-599a-11eb-8e63-29559f157549",
            "name": "Bar  Captain"
        },
        {
            "id": "fb6d6b90-588e-11ea-b236-977197ed8a67",
            "name": "Senior Sonographer"
        },
        {
            "id": "fb6ed520-146b-11ec-b4be-637bf7cf911e",
            "name": "HR & Administration Director"
        },
        {
            "id": "fb95fd80-588e-11ea-962a-952efe17b23c",
            "name": "Radiographer "
        },
        {
            "id": "fbab46e0-9b0d-11ea-b253-930e9e31c43c",
            "name": "Landscape Designer"
        },
        {
            "id": "fbbdf300-588e-11ea-8b8c-73ff2d815b48",
            "name": "Sr. Radiographer"
        },
        {
            "id": "fbd44260-789f-11ed-bedf-ed3056f7fe1c",
            "name": "Junior Quantity Surveyor (Civil)"
        },
        {
            "id": "fc05e940-9b0d-11ea-9009-b3b4d0971aba",
            "name": "Structural Engineer"
        },
        {
            "id": "fc0ce6d0-e336-11ed-ba8a-bb8253e8d541",
            "name": "Merchant Support Executive"
        },
        {
            "id": "fc1394e0-c3d3-11ed-a728-7fe7cbfa039d",
            "name": "Spare Parts Administrator"
        },
        {
            "id": "fc2a4030-98a1-11ee-b046-85f9be30a4d9",
            "name": "Customer Insights Sr. Executive "
        },
        {
            "id": "fc5a7850-d0d3-11ec-aaf5-a3062b2bed5c",
            "name": "Network Engineer"
        },
        {
            "id": "fc6647f0-ca97-11ea-8e81-4f8c8407b857",
            "name": "Assistant Transport Officer"
        },
        {
            "id": "fc6df1d0-ed57-11ed-90f9-fde6a39cd665",
            "name": "Senior Credit Control Officer"
        },
        {
            "id": "fcc06560-7957-11ea-b5b6-59858dbcccfc",
            "name": "Dish Washer"
        },
        {
            "id": "fcd29d60-d94b-11eb-abc6-8b32c800b1c3",
            "name": "Driver Mechanic"
        },
        {
            "id": "fcd4b480-588e-11ea-99eb-d5937134903a",
            "name": "Radiographer (Part Time)"
        },
        {
            "id": "fcf41e00-6ccc-11ee-98a6-dd60dd8182ec",
            "name": "Service Admin & Tools Keeper"
        },
        {
            "id": "fd4d40f0-074a-11ea-8cb8-4dc3aec9cf0d",
            "name": "In-house Trainer"
        },
        {
            "id": "fdb75d40-9b0d-11ea-b951-dd29db7e836c",
            "name": "Contract Manager"
        },
        {
            "id": "fde1d510-4df8-11ee-a8a1-a778a88099a2",
            "name": "Assistant HR Manager (Talent Acquisition)"
        },
        {
            "id": "fdef46c0-d202-11ec-acfd-23ab70c929b8",
            "name": "Accountant (Receivable)"
        },
        {
            "id": "fe0b9480-d3f2-11eb-bd55-73cc326a40af",
            "name": "Pro shop Sales Staff"
        },
        {
            "id": "fe118f20-9b0d-11ea-a3b8-a561d2566122",
            "name": "Assistant Staff Quarter Incharge"
        },
        {
            "id": "fe151ef0-0e4b-11ed-8f54-bd723d337fd6",
            "name": "Quality Assurance Team Lead"
        },
        {
            "id": "fe17c1e0-22f2-11ed-8aac-292ba086244e",
            "name": "Resident Medical Officer (PGY 1)"
        },
        {
            "id": "fe75f240-588e-11ea-b80c-73b26c1e6bb8",
            "name": "Sr. Radiographer (Part Time)"
        },
        {
            "id": "fe9742e0-c6ed-11ed-bfa7-a7be909508fe",
            "name": "Senior Service Engineer"
        },
        {
            "id": "fec65ca0-d202-11ec-94d8-eb6d9173a1d3",
            "name": "Laundry Assistant"
        },
        {
            "id": "fedf5460-12d5-11eb-a752-93d4a19dc417",
            "name": "Yoma Central Office Research Analyst"
        },
        {
            "id": "ff502260-588e-11ea-9023-89357158c7cf",
            "name": "Sr. Pharmacist"
        },
        {
            "id": "ff88a980-7eb9-11ed-909e-43ff8442dbf1",
            "name": "Maw Tin (Plantation)"
        },
        {
            "id": "fff7a8d0-e208-11ea-ad1d-a39e9c846ddb",
            "name": "Sir HK Attendant"
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/positions

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/employee-statuses

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/employee-statuses" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employee-statuses"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Statuses retrieved successfully",
    "data": [
        {
            "id": "83bebae0-bf71-11e9-86bc-aba7866b1291",
            "name": "Active",
            "daterange_status": false,
            "employees_count": 6973
        },
        {
            "id": "83c0dde0-bf71-11e9-bb14-ede29e0cce63",
            "name": "Deactive",
            "daterange_status": false,
            "employees_count": 358
        },
        {
            "id": "83c14cf0-bf71-11e9-a218-f9ca5844ab60",
            "name": "Deleted",
            "daterange_status": false,
            "employees_count": 5
        },
        {
            "id": "a4677ae0-c70a-11ea-a9fc-c996d8f47ce5",
            "name": "Dismissed",
            "daterange_status": false,
            "employees_count": 103
        },
        {
            "id": "6f6224f0-91ef-11eb-afd1-c3fc6ae9264f",
            "name": "Furlough",
            "daterange_status": true,
            "employees_count": 8
        },
        {
            "id": "c21fcbe0-96b4-11eb-82a5-3faf1317a10c",
            "name": "LWP – Leave without pay",
            "daterange_status": false,
            "employees_count": 3
        },
        {
            "id": "a0646660-c70a-11ea-9eb8-a99273f35cdf",
            "name": "Resigned",
            "daterange_status": false,
            "employees_count": 4121
        },
        {
            "id": "44f40ae0-abc6-11eb-ba55-0f9838ef311f",
            "name": "Retrench",
            "daterange_status": false,
            "employees_count": 557
        },
        {
            "id": "019c037f-a669-72db-824c-bd07091ae066",
            "name": "Status",
            "daterange_status": false,
            "employees_count": 0
        },
        {
            "id": "a911f720-c70a-11ea-bbf7-b15ff0ccecb7",
            "name": "Terminated",
            "daterange_status": false,
            "employees_count": 661
        },
        {
            "id": "019c035a-7049-70f3-a98e-65db793d5b26",
            "name": "Test",
            "daterange_status": false,
            "employees_count": 0
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/employee-statuses

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/employee-statuses

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/employee-statuses" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employee-statuses"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/employee-statuses

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

DELETE api/v1/employee-statuses/{id}

requires authentication

Example request:
curl --request DELETE \
    "http://localhost/api/v1/employee-statuses/architecto" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employee-statuses/architecto"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

DELETE api/v1/employee-statuses/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the employee status. Example: architecto

GET api/v1/utilities/nationalities

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/utilities/nationalities" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/utilities/nationalities"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Failed to retrieve nationalities"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/utilities/nationalities

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/utilities/townships

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/utilities/townships" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/utilities/townships"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Failed to retrieve townships"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/utilities/townships

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/utilities/ssb-companies-no

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/utilities/ssb-companies-no" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/utilities/ssb-companies-no"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Failed to retrieve SSB Companies No"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/utilities/ssb-companies-no

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/utilities/ssb-companies-name

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/utilities/ssb-companies-name" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/utilities/ssb-companies-name"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Failed to retrieve SSB Companies Name"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/utilities/ssb-companies-name

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/utilities/sections

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/utilities/sections" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/utilities/sections"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Sections retrieved successfully",
    "data": [
        {
            "id": "00aa0320-09a0-11ee-ba5c-675670c5f19d",
            "name": "Landscaping (Construction)"
        },
        {
            "id": "019c065d-ba4a-7109-9c2d-1e22bb924f4c",
            "name": "Power Ranger"
        },
        {
            "id": "019c0d6f-7c4c-70e2-bf23-62cf8b06d6a7",
            "name": "Data"
        },
        {
            "id": "01e9e2c0-7075-11eb-b9ab-ff012ab19473",
            "name": "Estate Maintenance"
        },
        {
            "id": "01f98bf0-2b28-11eb-ae88-216000fe7f0c",
            "name": "Yoma Land"
        },
        {
            "id": "026b2640-78a0-11ed-bd65-f3b211ca7676",
            "name": "Atlas Bar"
        },
        {
            "id": "02bce2e0-ed75-11ed-b32a-e70e847aa570",
            "name": "PDG - O & M"
        },
        {
            "id": "081c4460-2b28-11eb-856d-5d7436c6b50e",
            "name": "Architectural Design Team "
        },
        {
            "id": "0d924440-fe75-11eb-866f-75050377866b",
            "name": "EM-Office"
        },
        {
            "id": "107e2170-1886-11ed-985f-e3054066390c",
            "name": "Horizons Restaurant"
        },
        {
            "id": "10df4aa0-0121-11ee-bfe8-a985f7522fee",
            "name": "Finance (Credit Control)"
        },
        {
            "id": "1111ae00-1a23-11ee-a7f2-b5d57896caf9",
            "name": "Finance (SCSC)"
        },
        {
            "id": "12e52d30-584f-11ee-8d6d-5b078cb07aa9",
            "name": "Golf Course"
        },
        {
            "id": "12ea0830-0f70-11ee-8d64-e11e83ef08a7",
            "name": "CC - Front Office"
        },
        {
            "id": "144b5160-d7ef-11eb-a5eb-35eafb4bf593",
            "name": "Security(Compound)"
        },
        {
            "id": "16d98f90-63aa-11ec-ad85-0585b257b2ec",
            "name": "Resales"
        },
        {
            "id": "170ad7f0-7e8c-11ec-8aed-636425800b12",
            "name": "City Loft West"
        },
        {
            "id": "1749bc40-07db-11ed-a99a-fbf8d6077845",
            "name": "Business Development"
        },
        {
            "id": "1a2cffb0-3e0f-11ed-aa27-65d6d7d36284",
            "name": "Renovation & Fit-Out Team"
        },
        {
            "id": "1adfbd20-730e-11ee-9535-779fb8f80415",
            "name": "Awei Mett F&B"
        },
        {
            "id": "1b8885a0-cb8c-11ec-9497-9d97e0ad7793",
            "name": "SCIS"
        },
        {
            "id": "1b8f7910-eb86-11ec-8c9b-d347b3937900",
            "name": "Building Maintenance"
        },
        {
            "id": "1bfda3b0-f86e-11ed-afc9-410ba1d7d532",
            "name": "Finance(SCSC)"
        },
        {
            "id": "1f8a7410-ad1d-11ec-b6f1-3376b88c3e2b",
            "name": "Food & Beverage"
        },
        {
            "id": "20526a70-ad1d-11ec-8fce-2f3afc86ba1f",
            "name": "EM (Office)"
        },
        {
            "id": "23525eb0-f068-11ea-851d-a1ef375176f2",
            "name": "Finance (UO)"
        },
        {
            "id": "24186d40-7eb9-11ed-84a0-77563da192d4",
            "name": "S&R(City Loft)"
        },
        {
            "id": "24af7db0-7eb9-11ed-924c-cfaafd5f0be4",
            "name": "Security (City Loft)"
        },
        {
            "id": "24ba8f90-e2e0-11ec-8e1a-afb74628ae83",
            "name": "Sports and Recreation"
        },
        {
            "id": "25460da0-d13a-11ec-8711-cb516842673a",
            "name": "Operation"
        },
        {
            "id": "2689faa0-7471-11ec-bf0c-651eb649a0e9",
            "name": "Nursing"
        },
        {
            "id": "27cddf50-f068-11ea-a9f8-79b00c28fea4",
            "name": "Operations"
        },
        {
            "id": "27d210e0-520d-11ee-bec5-4739eaa31775",
            "name": "M & E"
        },
        {
            "id": "28042c00-f068-11ea-9586-371775fb504f",
            "name": "Finance"
        },
        {
            "id": "29286bf0-0121-11ee-a2f0-5d9e76151a8a",
            "name": "(EMO A&B)"
        },
        {
            "id": "2af96150-cf53-11ec-a975-7f0c717ffd95",
            "name": "FMI Flotilla"
        },
        {
            "id": "2c6c0920-d71f-11ec-96be-47abae9f12d8",
            "name": "Utility and Infra"
        },
        {
            "id": "2cd02f50-9354-11ee-8739-8f6b6ac0db82",
            "name": "Contract and Project Cost Control Section"
        },
        {
            "id": "2d678220-6af5-11ed-82df-a1c94efa1cf1",
            "name": "Logistics"
        },
        {
            "id": "2e0bd960-6af5-11ed-9f4d-bd504fef1650",
            "name": "Project Management"
        },
        {
            "id": "2ee71490-23de-11eb-a6ba-3b40ac35ca92",
            "name": "Group Reporting"
        },
        {
            "id": "2f14ddb0-7471-11ec-9fc1-ed977f7b6284",
            "name": "People Management & Development"
        },
        {
            "id": "2f55dc60-cd11-11ec-bea3-0fbc9c359cfb",
            "name": "Pun Hlaing Estate Landscaping"
        },
        {
            "id": "300ec1b0-6ec8-11ed-9248-691a8353762f",
            "name": "City Villas"
        },
        {
            "id": "30b09b00-22d9-11ed-94bf-b1e7a99f22de",
            "name": "PHGC - Building Maintenance"
        },
        {
            "id": "32017fd0-cf53-11ec-894c-77245c665a90",
            "name": "Pun Aekary"
        },
        {
            "id": "34d06bc0-dfe1-11ea-a9b9-bb64f809691c",
            "name": "Golf Course Maintenance"
        },
        {
            "id": "35867c80-dfe1-11ea-a92f-937296a81fff",
            "name": "Golf Course Landscape"
        },
        {
            "id": "36cddc80-7471-11ec-962d-c7d808a323f9",
            "name": "Supply Chain"
        },
        {
            "id": "36d378e0-0f70-11ee-9372-41d5f58abd48",
            "name": "CC - Finance"
        },
        {
            "id": "37b893c0-9354-11ee-81d7-f9823652c8cd",
            "name": "Finance & Account Section"
        },
        {
            "id": "3a31a9b0-3a75-11ee-9110-0756464d53ea",
            "name": "Driver"
        },
        {
            "id": "3afc7d30-520d-11ee-bce6-9dc8719e5d7f",
            "name": "IT"
        },
        {
            "id": "3b63a920-0199-11eb-bbd5-056d046e7f1f",
            "name": "PHGC - Housekeeping"
        },
        {
            "id": "3e639140-7471-11ec-9b58-192fa9f315e6",
            "name": "Technician"
        },
        {
            "id": "3e685aa0-6f25-11ee-a590-15f6c6dd8699",
            "name": "Finance (Facility)"
        },
        {
            "id": "3fd397c0-4404-11ee-a2bb-e9d9f10d2d69",
            "name": "Kitchen - ADD"
        },
        {
            "id": "410c3810-0199-11eb-8704-d1012d7999e5",
            "name": "PHGC - Administration"
        },
        {
            "id": "413574a0-0052-11ee-a463-0dd916757b3b",
            "name": "UO - Portal Water"
        },
        {
            "id": "413e20c0-9354-11ee-8b25-59bde13cbe7b",
            "name": "HR & Corporate Planning Section"
        },
        {
            "id": "41ad8720-7ab5-11ed-8924-43873deabc41",
            "name": "Star City Sports Club"
        },
        {
            "id": "425a9660-0199-11eb-a7d2-097cd9e32aac",
            "name": "PHGC - Proshop"
        },
        {
            "id": "440b0180-0f70-11ee-83e8-9161a42e9431",
            "name": "Buggy Service"
        },
        {
            "id": "44ce6ec0-4404-11ee-ad88-5db84b7e9678",
            "name": "Kitchen - FD"
        },
        {
            "id": "49743200-71cc-11ea-bf30-55b44ed31ead",
            "name": "Head Office"
        },
        {
            "id": "4a121f00-d208-11ec-81a0-f1b44ab10539",
            "name": "Customer Care and Loyalty"
        },
        {
            "id": "4b384690-4404-11ee-8ee3-17bccb53987c",
            "name": "F&B - ADD"
        },
        {
            "id": "4b577d50-9354-11ee-9ffd-e7d010428124",
            "name": "Installation Section"
        },
        {
            "id": "4c69fe20-d208-11ec-883a-a73cecb8ab1a",
            "name": "Branding and Communications"
        },
        {
            "id": "4c7def30-09bf-11ee-87b4-a9708c3ed439",
            "name": "F&B Service"
        },
        {
            "id": "4e1b7c90-74b0-11ec-b933-a5a040d9f699",
            "name": "Corporate Support Services"
        },
        {
            "id": "4eed3af0-84c9-11ec-a2ce-49d2e5d46242",
            "name": "Corporate Sales"
        },
        {
            "id": "4f5de740-4404-11ee-801e-5fd67fcba4ec",
            "name": "F&B - FD"
        },
        {
            "id": "4fd7adc0-3297-11ee-a795-1f4d4c95d461",
            "name": "Project Development"
        },
        {
            "id": "51f69150-e25f-11ed-b54e-57d2e32d63fb",
            "name": "Finance (City Loft West)"
        },
        {
            "id": "52460ab0-cce2-11ec-ae36-6988a6ee72db",
            "name": "Security - Compound"
        },
        {
            "id": "527efa60-cce2-11ec-8e8b-017fda4776da",
            "name": "Repair and Maintenance "
        },
        {
            "id": "548380d0-012c-11ee-bc9f-b7f4ba34f470",
            "name": "PDG - Security"
        },
        {
            "id": "54cbcba0-b56f-11ec-b22c-ffca0a77fb23",
            "name": "Star Villa"
        },
        {
            "id": "55260300-62d3-11ec-a3d4-97a4a588dddd",
            "name": "TED - Hanger"
        },
        {
            "id": "5623c9f0-e25f-11ed-a6a9-4f34a0716d8e",
            "name": "(EMO CL&CV)"
        },
        {
            "id": "56a93d00-68b5-11ee-9b6c-675635b06d4a",
            "name": "Finance (Estella)"
        },
        {
            "id": "574cbc00-0052-11ee-a999-cfaf04485b30",
            "name": "UO - Office"
        },
        {
            "id": "57a7e440-64fd-11ed-a1db-9d8a0a376138",
            "name": "Sabila"
        },
        {
            "id": "57ccb790-87e2-11ec-bba5-a956139b4c78",
            "name": "PHGC-Housekeeping"
        },
        {
            "id": "598866b0-5b5e-11ee-9c24-9549376324e6",
            "name": "F & B"
        },
        {
            "id": "59d683e0-9b72-11ec-a1a0-474797dfbb82",
            "name": "Star City Sport Club"
        },
        {
            "id": "5bd4fc20-9354-11ee-9ba9-211443ce9942",
            "name": "Logistics Section"
        },
        {
            "id": "5bf29f70-e601-11eb-8e26-79a36d717709",
            "name": "Security & Fire"
        },
        {
            "id": "5c4df000-e601-11eb-a2a9-05004ecd95e3",
            "name": "NA"
        },
        {
            "id": "5da11f7d-5f0f-11ec-baa7-06ca9e02f304",
            "name": "Talent Acquisition"
        },
        {
            "id": "5da12151-5f0f-11ec-baa7-06ca9e02f304",
            "name": "Oasis Bistro/Campus Café"
        },
        {
            "id": "5da1219b-5f0f-11ec-baa7-06ca9e02f304",
            "name": "Pastry"
        },
        {
            "id": "5da121c9-5f0f-11ec-baa7-06ca9e02f304",
            "name": "Estate Management"
        },
        {
            "id": "5da121f1-5f0f-11ec-baa7-06ca9e02f304",
            "name": "Chief Advisor Office"
        },
        {
            "id": "5da12221-5f0f-11ec-baa7-06ca9e02f304",
            "name": "Marketing & Communication"
        },
        {
            "id": "5da12244-5f0f-11ec-baa7-06ca9e02f304",
            "name": "Utility Main Construction"
        },
        {
            "id": "5fde71e0-0709-11ec-ba8b-4990e12aea6f",
            "name": "Cost & Contracts"
        },
        {
            "id": "60187420-0709-11ec-ad22-ebd8be079553",
            "name": "Leasing (Hanger)"
        },
        {
            "id": "6070d8c0-0709-11ec-8593-d10d96a3b8df",
            "name": "Security"
        },
        {
            "id": "60762160-e25f-11ed-bc0f-137c91f8bf9f",
            "name": "(EMO Galaxy & SV)"
        },
        {
            "id": "63d9dc10-d162-11ec-8a91-15d571636e72",
            "name": "Shop Management"
        },
        {
            "id": "6442f100-6113-11eb-b3b4-1d8ce77ebdcc",
            "name": "Utility Operation ( Operation )"
        },
        {
            "id": "65deea80-7d64-11ee-be54-cb83fad2e79a",
            "name": "Estella"
        },
        {
            "id": "664b6b20-69bc-11ee-9ac2-b51c37b26e28",
            "name": "Awei Metta F&B"
        },
        {
            "id": "67199170-71d7-11ea-8fb7-c1148fde2e74",
            "name": "Admin"
        },
        {
            "id": "67817cf0-9354-11ee-aab9-7506f529b957",
            "name": "Maintenance Section"
        },
        {
            "id": "6a898ce0-dbd5-11ec-ac5b-e550badd6443",
            "name": "YDG - Leasing (Campus)"
        },
        {
            "id": "6acab280-48b2-11ea-b6e4-75fe4c3d6e20",
            "name": "M&E"
        },
        {
            "id": "70708340-b16a-11ec-a940-dd8224029fcc",
            "name": "Investment Management"
        },
        {
            "id": "74fb39f0-3e10-11ed-8ae0-b3045f2bdbc4",
            "name": "City Villa"
        },
        {
            "id": "76fdb400-6213-11ec-9dd4-b17587089397",
            "name": "Veggie Farm"
        },
        {
            "id": "776109a0-2101-11ec-9108-cfba4d1d4cbf",
            "name": "Interior"
        },
        {
            "id": "784774e0-11d7-11eb-a494-c16121e45165",
            "name": "EM (MO City Loft)"
        },
        {
            "id": "7a82af90-d158-11ec-b260-1554ba00fc18",
            "name": "Sales, Marketing, IT& BD"
        },
        {
            "id": "7b5fe470-d197-11ec-a2ba-2f87ef221bf4",
            "name": "EM (MO A-5)"
        },
        {
            "id": "7be74a40-d197-11ec-a9d8-75cc0e4938a1",
            "name": "Legal"
        },
        {
            "id": "7cb6a6c8-146c-11ec-a4b2-06ca9e02f304",
            "name": "YBHQ"
        },
        {
            "id": "7ecfd160-f91e-11ed-a179-af684473375e",
            "name": "British Club"
        },
        {
            "id": "7ed36220-9354-11ee-b7e7-e7216532f13c",
            "name": "New Sales Section"
        },
        {
            "id": "7f949c00-c2fe-11ed-8974-a7c328050732",
            "name": "YDG - Transport"
        },
        {
            "id": "8059a220-c2fe-11ed-9916-f317ce7f3cb1",
            "name": "Campus - Transport"
        },
        {
            "id": "81c85be0-218b-11ea-a1fb-33108ad229d2",
            "name": "Kitchen"
        },
        {
            "id": "821cab80-218b-11ea-845c-4f616a5ad536",
            "name": "Management"
        },
        {
            "id": "824bfb70-218b-11ea-9df8-95ba661552af",
            "name": "FOH"
        },
        {
            "id": "827af2b0-218b-11ea-8249-9d3f8dd6c44e",
            "name": "Cashier"
        },
        {
            "id": "82c1cbe0-218b-11ea-ad20-c9bf3238fe02",
            "name": "Assembler"
        },
        {
            "id": "82d98c80-218b-11ea-90ae-3f0e5854e9a7",
            "name": "Pantry"
        },
        {
            "id": "8454a600-52e8-11ee-8f6c-e32932c425cf",
            "name": "Reservation"
        },
        {
            "id": "84945898-146c-11ec-a4b2-06ca9e02f304",
            "name": "Star Villas"
        },
        {
            "id": "862a92e0-1a21-11ee-bfc0-f79277c691b2",
            "name": "Hotels"
        },
        {
            "id": "877c7860-52e8-11ee-82d0-a7b7b8c9e440",
            "name": "CEO "
        },
        {
            "id": "8797fd10-7470-11ec-8c7e-a12bdeee39d1",
            "name": "Branding & Communication"
        },
        {
            "id": "879efe80-8299-11ed-8b06-f30cebc1add2",
            "name": "Finance (City Loft)"
        },
        {
            "id": "8841b570-f5d3-11ea-a960-cfb8bd519855",
            "name": "Leasing"
        },
        {
            "id": "899281d0-d720-11ec-84bd-49158513842b",
            "name": "Landscape"
        },
        {
            "id": "8a905930-9354-11ee-9f06-99b61cd4dc87",
            "name": "Procurement Section"
        },
        {
            "id": "8cd319a0-0120-11ee-aff9-37398e1cc4ab",
            "name": "Security (City Loft West)"
        },
        {
            "id": "8d4cbb90-4f42-11eb-8fcc-b78cb6b860e2",
            "name": "Assambler"
        },
        {
            "id": "8ed1038d-146c-11ec-a4b2-06ca9e02f304",
            "name": "SV & CLW"
        },
        {
            "id": "8f61dec0-eb99-11ea-8ac6-79064db9cf2b",
            "name": "Golf Course Operation"
        },
        {
            "id": "8fbf0220-eb99-11ea-bcce-fb4fcb9c7c70",
            "name": "Star City Marketing & Communication"
        },
        {
            "id": "90183300-eb99-11ea-947b-d18613e79f33",
            "name": "Landscaping"
        },
        {
            "id": "90d583a0-eb99-11ea-9939-175091734743",
            "name": "Utility Operation (Operation)"
        },
        {
            "id": "91318fc0-eb99-11ea-875a-277251c849a3",
            "name": "Golf Course Maintenance Operation"
        },
        {
            "id": "915796e0-fbb9-11ec-8c4b-2da8732e9994",
            "name": "Pun Hlaing Hospitals - Hlaing Tharyar"
        },
        {
            "id": "9307c020-eb99-11ea-ae8d-43adc349efbf",
            "name": "PHCC - Housekeeping"
        },
        {
            "id": "93c35cf0-4395-11ec-a6bf-991d591b8973",
            "name": "YDG Transport"
        },
        {
            "id": "94106a70-9354-11ee-bba3-c947ab4be524",
            "name": "QC Section"
        },
        {
            "id": "94a91e70-534d-11eb-95a7-fd58d4ab3e48",
            "name": "EM(HK)"
        },
        {
            "id": "99dec8b0-2482-11ee-bea9-e9db266902b1",
            "name": "Pun Hlaing Lodge Hotel Management Limited"
        },
        {
            "id": "9a376ba0-07d3-11ed-92cf-338d687cd033",
            "name": "Customer Service"
        },
        {
            "id": "9a8f8a7d-146c-11ec-a4b2-06ca9e02f304",
            "name": "CLW"
        },
        {
            "id": "9ac1ffc0-0e85-11ee-b349-176c945cdbeb",
            "name": "City Villas X"
        },
        {
            "id": "9b07bea0-09d5-11ed-bd39-69c637f7c0ab",
            "name": "PDG"
        },
        {
            "id": "9ba2be90-4395-11ec-a395-1f74b5b077b6",
            "name": "HRGCCL Transport"
        },
        {
            "id": "9c53d7d0-7470-11ec-93c5-2149f14ec199",
            "name": "CEO Office"
        },
        {
            "id": "9c944840-0e85-11ee-ba34-73251a740bf4",
            "name": "Finance(Cashier)"
        },
        {
            "id": "9ce20ff0-5156-11ee-b9d1-315ad23e2bc6",
            "name": "Galaxy Tower"
        },
        {
            "id": "9d747e30-c18d-11ea-9781-5b35e299c679",
            "name": "Carshare"
        },
        {
            "id": "9e0c02c0-5b07-11eb-81eb-2730d17f7c98",
            "name": "PHE Sales"
        },
        {
            "id": "9e429140-0e85-11ee-8132-b1af60230e34",
            "name": " City Loft"
        },
        {
            "id": "9e7f1bf0-b075-11ed-bd16-c9b042c787b2",
            "name": "Locale"
        },
        {
            "id": "9f1acdb0-5709-11ec-beb6-5dfd524159a6",
            "name": "Food and Beverage"
        },
        {
            "id": "9f3b0aa0-9354-11ee-8f31-45f38768a2ea",
            "name": "Safety Assurance Section"
        },
        {
            "id": "a21d28b0-0120-11ee-83d1-1bcf7b5bc787",
            "name": "Hangar (Security)"
        },
        {
            "id": "a3bc4440-24ef-11ec-a123-6d26099e9c05",
            "name": "Housekeeping"
        },
        {
            "id": "a3c4534c-146c-11ec-a4b2-06ca9e02f304",
            "name": "U & I"
        },
        {
            "id": "a3eb1800-24ef-11ec-9fd2-6b1c773103bb",
            "name": "PHEM - Housekeeping"
        },
        {
            "id": "a418e500-24ef-11ec-b7b2-7d37177e35a4",
            "name": "Utility Operation"
        },
        {
            "id": "a42fc960-7470-11ec-ae64-e18370ac22d4",
            "name": "Clinical Excellence"
        },
        {
            "id": "a5a278a0-0704-11eb-8bf5-a9234434e77b",
            "name": "Estate Sanitation"
        },
        {
            "id": "a630c8e0-0709-11ec-bf39-ad3df373eb82",
            "name": "Hanger"
        },
        {
            "id": "a6f832e0-4395-11ec-9dc7-a9c856e42faf",
            "name": "Campus Transport"
        },
        {
            "id": "a7f5ed20-9354-11ee-b2b1-031fff0276a1",
            "name": "Sales Engineering"
        },
        {
            "id": "a9025f10-353c-11ec-a5f0-59638d590449",
            "name": "Structural"
        },
        {
            "id": "a9e36d20-a59c-11ec-98d3-93be9922545e",
            "name": " Veggie Farm "
        },
        {
            "id": "aac4031b-146c-11ec-a4b2-06ca9e02f304",
            "name": "Protocol"
        },
        {
            "id": "aad55850-a59c-11ec-8644-c18b3ff2ed47",
            "name": " Air-con Team "
        },
        {
            "id": "aba438c0-a59c-11ec-84c1-77766a7afd7a",
            "name": " Housekeeping "
        },
        {
            "id": "ac264020-7470-11ec-aa5c-891dc70750fe",
            "name": "Clinical Operations"
        },
        {
            "id": "ad6890d0-0437-11ee-b10f-97c643430306",
            "name": "Finance (Leasing)"
        },
        {
            "id": "ad936750-f52b-11ea-8bc8-3751387ed50a",
            "name": "Credit"
        },
        {
            "id": "b0452520-353c-11ec-86e3-55d6f5241e1f",
            "name": "Architecture"
        },
        {
            "id": "b0bbfdfc-146c-11ec-a4b2-06ca9e02f304",
            "name": "Export/Import"
        },
        {
            "id": "b302bdd0-775e-11ec-ac58-5b9c69478e1f",
            "name": "Hospital & Clinics Operations"
        },
        {
            "id": "b5b8b4c0-2b27-11eb-af2a-a381fb909692",
            "name": "PHGC - F&B"
        },
        {
            "id": "b5b92000-c1e8-11ec-82a4-f3dd31405b79",
            "name": "Padauk"
        },
        {
            "id": "b5d02920-4a86-11eb-ad9e-4fca04b9781f",
            "name": "Security(RB)"
        },
        {
            "id": "b5f2d6a0-353c-11ec-b3b6-f345032bba4d",
            "name": "Visualizer"
        },
        {
            "id": "b61e6de0-2b27-11eb-adb7-87a9d0de3151",
            "name": "EM -Office"
        },
        {
            "id": "b6c32460-7470-11ec-9210-5b6ea2cfbc7a",
            "name": "Customer Care & Loyalty"
        },
        {
            "id": "b8833480-2b27-11eb-8e7b-bddd9bacf4d4",
            "name": "Administration"
        },
        {
            "id": "b8ad3790-2b27-11eb-b403-b5d487fba20a",
            "name": "Project"
        },
        {
            "id": "b8dbf960-0438-11ee-aab4-533acb9eadbd",
            "name": "Store"
        },
        {
            "id": "b97d1230-2b27-11eb-a612-e1d44da4f2c1",
            "name": "Campus Operation"
        },
        {
            "id": "ba055220-e5e7-11ea-9653-c92ec7f7164c",
            "name": "Design"
        },
        {
            "id": "baf580a0-c410-11eb-accd-d16e2c340d4a",
            "name": "Utility Operation(Operation)"
        },
        {
            "id": "bb98fb10-353c-11ec-bb28-f193fcb2ae0d",
            "name": "Structure"
        },
        {
            "id": "bc0f3180-2b27-11eb-b414-a3b61aa1133c",
            "name": "PM - Cost & Contracts"
        },
        {
            "id": "bc98c140-041e-11ee-b36c-9de5b07fa300",
            "name": "Memories Myanmar F&B Management Co.,Ltd"
        },
        {
            "id": "bcfc2410-2b27-11eb-86f3-39e88f3cf41c",
            "name": "Estate Operation"
        },
        {
            "id": "bd352ec0-2b27-11eb-8ba0-675961249845",
            "name": "TSC QS"
        },
        {
            "id": "bd4eee60-2b27-11eb-a61f-7ffecd610fdf",
            "name": "PM"
        },
        {
            "id": "bda588a0-737a-11ec-85a7-6f9f350b6660",
            "name": "HR Strategy & Development"
        },
        {
            "id": "be2d1460-2b27-11eb-a1eb-13d9b494d737",
            "name": "PM – Cost & Contract ( Star City )"
        },
        {
            "id": "be5be5d0-2b27-11eb-8957-b76b17ae91b3",
            "name": "Interior Design"
        },
        {
            "id": "be63e8b0-2b27-11eb-849e-8591a951c56c",
            "name": "Landscaping Design"
        },
        {
            "id": "be6be470-2b27-11eb-9b5c-df13e267d64a",
            "name": "Structural Design"
        },
        {
            "id": "be7b53a0-2b27-11eb-9caa-dffffae3b9b1",
            "name": "Architectural Design Team 1"
        },
        {
            "id": "be8265c0-2b27-11eb-bf57-9f112078e3d7",
            "name": "Architectural Design Team 2"
        },
        {
            "id": "be8a9700-2b27-11eb-b83e-a9723fa4f382",
            "name": "Architectural Design Team 4"
        },
        {
            "id": "bea6f5f0-2b27-11eb-aa49-8b42b7581a37",
            "name": "Visualizer Team"
        },
        {
            "id": "bff25370-fe74-11eb-a16f-0fcc0bbca14b",
            "name": "EM(R&M)"
        },
        {
            "id": "c02a4450-52b7-11ee-bf49-770ad24f2dbc",
            "name": "Laundry"
        },
        {
            "id": "c0bb37a0-2b27-11eb-8051-1f63b267ba95",
            "name": "Service"
        },
        {
            "id": "c0c71b30-2b27-11eb-9c97-a74d03971315",
            "name": "Spare Parts"
        },
        {
            "id": "c0ea1b60-2b27-11eb-b4b7-0d63e4894602",
            "name": "Body & Paint"
        },
        {
            "id": "c124f060-2b27-11eb-aa1d-ab2ec36fc8cd",
            "name": "YCP - Contracts & Commercial"
        },
        {
            "id": "c2aeeec0-2b27-11eb-9de7-5dbae9195948",
            "name": "PHGE - Administration"
        },
        {
            "id": "c2b3c140-2b27-11eb-b2ad-b99463b70994",
            "name": "GCLM - Workshop"
        },
        {
            "id": "c2c13ce0-2b27-11eb-8151-6d7b6b5417e3",
            "name": "PHGE - Finance"
        },
        {
            "id": "c2cd4820-2b27-11eb-9c75-4d0c1b0fda86",
            "name": "M & E (Campus)"
        },
        {
            "id": "c2d783b0-2b27-11eb-96df-b750102daf47",
            "name": "PHGE - AIM"
        },
        {
            "id": "c2ecaf60-2b27-11eb-86a6-c310a1bd8c42",
            "name": "GCLM - Office"
        },
        {
            "id": "c2f374c0-2b27-11eb-bc05-2fce569e82c9",
            "name": "Landscaping (Pun Hlaing Estate)"
        },
        {
            "id": "c2f9e910-2b27-11eb-831e-6bfc8e212be8",
            "name": "Landscaping (Maintenance)"
        },
        {
            "id": "c2ff1400-2b27-11eb-a572-8138e375b87c",
            "name": "Half Way"
        },
        {
            "id": "c31148e0-2b27-11eb-84cc-2d36ea85c436",
            "name": "GCLM - Chemical"
        },
        {
            "id": "c32886c0-2b27-11eb-a999-2d4c826bdd22",
            "name": "Homeowner Relation"
        },
        {
            "id": "c32cdb30-2b27-11eb-b60e-0bbd96f64744",
            "name": "Caddy"
        },
        {
            "id": "c35b9990-2b27-11eb-a47a-5786e6def756",
            "name": "Driving Range Operation"
        },
        {
            "id": "c360dfb0-737a-11ec-8b7c-6d1e10896e4f",
            "name": "HR Operations"
        },
        {
            "id": "c3613ad0-2b27-11eb-972d-f79bd3709ffc",
            "name": "PHGC - Locker Attendant"
        },
        {
            "id": "c3943950-2b27-11eb-8657-a54a3c3e6e8c",
            "name": "GCLM - Irrigation"
        },
        {
            "id": "c3a05830-2b27-11eb-9b20-f1519415d3eb",
            "name": "Estate Sanitation & HK"
        },
        {
            "id": "c3ab98f0-2b27-11eb-8573-35a7b48bd928",
            "name": "PHS - Finance"
        },
        {
            "id": "c40c8650-2b27-11eb-94de-8d98c6e9cc66",
            "name": "PHGE - Transport"
        },
        {
            "id": "c43325a0-2b27-11eb-a34e-b1a43474da36",
            "name": "PHGC - Front Office"
        },
        {
            "id": "c453f760-2b27-11eb-a447-dd34e85e3e3e",
            "name": "PHGC - Estate Maintenance"
        },
        {
            "id": "c4633320-2b27-11eb-99b5-8bb60a812eb9",
            "name": "PHGC - Guest Service"
        },
        {
            "id": "c4779e30-2b27-11eb-8e0a-459d1a65e9fc",
            "name": "Oasis Bistro"
        },
        {
            "id": "c4937a60-2b27-11eb-aea0-5ba8e5aac4d0",
            "name": "Salon"
        },
        {
            "id": "c49cc810-0f6f-11ee-8146-cb087dca8561",
            "name": "CC - Housekeeping"
        },
        {
            "id": "c4bd1190-2b27-11eb-b6e7-d361eb76e19b",
            "name": "Tennis Court"
        },
        {
            "id": "c4c8bed0-2b27-11eb-b7f5-518190e3dc13",
            "name": "PHGC - Transport"
        },
        {
            "id": "c4d50c40-2b27-11eb-9191-e18a2d92cd97",
            "name": "Landcaping (Construction)"
        },
        {
            "id": "c5294d40-2b27-11eb-ae6b-2982a98962c8",
            "name": "PHGC - Procurement"
        },
        {
            "id": "c534ba70-2b27-11eb-be9f-e743cd78dad2",
            "name": "Security and Fire"
        },
        {
            "id": "c540eb50-2b27-11eb-9ac3-d902afc9e0e9",
            "name": "PHGC - Security"
        },
        {
            "id": "c5640000-2b27-11eb-98cf-498e2a50f163",
            "name": "Horizon Restaurant"
        },
        {
            "id": "c59f6780-2b27-11eb-a507-852aea13c3ff",
            "name": "PHCC - Front Office(Spa & Salon)"
        },
        {
            "id": "c6204d90-2b27-11eb-8433-339d6a82f4d0",
            "name": "Security (Penisular)"
        },
        {
            "id": "c64f8540-2b27-11eb-b88f-496c6a668724",
            "name": "Swimming Pool"
        },
        {
            "id": "c665ef00-2b27-11eb-bf96-17ec4d1f7e9e",
            "name": "PHCC - Procurement"
        },
        {
            "id": "c6a2d260-2b27-11eb-b36b-bf3e6f8710bb",
            "name": "Spa"
        },
        {
            "id": "c70aab10-2b27-11eb-931e-29b666d896c5",
            "name": "F&B - AIM"
        },
        {
            "id": "c72c0d90-e27c-11e9-9ef4-59915eff3d71",
            "name": "- "
        },
        {
            "id": "c75bc5a0-2b27-11eb-998a-a7cad98b94c7",
            "name": "PHCC - Treasury"
        },
        {
            "id": "c7813ff0-2b27-11eb-af92-1d78dafa5dc2",
            "name": "Turf Farm"
        },
        {
            "id": "c7a74460-2b27-11eb-ad93-e9714e9b1b23",
            "name": "PHCC - Finance"
        },
        {
            "id": "c7e76310-2b27-11eb-aade-23853774a1b8",
            "name": "Security (Campus)"
        },
        {
            "id": "c85b4fb0-41e5-11ec-8cfe-c74723cfc639",
            "name": "PHGC / Front Office"
        },
        {
            "id": "c87de790-2b27-11eb-8093-4b3b9b6a6886",
            "name": "PHCC - AIM"
        },
        {
            "id": "c888cc80-41e5-11ec-a44b-7b55078f5e0e",
            "name": "PHGC / Proshop"
        },
        {
            "id": "c8e0d770-2b27-11eb-a910-c5aa980fef16",
            "name": "F&B - Finance"
        },
        {
            "id": "c914e080-7470-11ec-82f8-593d5328481c",
            "name": "Emerging Health"
        },
        {
            "id": "c9738ae0-2b27-11eb-adc8-49aa4a0dd74a",
            "name": "PHGC - Buggy Service"
        },
        {
            "id": "c9da0680-2b27-11eb-85c4-dfd719baf51c",
            "name": "DPS - Treasury"
        },
        {
            "id": "ca1be900-cfb8-11ed-88af-f33581317133",
            "name": "PDG - Housekeeping"
        },
        {
            "id": "ca54bbc0-2b27-11eb-a3e5-2352180141fd",
            "name": "PHCC - Estate Maintenance"
        },
        {
            "id": "ca955540-2b27-11eb-9280-337e9a24537c",
            "name": "Air ConTeam"
        },
        {
            "id": "cab72770-2b27-11eb-8a29-23371ea06c89",
            "name": "UO - Finance"
        },
        {
            "id": "caf29d70-2b27-11eb-8cbb-c9456cef89bc",
            "name": "F&B - Procurement"
        },
        {
            "id": "caff1a80-2b27-11eb-ad12-5d684d5ff606",
            "name": "EM - Finance"
        },
        {
            "id": "cba76200-2b27-11eb-b88d-e7a1083a7922",
            "name": "Nusery"
        },
        {
            "id": "cbebe1a0-2b27-11eb-97fc-e9a83c9aeaa9",
            "name": "F&B - Treasury"
        },
        {
            "id": "cc0642a0-20b0-11ea-b129-af92749254bd",
            "name": "Compensation & Benefits"
        },
        {
            "id": "cc965ae0-2b27-11eb-9272-d3ddf652ae36",
            "name": "PHGE - GM Office"
        },
        {
            "id": "ccbd81e0-2b27-11eb-9e4b-4f3d55768c20",
            "name": "PHGE - Procurement"
        },
        {
            "id": "cd008e40-2b27-11eb-87e7-a70c5d1614b2",
            "name": "Landscaping (Campus)"
        },
        {
            "id": "cd2e97c0-353c-11ec-8a07-658ecd95637f",
            "name": "Re-sales"
        },
        {
            "id": "cd865e50-2b27-11eb-b4ba-9bf0fde92558",
            "name": "PHGC - Finance"
        },
        {
            "id": "cd8ac3c0-2b27-11eb-a5b0-6917f600b0ba",
            "name": "Regular Caddy"
        },
        {
            "id": "ce577ff0-2b27-11eb-a06d-136d0c62a9ac",
            "name": "PHCC - Buggy Service"
        },
        {
            "id": "cf1561f0-353b-11ec-aedf-ade578345033",
            "name": "Finance Director Office"
        },
        {
            "id": "cfae90d0-775e-11ec-af39-1ff996b11469",
            "name": "General Support Service "
        },
        {
            "id": "cfb4bbe0-2b27-11eb-804a-f35b9997cc24",
            "name": "Housekeeping (Campus)"
        },
        {
            "id": "cfd33aa0-2b27-11eb-a88e-3d475e9d8857",
            "name": "Country Store"
        },
        {
            "id": "cfda3f40-f5d1-11ea-8441-eb8ca1e62f2b",
            "name": "Security (Compound)"
        },
        {
            "id": "d005bf90-2b27-11eb-b98f-9f18ad3558ff",
            "name": "YDG - Treasury"
        },
        {
            "id": "d025cd90-2b27-11eb-9b6e-f727bedbace7",
            "name": "Campus Coffee Shop"
        },
        {
            "id": "d0bed010-f2b8-11ea-a2f6-3b33e0601551",
            "name": "HR"
        },
        {
            "id": "d0d090d0-d1b4-11ec-8256-09c7a0857597",
            "name": "Branding and Communication"
        },
        {
            "id": "d0e3d2b0-2b27-11eb-86e7-63b1a865cd2b",
            "name": "Finance (Procurement) AIM"
        },
        {
            "id": "d0f29340-2b27-11eb-b529-a3cb401c0960",
            "name": "Finance (Procurement)"
        },
        {
            "id": "d0fdd320-0438-11ee-9768-396478d6f33e",
            "name": "S&R (Kid)"
        },
        {
            "id": "d0fe53b0-2b27-11eb-b07f-a5387b9d3c73",
            "name": "Golf Course Maintenance Operation (Finance Procurement)"
        },
        {
            "id": "d102fb70-f5d1-11ea-9bf6-a59c7b26b248",
            "name": "EM (HK)"
        },
        {
            "id": "d10a40d0-2b27-11eb-8d8a-171df2f809d7",
            "name": "Finance(S&R)"
        },
        {
            "id": "d1110bd0-2b27-11eb-9898-530865477adb",
            "name": "Transport"
        },
        {
            "id": "d151ce00-2b27-11eb-94bc-09fe8d47f447",
            "name": "Administration Office"
        },
        {
            "id": "d15a0ad0-2b27-11eb-b5f0-c5f20123db48",
            "name": "Finance ( Leasing)"
        },
        {
            "id": "d1ee7f00-f5d1-11ea-8761-f91ea71313ad",
            "name": "Security (RB)"
        },
        {
            "id": "d25ff290-353c-11ec-8e60-f77b47060a50",
            "name": "Sales"
        },
        {
            "id": "d282d4b0-2b27-11eb-9261-b3e24be52336",
            "name": "Human Resources"
        },
        {
            "id": "d31668e0-f5d1-11ea-815f-a5a5a59c7b83",
            "name": "Finance (Cashier)"
        },
        {
            "id": "d380b8d0-2b27-11eb-a1d5-094f5cd354b3",
            "name": "EM (MOA-5)"
        },
        {
            "id": "d3a421e0-2b27-11eb-a8d3-0dbb3a2e8f4b",
            "name": "EM"
        },
        {
            "id": "d4420a70-2b27-11eb-a9c0-0d96d16385fb",
            "name": "S&R (Gym)"
        },
        {
            "id": "d45cbae0-2b27-11eb-ae32-bb0c5c599a6a",
            "name": "EM (R&M)"
        },
        {
            "id": "d48faad0-0c5d-11eb-983d-b9fd61124c4c",
            "name": "Planning"
        },
        {
            "id": "d5103780-2b27-11eb-a1a9-2909f8c1e725",
            "name": "DIS (Security)"
        },
        {
            "id": "d5587a30-2b27-11eb-9afd-bd0e1efb3184",
            "name": "Finance (EM)"
        },
        {
            "id": "d55ece20-2b27-11eb-99a4-95d1b9dd62dc",
            "name": "Finance ( Credit Control)"
        },
        {
            "id": "d5b9d1d0-2b27-11eb-a46d-b19b659f2aec",
            "name": "Finance(City Loft)"
        },
        {
            "id": "d62d05b0-8fa3-11ec-84f6-a71dc0619b72",
            "name": "EM (MO-A5)"
        },
        {
            "id": "d677f6e0-2b27-11eb-8918-5bd0bd5ccb15",
            "name": "DIS (Finance)"
        },
        {
            "id": "d68446c0-2b27-11eb-9040-6994e73d1792",
            "name": "EM (MO Galaxy)"
        },
        {
            "id": "d68a67a0-2b27-11eb-bde1-3fa30d2a0ba6",
            "name": "EM (MO A&B)"
        },
        {
            "id": "d6b2ac60-2b27-11eb-bc6f-f7a131f4dc48",
            "name": "S&R (Pool)"
        },
        {
            "id": "d72e9af0-4709-11ee-89f5-5f25a2655e91",
            "name": "Air-con Team"
        },
        {
            "id": "d74ef1c0-0f6f-11ee-a3bd-7bf942c32a42",
            "name": "CC - M&E"
        },
        {
            "id": "d785b1c0-353c-11ec-b9b0-fd55a12c1621",
            "name": "Sales Support Administration"
        },
        {
            "id": "d7efd550-353b-11ec-9195-49125975839f",
            "name": "PHE & External"
        },
        {
            "id": "d8c47310-07d2-11ed-af25-f723d1fcfd64",
            "name": "Services"
        },
        {
            "id": "d972d340-0051-11ee-9042-957e7ca1b43d",
            "name": "UO - Electricity"
        },
        {
            "id": "d998eee0-8a55-11ec-93d4-bbd86d4ec89b",
            "name": " Security and Fire "
        },
        {
            "id": "da1c9770-8a55-11ec-8c2b-01a22f299c13",
            "name": " Security & Fire "
        },
        {
            "id": "da54d7d0-71b1-11ee-b7ae-4dc5c7ef023a",
            "name": "Bar"
        },
        {
            "id": "daa589c0-7470-11ec-a6c3-35862f303259",
            "name": "General Support Services"
        },
        {
            "id": "daad8270-8e0e-11ec-9b31-bf5d506c6c6c",
            "name": "Star City Marketing and Communication"
        },
        {
            "id": "db3755a0-2b27-11eb-9406-d7aeac7e6534",
            "name": "PHE Leasing"
        },
        {
            "id": "db4c1370-2b27-11eb-9090-398f29e63c55",
            "name": "Housing"
        },
        {
            "id": "db4ce390-534d-11eb-a9cb-71e5c8b5f70b",
            "name": "Bamboo House"
        },
        {
            "id": "dc3c1640-f527-11ea-a7b4-93bf746be25f",
            "name": "Contract / Commercial"
        },
        {
            "id": "dc7697d0-f527-11ea-bd5d-359c42ce1b20",
            "name": "Construction"
        },
        {
            "id": "dcb1a530-f527-11ea-9ee6-65549dfe9fd8",
            "name": "Project Control"
        },
        {
            "id": "dcec6260-2b27-11eb-a2ab-213d44383cd8",
            "name": "Training & Development"
        },
        {
            "id": "dcec7ac0-f527-11ea-a3eb-7545a74845dc",
            "name": "Design (MEP)"
        },
        {
            "id": "dd9daba0-f527-11ea-9e60-55c5e9a720af",
            "name": "Design (Archi)"
        },
        {
            "id": "ddd900d0-f527-11ea-9297-1389ceff729a",
            "name": "QA/QC"
        },
        {
            "id": "ddfc2100-2b27-11eb-8978-3f3e85053478",
            "name": "Finance(PH)"
        },
        {
            "id": "de593a60-f060-11ea-8a6b-f7fe1d8c413e",
            "name": "Marketing & Customer Solutions"
        },
        {
            "id": "df9cccb0-f527-11ea-9439-21ca8fe9f128",
            "name": "Design (ID)"
        },
        {
            "id": "e0894290-2b27-11eb-be00-673e79097f52",
            "name": "Bagan Operation "
        },
        {
            "id": "e11882a0-353c-11ec-9f8f-2fcee62aae64",
            "name": "Procurement"
        },
        {
            "id": "e4fadc00-0051-11ee-884a-c1b4057d08d4",
            "name": "UO - Drinking Water"
        },
        {
            "id": "e54a7ff0-93f7-11ee-ac11-117f6b54a257",
            "name": "YECL"
        },
        {
            "id": "e694cbb0-353c-11ec-9fbc-89bd23af4727",
            "name": "Leasing Operations"
        },
        {
            "id": "e6e93570-7470-11ec-8c6f-c758b1124a7e",
            "name": "Hospitals & Clinics Operations"
        },
        {
            "id": "e747d0c0-fdca-11ed-9313-45454afd9ec2",
            "name": "Maintenance"
        },
        {
            "id": "ea2232a0-1143-11ed-9bd4-19061ef7498e",
            "name": "S & R (City Loft)"
        },
        {
            "id": "ea38f6b0-2b27-11eb-8e44-91e57d875c7b",
            "name": "C&S"
        },
        {
            "id": "ea849440-2b27-11eb-93a4-f9c0da0d6a8d",
            "name": "PHGE - Treasury"
        },
        {
            "id": "eacf99a0-23f9-11eb-945e-c9e43852340a",
            "name": "Security ( RB )"
        },
        {
            "id": "eb2ee2e0-2b27-11eb-b81d-7f5c580f9f14",
            "name": "Community S&R (Pool)"
        },
        {
            "id": "ebb4d640-353c-11ec-8dba-61fc13088ee2",
            "name": "Campus Operations"
        },
        {
            "id": "edf991f0-7470-11ec-a4b7-77db6a083e7e",
            "name": "ICT & Innovation"
        },
        {
            "id": "ee400870-2b27-11eb-9bcd-9516b80456fe",
            "name": "NOC"
        },
        {
            "id": "f08ec7e0-0e86-11ee-bdd4-f7e8dc5b6e58",
            "name": "F&B Kitchen"
        },
        {
            "id": "f0a38430-2b27-11eb-b263-41b5a82d4bd0",
            "name": "PABX Helpdesk"
        },
        {
            "id": "f2a02a90-2b27-11eb-ae30-35c7e8d9d03c",
            "name": "AA - Myanmar Plaza"
        },
        {
            "id": "f2a83060-2b27-11eb-a5b2-47b66a374915",
            "name": "AA - Junction City"
        },
        {
            "id": "f497a440-a59d-11ec-9f43-350c03f98a81",
            "name": " Utility Operation "
        },
        {
            "id": "f4c3e0d0-a59d-11ec-b040-1fbab4f5ec5d",
            "name": " Dulwich "
        },
        {
            "id": "f5325dd0-1dd0-11ec-9c76-9f574f85f204",
            "name": "F&B"
        },
        {
            "id": "f53de460-2b27-11eb-b03e-b155654043a4",
            "name": "AA - Junction Square"
        },
        {
            "id": "f5ab9730-52b7-11ee-8388-a36cbc81e097",
            "name": "Garden"
        },
        {
            "id": "f5df55a0-00be-11ec-aff7-05f2eff9374d",
            "name": "Sanitation"
        },
        {
            "id": "f7c10ad0-2d8c-11ec-afc0-f19382c92dad",
            "name": "GCLM - Turf Farm"
        },
        {
            "id": "f88371c0-2b27-11eb-a6fa-191011f487bc",
            "name": "PHCC - Front Office(Membership)"
        },
        {
            "id": "f8cb7700-0120-11ee-9fdc-57add67834cb",
            "name": "Finance (Star City Links)"
        },
        {
            "id": "f8deee00-d15e-11ec-94d7-77d35bee9321",
            "name": "Floor"
        },
        {
            "id": "f9b636e0-ca22-11ed-a409-7b8b5e61b3d5",
            "name": "Renovation and Fit-Out"
        },
        {
            "id": "fa43afb0-9b0d-11ea-bdf1-df28d86e5f18",
            "name": "Marketing"
        },
        {
            "id": "fb360c40-789f-11ed-bb01-e1e34b65ac86",
            "name": "Front Office "
        },
        {
            "id": "fb6323f0-2b27-11eb-8212-db9c2c8db9fd",
            "name": "Architectural Design Team 3"
        },
        {
            "id": "fbba6720-0f6f-11ee-8818-ff9c50fde730",
            "name": "Admin & General"
        },
        {
            "id": "fbc123e2-146b-11ec-a4b2-06ca9e02f304",
            "name": "City Loft"
        },
        {
            "id": "fc41cd50-2b27-11eb-b889-d3de78158dfb",
            "name": "PHGC - Treasury"
        },
        {
            "id": "fe574ce0-d15d-11ec-b4cd-d303f41bed78",
            "name": "CK Office"
        },
        {
            "id": "fe9b0760-0051-11ee-b156-a397cbcf5a30",
            "name": "UO - Maintenance & Infracture"
        },
        {
            "id": "fea176f0-f06d-11ea-8303-d14f894d2d87",
            "name": "Customer Solutions"
        },
        {
            "id": "ff279980-1c9d-11ed-b7cf-8db3e0352ffc",
            "name": "Front Office (Campus)"
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/utilities/sections

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/utilities/shift-types

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/utilities/shift-types" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/utilities/shift-types"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Failed to retrieve shift types"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/utilities/shift-types

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/custom-fields/types

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/custom-fields/types" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/custom-fields/types"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "CustomFieldTypes retrieved successfully",
    "data": [
        {
            "id": "83df77b0-bf71-11e9-a26f-e36de494687c",
            "name": "date",
            "type": "date"
        },
        {
            "id": "83ed4330-bf71-11e9-bdd2-35b59bd44502",
            "name": "email",
            "type": "string"
        },
        {
            "id": "83ee85b0-bf71-11e9-a680-35270e1f1bbf",
            "name": "number",
            "type": "integer"
        },
        {
            "id": "83e24600-bf71-11e9-815e-23b1a193a7cc",
            "name": "string",
            "type": "string"
        },
        {
            "id": "83e0a470-bf71-11e9-92dc-23732eb65ba5",
            "name": "text",
            "type": "text"
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/custom-fields/types

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/custom-fields/{table}

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/custom-fields/architecto" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/custom-fields/architecto"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/custom-fields/{table}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

table   string     

Example: architecto

GET api/v1/custom-fields/{table}

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/custom-fields/architecto" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/custom-fields/architecto"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "CustomFields retrieved successfully"
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/custom-fields/{table}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

table   string     

Example: architecto

DELETE api/v1/custom-fields/{table}/{id}

requires authentication

Example request:
curl --request DELETE \
    "http://localhost/api/v1/custom-fields/architecto/architecto" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/custom-fields/architecto/architecto"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

DELETE api/v1/custom-fields/{table}/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

table   string     

Example: architecto

id   string     

The ID of the {table}. Example: architecto

GET api/v1/employee-entity-job-grades

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/employee-entity-job-grades" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employee-entity-job-grades"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Entity Job Grades retrieved successfully",
    "data": [
        {
            "id": "019c037f-c5da-73c8-9b8a-2012364e4c9d",
            "name": "afd",
            "employees_count": 0
        },
        {
            "id": "cc060120-20b0-11ea-bf27-e92336930226",
            "name": "Sample Grade",
            "employees_count": 0
        },
        {
            "id": "b0dc7380-bbb4-11ea-945b-232b248964a5",
            "name": "Sabae Phyu",
            "employees_count": 0
        },
        {
            "id": "019c0373-52b1-738b-bcdb-fe1f49c84de8",
            "name": "Grade ABC",
            "employees_count": 0
        },
        {
            "id": "2f734980-6ec8-11ed-9e74-87b544fc611c",
            "name": "0",
            "employees_count": 0
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/employee-entity-job-grades

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/employee-entity-job-grades

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/employee-entity-job-grades" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employee-entity-job-grades"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/employee-entity-job-grades

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

DELETE api/v1/employee-entity-job-grades/{id}

requires authentication

Example request:
curl --request DELETE \
    "http://localhost/api/v1/employee-entity-job-grades/architecto" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employee-entity-job-grades/architecto"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

DELETE api/v1/employee-entity-job-grades/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the employee entity job grade. Example: architecto

GET api/v1/employee-yoma-group-job-grades

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/employee-yoma-group-job-grades" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employee-yoma-group-job-grades"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Yoma Group Job Grades retrieved successfully",
    "data": [
        {
            "id": "019c037f-7fa6-73b4-b36a-ccf56aa3d109",
            "name": "Test Edit",
            "employees_count": 0
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/employee-yoma-group-job-grades

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/employee-yoma-group-job-grades

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/employee-yoma-group-job-grades" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employee-yoma-group-job-grades"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/employee-yoma-group-job-grades

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

DELETE api/v1/employee-yoma-group-job-grades/{id}

requires authentication

Example request:
curl --request DELETE \
    "http://localhost/api/v1/employee-yoma-group-job-grades/architecto" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/employee-yoma-group-job-grades/architecto"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

DELETE api/v1/employee-yoma-group-job-grades/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the employee yoma group job grade. Example: architecto

GET api/v1/permissions

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/permissions" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/permissions"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Unauthorized"
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/permissions

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/permissions

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/permissions" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/permissions"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/permissions

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/permissions/create

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/permissions/create" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/permissions/create"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Unauthorized"
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/permissions/create

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

GET api/v1/permissions/{id}

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/permissions/architecto" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/permissions/architecto"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Unauthorized"
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/permissions/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the permission. Example: architecto

PUT api/v1/permissions/{id}

requires authentication

Example request:
curl --request PUT \
    "http://localhost/api/v1/permissions/architecto" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/permissions/architecto"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

PUT api/v1/permissions/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the permission. Example: architecto

PATCH api/v1/permissions/{id}/employees

requires authentication

Example request:
curl --request PATCH \
    "http://localhost/api/v1/permissions/architecto/employees" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/permissions/architecto/employees"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PATCH",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

PATCH api/v1/permissions/{id}/employees

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the permission. Example: architecto

DELETE api/v1/permissions/{id}

requires authentication

Example request:
curl --request DELETE \
    "http://localhost/api/v1/permissions/architecto" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/permissions/architecto"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

DELETE api/v1/permissions/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the permission. Example: architecto

GET api/v1/badges

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/badges" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/badges"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Badges retrieved successfully",
    "data": [
        {
            "id": "06853b80-222d-11ea-8549-f109cd25ba26",
            "name": "ARM",
            "badge_skill_set_id": "066bef10-222d-11ea-8fc9-238a3c10f2ba",
            "badgeSkillSet": {
                "id": "066bef10-222d-11ea-8fc9-238a3c10f2ba",
                "name": "Supervisor",
                "badge_group_id": "0beef850-2220-11ea-a6de-bb9dc0b2b53b",
                "badgeGroup": null,
                "image": null,
                "badges": null
            },
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "068e15e0-222d-11ea-8cf2-ffdaf82bc150",
            "name": "ARMT",
            "badge_skill_set_id": "066bef10-222d-11ea-8fc9-238a3c10f2ba",
            "badgeSkillSet": {
                "id": "066bef10-222d-11ea-8fc9-238a3c10f2ba",
                "name": "Supervisor",
                "badge_group_id": "0beef850-2220-11ea-a6de-bb9dc0b2b53b",
                "badgeGroup": null,
                "image": null,
                "badges": null
            },
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "06970a60-222d-11ea-9ac7-5926ff5d0edf",
            "name": "Assit: ARM",
            "badge_skill_set_id": "066bef10-222d-11ea-8fc9-238a3c10f2ba",
            "badgeSkillSet": {
                "id": "066bef10-222d-11ea-8fc9-238a3c10f2ba",
                "name": "Supervisor",
                "badge_group_id": "0beef850-2220-11ea-a6de-bb9dc0b2b53b",
                "badgeGroup": null,
                "image": null,
                "badges": null
            },
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "20b56ef0-bec8-11ec-a422-8378d3083e42",
            "name": "Winner",
            "badge_skill_set_id": "2097c610-bec8-11ec-8040-253a1240d998",
            "badgeSkillSet": null,
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "22477370-bec7-11ec-a338-9b2abca5da4c",
            "name": "Winner",
            "badge_skill_set_id": "222c4fe0-bec7-11ec-9db6-ffa7716c6855",
            "badgeSkillSet": {
                "id": "222c4fe0-bec7-11ec-9db6-ffa7716c6855",
                "name": "WBC2022",
                "badge_group_id": "d9496210-bec6-11ec-a4aa-9b52454ff176",
                "badgeGroup": null,
                "image": null,
                "badges": null
            },
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "3c050d40-1d41-11ed-a821-57a95b9c1f55",
            "name": "First Photo at Yoma Vs Now",
            "badge_skill_set_id": "dbe96430-571d-11eb-b453-e3a4a916bc78",
            "badgeSkillSet": {
                "id": "dbe96430-571d-11eb-b453-e3a4a916bc78",
                "name": "Yoma Challenge Winner",
                "badge_group_id": "d576aee0-5716-11eb-b5a8-65a397e53c03",
                "badgeGroup": null,
                "image": null,
                "badges": null
            },
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "46974ff0-beec-11ec-9ea8-49a3779853c4",
            "name": "Water Bucket",
            "badge_skill_set_id": "dbe96430-571d-11eb-b453-e3a4a916bc78",
            "badgeSkillSet": {
                "id": "dbe96430-571d-11eb-b453-e3a4a916bc78",
                "name": "Yoma Challenge Winner",
                "badge_group_id": "d576aee0-5716-11eb-b5a8-65a397e53c03",
                "badgeGroup": null,
                "image": null,
                "badges": null
            },
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "500ee4f0-571b-11eb-af4b-b51d2737f9b8",
            "name": "Silver",
            "badge_skill_set_id": "7b41d390-5717-11eb-b6f4-154f912b3607",
            "badgeSkillSet": null,
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "65af7ad0-f8eb-11ec-a371-fbcb2aa8945d",
            "name": "KFC 7-year Anniversary Challenge",
            "badge_skill_set_id": "659aa590-f8eb-11ec-a598-e32ae2509a22",
            "badgeSkillSet": {
                "id": "659aa590-f8eb-11ec-a598-e32ae2509a22",
                "name": "Challenges",
                "badge_group_id": "0beef850-2220-11ea-a6de-bb9dc0b2b53b",
                "badgeGroup": null,
                "image": null,
                "badges": null
            },
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "671d2e80-571b-11eb-a362-e909bd30b961",
            "name": "Silver",
            "badge_skill_set_id": "7b41d390-5717-11eb-b6f4-154f912b3607",
            "badgeSkillSet": null,
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "6725d9b0-571b-11eb-9275-c972ed626515",
            "name": "Gold",
            "badge_skill_set_id": "7b41d390-5717-11eb-b6f4-154f912b3607",
            "badgeSkillSet": null,
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "672f8140-571b-11eb-b529-b159d9a6b475",
            "name": "Diamond",
            "badge_skill_set_id": "7b41d390-5717-11eb-b6f4-154f912b3607",
            "badgeSkillSet": null,
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "71cfbde0-8b2a-11ed-8d87-0bd29caa3f1d",
            "name": "Step Challenge",
            "badge_skill_set_id": "dbe96430-571d-11eb-b453-e3a4a916bc78",
            "badgeSkillSet": {
                "id": "dbe96430-571d-11eb-b453-e3a4a916bc78",
                "name": "Yoma Challenge Winner",
                "badge_group_id": "d576aee0-5716-11eb-b5a8-65a397e53c03",
                "badgeGroup": null,
                "image": null,
                "badges": null
            },
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "ab2ee130-571b-11eb-81b2-17ad9998657e",
            "name": "Silver",
            "badge_skill_set_id": "7b41d390-5717-11eb-b6f4-154f912b3607",
            "badgeSkillSet": null,
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "ab3872b0-571b-11eb-8487-51b5eb7151c1",
            "name": "Diamond",
            "badge_skill_set_id": "7b41d390-5717-11eb-b6f4-154f912b3607",
            "badgeSkillSet": null,
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "ab3d16f0-571b-11eb-8a78-1f2b97b4275c",
            "name": "Gold",
            "badge_skill_set_id": "7b41d390-5717-11eb-b6f4-154f912b3607",
            "badgeSkillSet": null,
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "b1a1cd60-2220-11ea-b2a6-1f252e1be227",
            "name": "Cashier",
            "badge_skill_set_id": "b1874390-2220-11ea-ad7a-85544cac0fbc",
            "badgeSkillSet": {
                "id": "b1874390-2220-11ea-ad7a-85544cac0fbc",
                "name": "General",
                "badge_group_id": "0beef850-2220-11ea-a6de-bb9dc0b2b53b",
                "badgeGroup": null,
                "image": null,
                "badges": null
            },
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "b1bb3e20-2220-11ea-9966-9943b088dfe5",
            "name": "Assemble",
            "badge_skill_set_id": "b1874390-2220-11ea-ad7a-85544cac0fbc",
            "badgeSkillSet": {
                "id": "b1874390-2220-11ea-ad7a-85544cac0fbc",
                "name": "General",
                "badge_group_id": "0beef850-2220-11ea-a6de-bb9dc0b2b53b",
                "badgeGroup": null,
                "image": null,
                "badges": null
            },
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "b1c3e230-2220-11ea-bfbc-4d326f887975",
            "name": "Kitchen",
            "badge_skill_set_id": "b1874390-2220-11ea-ad7a-85544cac0fbc",
            "badgeSkillSet": {
                "id": "b1874390-2220-11ea-ad7a-85544cac0fbc",
                "name": "General",
                "badge_group_id": "0beef850-2220-11ea-a6de-bb9dc0b2b53b",
                "badgeGroup": null,
                "image": null,
                "badges": null
            },
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "b1cc57f0-2220-11ea-bef1-3fddc41359db",
            "name": "Pantry",
            "badge_skill_set_id": "b1874390-2220-11ea-ad7a-85544cac0fbc",
            "badgeSkillSet": {
                "id": "b1874390-2220-11ea-ad7a-85544cac0fbc",
                "name": "General",
                "badge_group_id": "0beef850-2220-11ea-a6de-bb9dc0b2b53b",
                "badgeGroup": null,
                "image": null,
                "badges": null
            },
            "image": null,
            "employee_id_list": null
        },
        {
            "id": "b1d49190-2220-11ea-a38d-1fcad04df175",
            "name": "FOH",
            "badge_skill_set_id": "b1874390-2220-11ea-ad7a-85544cac0fbc",
            "badgeSkillSet": {
                "id": "b1874390-2220-11ea-ad7a-85544cac0fbc",
                "name": "General",
                "badge_group_id": "0beef850-2220-11ea-a6de-bb9dc0b2b53b",
                "badgeGroup": null,
                "image": null,
                "badges": null
            },
            "image": null,
            "employee_id_list": null
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/badges

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Media

Image

Upload Image

requires authentication

Upload an image for company logo/favicon, entity logo/favicon, or employee profile.

Example request:
curl --request POST \
    "http://localhost/api/v1/image/upload" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "type=company"\
    --form "dir=images"\
    --form "entity_id=architecto"\
    --form "employee_id=architecto"\
    --form "image=@/private/var/folders/vz/jwk7y6w553z0j9jj1l69bq600000gn/T/php1sgmhni6h0gr7uDVNN2" 
const url = new URL(
    "http://localhost/api/v1/image/upload"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('type', 'company');
body.append('dir', 'images');
body.append('entity_id', 'architecto');
body.append('employee_id', 'architecto');
body.append('image', document.querySelector('input[name="image"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Example response (200):


{
    "message": "Image uploaded successfully",
    "data": {
        "id": "uuid",
        "name": "image_name",
        "path": "https://s3...",
        "folder": "images",
        "extension": "png",
        "image": "image_name.png",
        "thumbnail": "image_name_thumb.png"
    }
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Upload failed):


{
    "message": "Failed to upload image"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/image/upload

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

Body Parameters

image   file     

Image file (jpeg, jpg, png, gif, webp, max 5MB) Example: /private/var/folders/vz/jwk7y6w553z0j9jj1l69bq600000gn/T/php1sgmhni6h0gr7uDVNN2

type   string  optional    

Type: company, entity, or employee Example: company

dir   string  optional    

Storage folder/directory Example: images

entity_id   string  optional    

Entity UUID (required when type=entity) Example: architecto

employee_id   string  optional    

Employee UUID (required when type=employee) Example: architecto

Delete Image

requires authentication

Delete image by type.

Example request:
curl --request DELETE \
    "http://localhost/api/v1/image?type=company" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/image"
);

const params = {
    "type": "company",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Image deleted successfully"
}
 

Example response (200):


{
    "message": "Nothing to delete"
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Delete failed):


{
    "message": "Failed to delete image"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

DELETE api/v1/image

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

type   string     

Type: "company" deletes company logo/favicon, "employee" deletes current user profile image. Example: company

Setting - Employee

Division

Index Division

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/divisions" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/divisions"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Divisions retrieved successfully",
    "data": [
        {
            "id": "1e9a3610",
            "name": "Test Division",
            "color": null,
            "head_id": null,
            "organization_id": null,
            "head": null,
            "entities": [
                {
                    "id": "0a8e5850",
                    "name": "Test Entity",
                    "color": null,
                    "division_id": "1e9a3610",
                    "head_id": null,
                    "logo_image_id": null,
                    "head": null,
                    "photo": "http://office-backend.test/images/yoma-connect.png",
                    "departments": [
                        {
                            "id": "15f585b0",
                            "name": "Test Department",
                            "color": "#77ef77",
                            "entity_id": "0a8e5850",
                            "parent_id": null,
                            "head_id": null,
                            "head": null
                        }
                    ]
                }
            ]
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/divisions

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Create Division

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/divisions" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Division\",
    \"color\": \"#77ef77\",
    \"head_id\": \"1e9a3610\",
    \"organization_id\": \"1e9a3610\"
}"
const url = new URL(
    "http://localhost/api/v1/divisions"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "name": "Division",
    "color": "#77ef77",
    "head_id": "1e9a3610",
    "organization_id": "1e9a3610"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "message": "Division created successfully",
    "data": {
        "id": "019bb0f5",
        "name": "Division Test",
        "color": null,
        "head_id": null,
        "organization_id": null
    }
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/divisions

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

The name of the division. Example: Division

color   string     

The color of the division. Example: #77ef77

head_id   string     

The head of the division. Example: 1e9a3610

organization_id   string     

The organization of the division. Example: 1e9a3610

Update Division

requires authentication

Example request:
curl --request PUT \
    "http://localhost/api/v1/divisions/1e9a3610" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Division\",
    \"color\": \"#77ef77\",
    \"head_id\": \"1e9a3610\",
    \"organization_id\": \"1e9a3610\"
}"
const url = new URL(
    "http://localhost/api/v1/divisions/1e9a3610"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "name": "Division",
    "color": "#77ef77",
    "head_id": "1e9a3610",
    "organization_id": "1e9a3610"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "message": "Division updated successfully",
    "data": {
        "id": "019bb0f5",
        "name": "Division Update",
        "color": null,
        "head_id": null,
        "organization_id": null
    }
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

PUT api/v1/divisions/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The UUID of the division to update. Example: 1e9a3610

Body Parameters

name   string     

The name of the division. Example: Division

color   string     

The color of the division. Example: #77ef77

head_id   string     

The head of the division. Example: 1e9a3610

organization_id   string     

The organization of the division. Example: 1e9a3610

Delete Division

requires authentication

Example request:
curl --request DELETE \
    "http://localhost/api/v1/divisions/1e9a3610" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/divisions/1e9a3610"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Division deleted successfully"
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

DELETE api/v1/divisions/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The UUID of the division to delete. Example: 1e9a3610

Charge to entity

Index Charge to Entity

requires authentication

Retrieve a list of all Charge to entities with their employee counts.

Example request:
curl --request GET \
    --get "http://localhost/api/v1/charge-to-entities" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/charge-to-entities"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Charge to entities retrieved successfully",
    "data": [
        {
            "id": "71d89fa0-3d9e-11ea-9a35-4369ad1e8ab0",
            "name": "1- Bogyoke",
            "employees_count": 20
        },
        {
            "id": "8ddcce50-bf71-11e9-90c7-67df0f8da7ac",
            "name": "1-Bogyoke",
            "employees_count": 1
        },
        {
            "id": "8ca66090-3d9e-11ea-898d-8fb943409608",
            "name": "10 - JUNCTION MAW TIN",
            "employees_count": 64
        },
        {
            "id": "c1c5f500-3d9e-11ea-a234-4d9a1fa4f198",
            "name": "10TH MILES",
            "employees_count": 2
        },
        {
            "id": "8efe4d40-3d9e-11ea-8568-3943405d5b7e",
            "name": "11 - JUNCTION CITY",
            "employees_count": 72
        },
        {
            "id": "912e7cf0-3d9e-11ea-a8ad-3702ddc20c94",
            "name": "12 - WAIZAYANTAR AEON ORANGE",
            "employees_count": 6
        },
        {
            "id": "65e08290-48b2-11ea-bb1d-956b6ca6ccc4",
            "name": "13 - KFC PLAZA @ 78TH ST MANDALAY",
            "employees_count": 116
        },
        {
            "id": "5a25dc10-222b-11ee-b158-a3964e8577e9",
            "name": "14 - THE MOVE @ MANDALAY",
            "employees_count": 8
        },
        {
            "id": "6b2877e0-48b2-11ea-bb74-1399556ece02",
            "name": "14- THE MOVE @ MANDALAY",
            "employees_count": 48
        },
        {
            "id": "588313c0-222b-11ee-983f-bd3530038f4c",
            "name": "15 - CITY SQUARE, TAUNG GYI",
            "employees_count": 17
        },
        {
            "id": "6db6a4e0-48b2-11ea-b991-674550bceae6",
            "name": "15- CITY SQUARE, TAUNG GYI",
            "employees_count": 82
        },
        {
            "id": "922d6f60-3d9e-11ea-b5e1-cf13829f39c4",
            "name": "16- SUPER ONE, HLAINGTHARYAR",
            "employees_count": 21
        },
        {
            "id": "e3dfb1f0-0f2a-11ee-99aa-7bb9bcaf25c1",
            "name": "17 - 76 Miles",
            "employees_count": 16
        },
        {
            "id": "71bf0f90-48b2-11ea-bf54-3f99cc63ccfa",
            "name": "17- 76mile",
            "employees_count": 54
        },
        {
            "id": "fa2bde10-0c12-11ee-b9b3-ff1748a7cd7d",
            "name": "18 - SANPYA",
            "employees_count": 27
        },
        {
            "id": "94621290-3d9e-11ea-b2f2-3b0e40982808",
            "name": "18- SANPYA",
            "employees_count": 70
        },
        {
            "id": "433e9c70-372c-11ee-861b-6994d09bdee0",
            "name": "19 - BAGO",
            "employees_count": 12
        },
        {
            "id": "74c1d8e0-48b2-11ea-88b2-9db0230c6b48",
            "name": "19- BAGO",
            "employees_count": 44
        },
        {
            "id": "817e2d50-218b-11ea-bfab-e1aef0c76bac",
            "name": "2 - JUNCTION SQUARE",
            "employees_count": 104
        },
        {
            "id": "9fb28bf0-3273-11ee-996f-6140ab0e98bd",
            "name": "20 - AUNGMINGALAR",
            "employees_count": 7
        },
        {
            "id": "97dfa1e0-3d9e-11ea-9a48-a1fb3c03e034",
            "name": "20- AUNGMINGALAR",
            "employees_count": 35
        },
        {
            "id": "bb1ce1c0-1b16-11ee-b2ce-f1fd61e48b11",
            "name": "21 - KANTHARYAR",
            "employees_count": 18
        },
        {
            "id": "99f32540-3d9e-11ea-b7ba-cb036cdd4528",
            "name": "21- KANTHARYAR",
            "employees_count": 65
        },
        {
            "id": "9d973190-3d9e-11ea-ba90-51003e988dfd",
            "name": "22 - PARAMI",
            "employees_count": 95
        },
        {
            "id": "a1a1d720-3d9e-11ea-9ca8-01d86223470e",
            "name": "23 - TAMWE",
            "employees_count": 78
        },
        {
            "id": "76efc070-48b2-11ea-8182-0534f6e5fac3",
            "name": "24 - CENTRAL POINT",
            "employees_count": 31
        },
        {
            "id": "7848c0f0-48b2-11ea-8997-ddf2a9954ac8",
            "name": "25 - MONYWA",
            "employees_count": 30
        },
        {
            "id": "7a31a6a0-48b2-11ea-9935-a3f9c743315f",
            "name": "26 - PYAY",
            "employees_count": 16
        },
        {
            "id": "7b93b360-48b2-11ea-8375-eded19b0b6a9",
            "name": "27 - KYITHTOO",
            "employees_count": 18
        },
        {
            "id": "a462bb10-3d9e-11ea-af3f-0b6776453dff",
            "name": "28 - INSEIN",
            "employees_count": 66
        },
        {
            "id": "8c5f40e0-3cb8-11ee-8235-bd1a08f9783b",
            "name": "29 - NYAUNGDON",
            "employees_count": 4
        },
        {
            "id": "a8689520-3d9e-11ea-8585-516a0002f80a",
            "name": "29 - YGN-PATHEIN HIGHWAY",
            "employees_count": 31
        },
        {
            "id": "75818df0-3d9e-11ea-927a-8367b8f37c40",
            "name": "3 - MYANMAR PLAZA",
            "employees_count": 104
        },
        {
            "id": "7ee7d2a0-48b2-11ea-b9f8-a108109f8a09",
            "name": "30-73th Mdy",
            "employees_count": 1
        },
        {
            "id": "aa337780-3d9e-11ea-834a-4b7c2a87c93a",
            "name": "31 - KANDAWGYI",
            "employees_count": 19
        },
        {
            "id": "ab830bd0-3d9e-11ea-820b-6158cb91514c",
            "name": "32 - MICT",
            "employees_count": 33
        },
        {
            "id": "ae116100-3d9e-11ea-8fbe-7925c28487ee",
            "name": "33 - CHINA TOWN",
            "employees_count": 21
        },
        {
            "id": "4c2989b0-dfe1-11ea-9b8b-a788502ae21a",
            "name": "34 - KyeeMyinDaing",
            "employees_count": 0
        },
        {
            "id": "afe361f0-3d9e-11ea-9df6-2935d4a5c3f1",
            "name": "34 - KYIMYINDAING",
            "employees_count": 64
        },
        {
            "id": "f3b8b940-817a-11ea-bd43-97a4d6e005c9",
            "name": "35 - LASHIO",
            "employees_count": 73
        },
        {
            "id": "b2032770-3d9e-11ea-8102-5d5bb396f176",
            "name": "36 - NORTH DAGON",
            "employees_count": 64
        },
        {
            "id": "b5691420-3d9e-11ea-8812-0158f1cc73ba",
            "name": "37 - SANCHAUNG",
            "employees_count": 15
        },
        {
            "id": "b72512a0-3d9e-11ea-b201-c9a936bb52f8",
            "name": "38 - SOUTH DAGON",
            "employees_count": 57
        },
        {
            "id": "b98a6900-3d9e-11ea-a835-0793255b2865",
            "name": "39 - THE SECRETARIAT",
            "employees_count": 45
        },
        {
            "id": "79772ce0-3d9e-11ea-8a06-79ce57c06dd0",
            "name": "4 - DAGON CENTER II",
            "employees_count": 78
        },
        {
            "id": "88bebc70-e3c0-11ea-9aed-89c6ba4ff0bb",
            "name": "4-DC (SGGMS)",
            "employees_count": 10
        },
        {
            "id": "79f56df0-e3c0-11ea-84d9-e15debbeea2b",
            "name": "4-DC (YGM)",
            "employees_count": 12
        },
        {
            "id": "bac06ce0-3d9e-11ea-b416-abcb54b200a3",
            "name": "40 - THANLYIN- MYOMA ZAY",
            "employees_count": 24
        },
        {
            "id": "bf028ef0-3d9e-11ea-be83-ab8ce75c49f1",
            "name": "41 - INSEIN",
            "employees_count": 8
        },
        {
            "id": "fab5bfe0-817a-11ea-9972-e99a47f23421",
            "name": "41 - INSEIN 2",
            "employees_count": 53
        },
        {
            "id": "c1627040-3d9e-11ea-8f77-e7f6433222c9",
            "name": "42 - THANLYIN-CITY MART",
            "employees_count": 3
        },
        {
            "id": "81a87100-48b2-11ea-9fd9-85c3431a673b",
            "name": "43 - GREAT WALL, MDY",
            "employees_count": 9
        },
        {
            "id": "a69539e0-1b16-11ee-8e9c-9d61833dc221",
            "name": "43 - THANLYIN - CITY MART",
            "employees_count": 10
        },
        {
            "id": "fb000950-817a-11ea-929b-8ffe62513bf4",
            "name": "43 - THANLYIN-CITY MART",
            "employees_count": 27
        },
        {
            "id": "fb91ab00-817a-11ea-a5b7-9bc34ecd887c",
            "name": "44 - SOURTH OKKALAPA",
            "employees_count": 80
        },
        {
            "id": "fc2415d0-817a-11ea-abbc-1b030ed93672",
            "name": "45 - 10TH MILES",
            "employees_count": 9
        },
        {
            "id": "fc6c8500-817a-11ea-89fa-b74db1b820e7",
            "name": "46 - SHWE PYI THAR",
            "employees_count": 51
        },
        {
            "id": "fcba1060-817a-11ea-b78f-d132434177cd",
            "name": "47 - NAY PYI TAW",
            "employees_count": 41
        },
        {
            "id": "0c5fa140-d665-11ec-a7b2-97e7e2a56d87",
            "name": "48 - HTAUK KYANT",
            "employees_count": 42
        },
        {
            "id": "a592e0b0-5375-11ee-99eb-b1b0d95e06ea",
            "name": "49 - TERMINAL M",
            "employees_count": 26
        },
        {
            "id": "7c1373f0-3d9e-11ea-83a1-47458dcdd059",
            "name": "5 - INTERNATIONAL",
            "employees_count": 67
        },
        {
            "id": "7a1cb710-e3c0-11ea-9fc7-815f28dc66a1",
            "name": "5-DC (YGM)",
            "employees_count": 4
        },
        {
            "id": "83609b00-3d9e-11ea-8f80-77c1568fd1f5",
            "name": "6 - CAPITAL",
            "employees_count": 104
        },
        {
            "id": "8787a2d0-3d9e-11ea-9b25-ffa5ffdae9f4",
            "name": "7 - HLEDAN",
            "employees_count": 89
        },
        {
            "id": "8a872d90-3d9e-11ea-b91b-b1a5eb46c5e4",
            "name": "8 - DOMESTIC",
            "employees_count": 14
        },
        {
            "id": "79c65190-e3c0-11ea-ab66-bdb21132f33d",
            "name": "8-OH (SGGMS)",
            "employees_count": 10
        },
        {
            "id": "79b9e250-e3c0-11ea-be46-8746e8dec6d8",
            "name": "8-OH (SGT)",
            "employees_count": 1
        },
        {
            "id": "4ff7c010-8797-11ee-b15b-0f9642473c53",
            "name": "8-OH (YGM SGGMS MMCM)",
            "employees_count": 1
        },
        {
            "id": "79ceb3d0-e3c0-11ea-bbc6-a110a7247f93",
            "name": "8-OH (YGM SGGMS)",
            "employees_count": 30
        },
        {
            "id": "79eb5f60-e3c0-11ea-9aa8-ad204a14b40c",
            "name": "8-OH (YGM)",
            "employees_count": 22
        },
        {
            "id": "8b46b0c0-3d9e-11ea-b6df-e3e68ac05a49",
            "name": "9 - STAR CITY",
            "employees_count": 39
        },
        {
            "id": "019c0d28-acf9-710b-b558-cae1ae8ec3f7",
            "name": "abbbc",
            "employees_count": 0
        },
        {
            "id": "f60afe50-2b28-11eb-b980-13f6052b32c9",
            "name": "Admin",
            "employees_count": 163
        },
        {
            "id": "5011e380-71cf-11ea-9569-2f20948f1e1b",
            "name": "Asia Holidays Travels & Tours Company Limited",
            "employees_count": 14
        },
        {
            "id": "bd2452a0-03e8-11ed-96af-dde204b1a4e8",
            "name": "Atlas Digi Myanmar Limited",
            "employees_count": 108
        },
        {
            "id": "4bf82430-0c16-11ee-95b1-fda427bd850b",
            "name": "Atlas/Others",
            "employees_count": 12
        },
        {
            "id": "902decb0-218b-11ea-8815-599b717828b1",
            "name": "Blue Ridge",
            "employees_count": 28
        },
        {
            "id": "2edf1440-5f4f-11ea-9e4b-29903ac5bf73",
            "name": "Burma Boating",
            "employees_count": 0
        },
        {
            "id": "50713e60-71cf-11ea-9a27-0d7f764fe2f1",
            "name": "Burma Boating Company Limited",
            "employees_count": 2
        },
        {
            "id": "da0f6f80-3ff0-11ee-aeaa-13f702dd0f1f",
            "name": "Business & Strategy",
            "employees_count": 0
        },
        {
            "id": "5469b460-6c17-11ea-8f5e-d3191513fa49",
            "name": "Chindwin Investments Limited",
            "employees_count": 113
        },
        {
            "id": "7a82c350-e3c0-11ea-8dcf-5dd92528f2c0",
            "name": "City Loft Hlaing River Project",
            "employees_count": 2
        },
        {
            "id": "f5ed0380-2b28-11eb-87e5-291b91f14c65",
            "name": "City Loft West Project",
            "employees_count": 1
        },
        {
            "id": "c72f64c0-b742-11ed-9753-65378377f3c8",
            "name": "City Villas",
            "employees_count": 14
        },
        {
            "id": "93a66d70-f860-11ed-b548-21fe8631f138",
            "name": "CLW",
            "employees_count": 69
        },
        {
            "id": "7df5b410-3273-11ee-aa5a-e9697df77f6d",
            "name": "Commercial",
            "employees_count": 0
        },
        {
            "id": "79bc5040-02e6-11ee-9ca4-23da1e0fe974",
            "name": "Corporate (GSS)",
            "employees_count": 1
        },
        {
            "id": "829fc700-e3c0-11ea-b9d1-59ba8b678627",
            "name": "CPCL",
            "employees_count": 0
        },
        {
            "id": "5c5b69e0-98de-11ea-9fdc-23f80de0d7d7",
            "name": "CPCL (JCB)",
            "employees_count": 3
        },
        {
            "id": "777355d0-e3c0-11ea-bbc4-2b6ab14686e1",
            "name": "CPCL (NH)",
            "employees_count": 3
        },
        {
            "id": "df57aee0-6bd3-11ed-8455-a729b8d83dd2",
            "name": "Digital Loyalty Service Myanmar Limited",
            "employees_count": 11
        },
        {
            "id": "48a8a9e0-638f-11ea-99fd-5fd6b69becd7",
            "name": "DIS",
            "employees_count": 1
        },
        {
            "id": "4f2a4b40-0c16-11ee-abbd-65b6bac84f12",
            "name": "DLSM/Others",
            "employees_count": 5
        },
        {
            "id": "92d6ac90-74af-11ec-abf5-17e877d15c95",
            "name": "Emerging Health",
            "employees_count": 16
        },
        {
            "id": "019c06da-c485-73eb-892d-3cc91baf4a52",
            "name": "Entity 10",
            "employees_count": 0
        },
        {
            "id": "d0a43060-e27c-11e9-a417-4d2d43c10e61",
            "name": "Export / Import",
            "employees_count": 3
        },
        {
            "id": "d10aa520-d1b4-11ec-9f75-1791cd3fbb43",
            "name": "Family Clinic - Sanchaung",
            "employees_count": 1
        },
        {
            "id": "d08c84a0-e27c-11e9-b1c6-f3616f9ecf26",
            "name": "Finance",
            "employees_count": 22
        },
        {
            "id": "59f43590-88f9-11ea-8d0b-1fc9bf9a5ede",
            "name": "Fleet & Distribution",
            "employees_count": 7
        },
        {
            "id": "c29bd170-88fc-11ea-b826-938c392436ee",
            "name": "Fleet & Distribution Metro",
            "employees_count": 0
        },
        {
            "id": "653ed980-6806-11ea-b3f2-f9904a5d833e",
            "name": "Fleet&Distribution",
            "employees_count": 0
        },
        {
            "id": "1149f360-5207-11ea-8e5d-bdd854ea2781",
            "name": "FMI",
            "employees_count": 18
        },
        {
            "id": "d31e2da0-e27c-11e9-9516-0f71ae839cd0",
            "name": "FMI 100%",
            "employees_count": 27
        },
        {
            "id": "cfef1870-e27c-11e9-aa01-91b1fae8fdfd",
            "name": "FMI Flotilla",
            "employees_count": 2
        },
        {
            "id": "7a713670-e3c0-11ea-b14c-b1b6fe9ad29b",
            "name": "FMI Garden",
            "employees_count": 1
        },
        {
            "id": "4a1a9f60-71cf-11ea-9e10-b1899fa34c1c",
            "name": "FMI MKT",
            "employees_count": 0
        },
        {
            "id": "9dcc47d0-c18d-11ea-a1ec-9738b0403383",
            "name": "Garden",
            "employees_count": 0
        },
        {
            "id": "bb030f30-c28b-11e9-93f9-0d98150cbc5b",
            "name": "GSS",
            "employees_count": 237
        },
        {
            "id": "cc05b5e0-20b0-11ea-b8d6-f195ca71410d",
            "name": "GSS (45,45,10)",
            "employees_count": 28
        },
        {
            "id": "7706e140-e3c0-11ea-a2db-e70dccdb6793",
            "name": "GSS (50,50)",
            "employees_count": 1
        },
        {
            "id": "5fce3550-ee22-11ed-9d77-833271e20175",
            "name": "GSS 50% DLSM 50%",
            "employees_count": 1
        },
        {
            "id": "ad2c3c60-68ed-11ea-b537-513ff5000492",
            "name": "GSS PHSH",
            "employees_count": 0
        },
        {
            "id": "cf7f8bc0-b742-11ed-a801-590d35daef8d",
            "name": "Hangar",
            "employees_count": 7
        },
        {
            "id": "f752d940-2b28-11eb-8dda-41409faa1b32",
            "name": "HEH",
            "employees_count": 3
        },
        {
            "id": "1371f970-455b-11ee-adb3-b9e65875af06",
            "name": "Hino",
            "employees_count": 2
        },
        {
            "id": "1b987bd6-5dd0-11ec-baa7-06ca9e02f304",
            "name": "Hpa An Traditional Lodge Limited",
            "employees_count": 25
        },
        {
            "id": "c98abdf0-6daa-11ea-aafe-85b675b3b9d7",
            "name": "HRGCCL",
            "employees_count": 2
        },
        {
            "id": "771d0d90-e3c0-11ea-b6bf-598a6c56b8c6",
            "name": "HRGCCL - F&B",
            "employees_count": 2
        },
        {
            "id": "9f2d8dc0-5f4f-11ea-9fab-673ac67bde4f",
            "name": "HRGCCL - F&B(H)",
            "employees_count": 27
        },
        {
            "id": "563626a0-5f50-11ea-a3cb-b9b8cbb90939",
            "name": "HRGCCL - F&B(O)",
            "employees_count": 0
        },
        {
            "id": "d1ef3850-7879-11ea-a4c6-8903e28f9df9",
            "name": "HRGCCL - PH Links Golf 10% , HRGCCL 90%",
            "employees_count": 0
        },
        {
            "id": "9d4ed2f0-5f4f-11ea-823e-7b2a87a3ff5a",
            "name": "HRGCCL - PHCC",
            "employees_count": 29
        },
        {
            "id": "9e449510-5f4f-11ea-87d4-bbafc7feb0ee",
            "name": "HRGCCL - PHGC",
            "employees_count": 370
        },
        {
            "id": "7af9d310-e3c0-11ea-8e84-6bf8c6a5e058",
            "name": "JV-YMP",
            "employees_count": 21
        },
        {
            "id": "4b5d7b50-71cf-11ea-8fca-2bee96d1e668",
            "name": "Keinara Loikaw Company Limited",
            "employees_count": 36
        },
        {
            "id": "a351b210-5f4e-11ea-b6e2-2d23999febd2",
            "name": "Keinnara Loikaw",
            "employees_count": 5
        },
        {
            "id": "8dddcd10-bf71-11e9-930d-13b7e527172c",
            "name": "KFC Head Office",
            "employees_count": 146
        },
        {
            "id": "f9713e70-2b28-11eb-95a6-4f0b4659cf3c",
            "name": "KOSPA",
            "employees_count": 1
        },
        {
            "id": "57a71010-cbc8-11ea-9eb5-5fe30cdd160f",
            "name": "KOSPA - Metro",
            "employees_count": 0
        },
        {
            "id": "5d67ec10-aa2f-11ea-9c6a-7b142247c325",
            "name": "KOSPA_Metro",
            "employees_count": 0
        },
        {
            "id": "c962ee30-b564-11ea-804f-b104eb098c47",
            "name": "KOSPA- Metro",
            "employees_count": 131
        },
        {
            "id": "5df343c0-aa2f-11ea-bb89-f58537750b14",
            "name": "KOSPA-Metro",
            "employees_count": 2
        },
        {
            "id": "7fa82a00-48b2-11ea-8de9-75c8db6ccda7",
            "name": "LASHIO",
            "employees_count": 7
        },
        {
            "id": "7a602ed0-e3c0-11ea-a8a1-6d1372cf812f",
            "name": "Logistics",
            "employees_count": 27
        },
        {
            "id": "f61acb10-2b28-11eb-a422-053f5a0e9b3a",
            "name": "LSH",
            "employees_count": 1
        },
        {
            "id": "8f9607b0-5393-11ea-8998-13a1c3c7d651",
            "name": "MAGT",
            "employees_count": 33
        },
        {
            "id": "b5b43d10-6daa-11ea-b8da-fd41f4b9b20e",
            "name": "MDL",
            "employees_count": 43
        },
        {
            "id": "c20bd7f0-6daa-11ea-b65b-4b374e34c4e8",
            "name": "MDL (YCP)",
            "employees_count": 12
        },
        {
            "id": "f647d870-2b28-11eb-804d-21c16b36a287",
            "name": "MDY",
            "employees_count": 7
        },
        {
            "id": "8215af10-e3c0-11ea-a50d-cde9b66eac38",
            "name": "Memories - Asia Holidays",
            "employees_count": 2
        },
        {
            "id": "7cb2a930-e3c0-11ea-bec3-c90e46b37183",
            "name": "Memories - Burma Boating",
            "employees_count": 4
        },
        {
            "id": "7d1ca860-e3c0-11ea-b640-9505d7f9f191",
            "name": "Memories - Mokan International",
            "employees_count": 6
        },
        {
            "id": "77e529c0-e3c0-11ea-9927-9d45e503925e",
            "name": "Memories - Pun Hlaing Lodge Hotel Management",
            "employees_count": 1
        },
        {
            "id": "76dc6460-e3c0-11ea-a2ac-fdd5c8ffcb02",
            "name": "Memories Group",
            "employees_count": 3
        },
        {
            "id": "1b9879e2-5dd0-11ec-baa7-06ca9e02f304",
            "name": "Memories Myanmar F&B Management Co.,Ltd",
            "employees_count": 205
        },
        {
            "id": "6d556d00-42ab-11ea-8493-cd31cdf7c858",
            "name": "MMG",
            "employees_count": 29
        },
        {
            "id": "7738e4e0-e3c0-11ea-ad60-abdd5a707b65",
            "name": "MMPL",
            "employees_count": 2
        },
        {
            "id": "8b952b80-e3c0-11ea-ac9d-2967716dce9e",
            "name": "MMPL (MMCM)",
            "employees_count": 2
        },
        {
            "id": "85ece3c0-e3c0-11ea-b31f-e30c5e33eeae",
            "name": "MMPL (SGGMS)",
            "employees_count": 1
        },
        {
            "id": "7794d8a0-e3c0-11ea-9edc-e3c1b6304fa9",
            "name": "MMPL (YGM)",
            "employees_count": 4
        },
        {
            "id": "a17f3120-5f4e-11ea-8d32-eda1063e100f",
            "name": "Mokan International",
            "employees_count": 11
        },
        {
            "id": "558545e0-6c17-11ea-b0c2-2b4254150847",
            "name": "Mokan International Company Limited",
            "employees_count": 65
        },
        {
            "id": "9d9c2120-5f4e-11ea-af3a-6d305b92e6e7",
            "name": "MT & AHTT",
            "employees_count": 12
        },
        {
            "id": "f6782710-2b28-11eb-99d6-91b794c50721",
            "name": "MWQ",
            "employees_count": 1
        },
        {
            "id": "f875dfc0-592b-11ea-af99-c144fc4e6a83",
            "name": "Myanmar Motors Pte Ltd. (MMPL)",
            "employees_count": 0
        },
        {
            "id": "f7d33f80-2b28-11eb-b655-45ea2655daea",
            "name": "MYT",
            "employees_count": 1
        },
        {
            "id": "55c59190-4eeb-11ea-bf9d-1151ff081e74",
            "name": "New Holland Generator",
            "employees_count": 5
        },
        {
            "id": "3b714ae0-4eeb-11ea-93c5-ef257b779afc",
            "name": "New Holland Tractor",
            "employees_count": 339
        },
        {
            "id": "f62bfc50-2b28-11eb-ae61-990ff20f52ab",
            "name": "NPT",
            "employees_count": 4
        },
        {
            "id": "f7616f70-2b28-11eb-9c74-d74c151f369e",
            "name": "NYU",
            "employees_count": 3
        },
        {
            "id": "08c001d0-7569-11ea-9ad4-373aa7427f8d",
            "name": "Office",
            "employees_count": 43
        },
        {
            "id": "c17b2fc0-88fc-11ea-8e89-b9544868d92d",
            "name": "Operation",
            "employees_count": 0
        },
        {
            "id": "a0f1ab50-e54d-11ec-bb2f-c35bfc0c2045",
            "name": "PDG",
            "employees_count": 8
        },
        {
            "id": "468c4be0-71cf-11ea-a47a-51b20fdac067",
            "name": "PHCC",
            "employees_count": 2
        },
        {
            "id": "62ff40f0-0c17-11ee-ad88-85f759bcb7ef",
            "name": "PHE",
            "employees_count": 0
        },
        {
            "id": "453c0640-71cf-11ea-a2cd-4d8a9877645e",
            "name": "PHF & B",
            "employees_count": 2
        },
        {
            "id": "470f2610-71cf-11ea-93c5-b78cad0431c5",
            "name": "PHGC",
            "employees_count": 0
        },
        {
            "id": "f726a9c0-81db-11ee-aabe-07adf959f42a",
            "name": "PHGC - Building Maintenance",
            "employees_count": 0
        },
        {
            "id": "c94aa110-6daa-11ea-8d70-29e0d03162b2",
            "name": "PHGE",
            "employees_count": 14
        },
        {
            "id": "4995fc70-71cf-11ea-b510-f5adf63966cb",
            "name": "PHGE MKT",
            "employees_count": 2
        },
        {
            "id": "abe11b20-aba3-11ea-9bbb-59a9f50f64f1",
            "name": "PHSH",
            "employees_count": 0
        },
        {
            "id": "515348d0-0c16-11ee-8e0e-893b180504b4",
            "name": "PM",
            "employees_count": 0
        },
        {
            "id": "6159bac0-6283-11ee-96db-ef07aa74c71a",
            "name": "PRA-FMI Pansea Hotel Development Company Limited",
            "employees_count": 32
        },
        {
            "id": "217982a0-520d-11ee-b969-53dd1590c1d8",
            "name": "PRA-FMI Pansea Hotel Development Company Limited (TGR)",
            "employees_count": 41
        },
        {
            "id": "d0bc2500-e27c-11e9-9d65-2738c6c98490",
            "name": "Protocol",
            "employees_count": 2
        },
        {
            "id": "76e26480-e3c0-11ea-8c85-031eb5a69e1d",
            "name": "PRPL",
            "employees_count": 1
        },
        {
            "id": "d0068760-e27c-11e9-b69a-9bcc2af31fad",
            "name": "Pun Akery",
            "employees_count": 0
        },
        {
            "id": "97472140-74af-11ec-9fd3-a58208868adf",
            "name": "Pun Hlaing Clinic - North Dagon",
            "employees_count": 23
        },
        {
            "id": "96f444c0-74af-11ec-b8ef-8904d4b3e305",
            "name": "Pun Hlaing Clinic - Star City",
            "employees_count": 3
        },
        {
            "id": "37f8c770-74b0-11ec-9e1b-7d6d4486c5fc",
            "name": "Pun Hlaing Clinic - Taw Win",
            "employees_count": 45
        },
        {
            "id": "a342b120-5f4f-11ea-a1bd-b7611bd99c25",
            "name": "Pun Hlaing Estate Management",
            "employees_count": 353
        },
        {
            "id": "7c45ca70-852b-11ea-a6f5-c157597e1202",
            "name": "Pun Hlaing Estate MKT",
            "employees_count": 3
        },
        {
            "id": "68728ae0-5f50-11ea-8985-4193587e98a6",
            "name": "Pun Hlaing Estate Utility Opeation",
            "employees_count": 0
        },
        {
            "id": "a2428ce0-5f4f-11ea-bccb-c777db1f2584",
            "name": "Pun Hlaing Estate Utility Operation",
            "employees_count": 137
        },
        {
            "id": "a0771f30-5f4f-11ea-861f-091dacbabe91",
            "name": "Pun Hlaing Golf Estate",
            "employees_count": 99
        },
        {
            "id": "119f5e20-74b0-11ec-ad58-154606eaa173",
            "name": "Pun Hlaing Hospital - Head Office",
            "employees_count": 2
        },
        {
            "id": "932b69e0-74af-11ec-85bb-b72be7ca5e80",
            "name": "Pun Hlaing Hospital - Hlaing Tharyar",
            "employees_count": 455
        },
        {
            "id": "b3022530-775e-11ec-a4e6-dd51dafeb907",
            "name": "Pun Hlaing Hospital - Mandalay",
            "employees_count": 224
        },
        {
            "id": "ad167580-775f-11ec-ba77-7ba2df6e7601",
            "name": "Pun Hlaing Hospital - Taunggyi",
            "employees_count": 318
        },
        {
            "id": "926632c0-74af-11ec-ac4e-0f227731b0f7",
            "name": "Pun Hlaing Hospitals - Head Office",
            "employees_count": 51
        },
        {
            "id": "522f72e0-71cf-11ea-a966-916dae607909",
            "name": "Pun Hlaing Lodge Hotel Management Limited",
            "employees_count": 122
        },
        {
            "id": "a0e13430-5f4f-11ea-9a03-2bb9105a1666",
            "name": "Pun Hlaing Services",
            "employees_count": 271
        },
        {
            "id": "87adef20-874a-11ed-98fd-db7698157dcf",
            "name": "Pun Hlaing Veggie Farm",
            "employees_count": 31
        },
        {
            "id": "fe6190d0-d202-11ec-9edb-ebfb8e039333",
            "name": "Pun Hliang Clinic - North Dagon",
            "employees_count": 1
        },
        {
            "id": "019c0d4d-bf85-71bd-b6d6-ea425a7a7f82",
            "name": "Pun Hliang Clinic - North Dagon 1",
            "employees_count": 0
        },
        {
            "id": "7b69e8e0-e3c0-11ea-8df2-632f569f9bcc",
            "name": "Pun Plus Projects",
            "employees_count": 3
        },
        {
            "id": "f630f9f0-2b28-11eb-8c88-81aaf197adb3",
            "name": "RGN",
            "employees_count": 14
        },
        {
            "id": "0eec1df0-7569-11ea-a23b-f3ff91aeb6d9",
            "name": "Sales & Markeing",
            "employees_count": 2
        },
        {
            "id": "79801d40-e3c0-11ea-8155-13bf1dba5433",
            "name": "Sales & Marketing",
            "employees_count": 10
        },
        {
            "id": "7da98d30-d0e7-11ec-b600-33f9cbead16d",
            "name": "SAUNG NAING FOOD AND BEVERAGE COMPANY LIMITED",
            "employees_count": 1
        },
        {
            "id": "dcf7a8e0-b742-11ed-92cd-d5ceba578b99",
            "name": "SCIS",
            "employees_count": 40
        },
        {
            "id": "d8c3bfe0-07d2-11ed-9355-5bf68ba42beb",
            "name": "Service",
            "employees_count": 34
        },
        {
            "id": "79c72b60-4eec-11ea-b027-e332fea0b7ed",
            "name": "SGG Motor Services Ltd.",
            "employees_count": 1
        },
        {
            "id": "f9726d20-592b-11ea-b8ea-4d0eef23bc2b",
            "name": "SGG Motor Services Ltd. (Mdy)",
            "employees_count": 0
        },
        {
            "id": "a66be670-5f4e-11ea-9e6d-43def285a5ec",
            "name": "Shwe Lay Ta Gun Travels & Tours Co.,Ltd",
            "employees_count": 13
        },
        {
            "id": "7e90faf0-e3c0-11ea-9869-6d8bd4407793",
            "name": "Shwe Lay Ta Gun Travels & Tours Company Limited",
            "employees_count": 242
        },
        {
            "id": "ca79e970-1bcd-11ee-a7c5-37fa63023561",
            "name": "ShweLayTaGunTravels&ToursCo.,Ltd.",
            "employees_count": 2
        },
        {
            "id": "9749bbc0-9042-11ea-8fab-0df704e6bb6f",
            "name": "SM Mawlamyaing Hotel Limited",
            "employees_count": 38
        },
        {
            "id": "a9a12330-5f4e-11ea-a845-414929940425",
            "name": "SM Mawlamyaing Hotel Ltd.",
            "employees_count": 7
        },
        {
            "id": "94393240-4e55-11ea-a3de-bd33e86eee71",
            "name": "SPA",
            "employees_count": 6
        },
        {
            "id": "9b6fb790-6db0-11ea-9bdc-1f80beaa1388",
            "name": "SPA Design & Project Services Ltd.",
            "employees_count": 1
        },
        {
            "id": "c71033d0-6daa-11ea-83eb-55678d578157",
            "name": "SPA DPS",
            "employees_count": 64
        },
        {
            "id": "c08cafb0-6daa-11ea-93ef-8fdba77165a2",
            "name": "SPA PMPL",
            "employees_count": 0
        },
        {
            "id": "72d7bb60-852b-11ea-a5e9-1bcd1c4459b1",
            "name": "SPA sales & marketing (PHGE)",
            "employees_count": 1
        },
        {
            "id": "7716d5b0-e3c0-11ea-8b68-f7c178f4b41f",
            "name": "SPAPMPL",
            "employees_count": 2
        },
        {
            "id": "66081850-82ea-11ea-aacf-51f9b60663c7",
            "name": "Star City",
            "employees_count": 40
        },
        {
            "id": "f16ae3a0-6389-11ea-8663-cd50011502f0",
            "name": "Star City Links",
            "employees_count": 68
        },
        {
            "id": "2b1960f0-789a-11ea-94e3-df1805e628da",
            "name": "Star City MKT",
            "employees_count": 11
        },
        {
            "id": "beab9800-46ae-11ec-a815-ef20f7274bc9",
            "name": "Star Ferry",
            "employees_count": 1
        },
        {
            "id": "6df5c1e0-4eec-11ea-9df3-f3d85fa13062",
            "name": "Successful Goals Trading Ltd. (Head Office)",
            "employees_count": 1
        },
        {
            "id": "c90a19c0-6daa-11ea-a707-19efe85d0f0f",
            "name": "TED",
            "employees_count": 2
        },
        {
            "id": "77a064e0-e3c0-11ea-b05b-4d03e4b35e61",
            "name": "TED - City Loft",
            "employees_count": 32
        },
        {
            "id": "b95a6660-b743-11ed-8bff-d7fa32c9704c",
            "name": "TED - City Loft West",
            "employees_count": 19
        },
        {
            "id": "4839f840-1b08-11ee-a799-53af8a259634",
            "name": "TED - Dev.\n",
            "employees_count": 2
        },
        {
            "id": "f004bab0-6389-11ea-b58c-bb8c653cfb5b",
            "name": "TED - Dev.",
            "employees_count": 307
        },
        {
            "id": "ef5dd4d0-6389-11ea-9a1f-815b56b77874",
            "name": "TED - EM",
            "employees_count": 459
        },
        {
            "id": "dc67b000-6f1e-11ee-9d25-89e1efdee689",
            "name": "TED - Fac",
            "employees_count": 3
        },
        {
            "id": "efc2ee70-6389-11ea-a629-2b23e95f9cff",
            "name": "TED - Leasing",
            "employees_count": 28
        },
        {
            "id": "4388db00-638f-11ea-bec4-edddaf56c3b0",
            "name": "TED - PABX",
            "employees_count": 4
        },
        {
            "id": "87f07840-e3c0-11ea-bc34-6fa6d3b234cf",
            "name": "TED - PH Links Golf 100%",
            "employees_count": 1
        },
        {
            "id": "f12f6780-6389-11ea-a583-a30c669a4fca",
            "name": "TED - S&R",
            "employees_count": 24
        },
        {
            "id": "ea7c1140-b742-11ed-b103-273a0fa8df68",
            "name": "TED - Star Ferry",
            "employees_count": 9
        },
        {
            "id": "f1a64400-6389-11ea-a7d3-69b4c2a1b47f",
            "name": "TED - UO",
            "employees_count": 97
        },
        {
            "id": "784715e0-11d7-11eb-b4dd-61836a5c604c",
            "name": "TED / City Loft",
            "employees_count": 0
        },
        {
            "id": "3ba61010-638f-11ea-985a-7b8dc7bc841f",
            "name": "TED City Loft",
            "employees_count": 3
        },
        {
            "id": "dbeac010-73cd-11ea-8d97-158e9288b8d7",
            "name": "TED-City Loft",
            "employees_count": 2
        },
        {
            "id": "98e4d7e0-0e85-11ee-8c18-c72f1898f575",
            "name": "TED-City Loft West",
            "employees_count": 0
        },
        {
            "id": "3851d300-638f-11ea-b913-830ad5505dd7",
            "name": "TED-Dev",
            "employees_count": 17
        },
        {
            "id": "91b876c0-1bc8-11ee-be80-5ff696c8c264",
            "name": "TED-Dev.",
            "employees_count": 1
        },
        {
            "id": "547c0dc0-638f-11ea-956f-ef58da30acdd",
            "name": "TED-EM",
            "employees_count": 22
        },
        {
            "id": "467f34c0-638f-11ea-88a3-838497512fb3",
            "name": "TED-Leasing",
            "employees_count": 6
        },
        {
            "id": "4ce44360-638f-11ea-90b2-5fb9935be58e",
            "name": "TED-PABX",
            "employees_count": 0
        },
        {
            "id": "7878b430-638f-11ea-a991-af03e8b83454",
            "name": "TED-RB",
            "employees_count": 0
        },
        {
            "id": "dcf11ba0-73cd-11ea-810a-9139217945ce",
            "name": "TED-S&R",
            "employees_count": 0
        },
        {
            "id": "556dca50-638f-11ea-b196-17ee851d93b0",
            "name": "TED-UO",
            "employees_count": 7
        },
        {
            "id": "46fb3380-f9dc-11ea-945c-f9234b29acbe",
            "name": "TED/EM",
            "employees_count": 0
        },
        {
            "id": "23520a00-f068-11ea-9d6b-bffb15309687",
            "name": "TED/UO",
            "employees_count": 0
        },
        {
            "id": "68a09310-82ea-11ea-a286-cb4c1de8680a",
            "name": "Thanlyin",
            "employees_count": 0
        },
        {
            "id": "f6124db0-2b28-11eb-8c20-df8f3690d77c",
            "name": "TLW",
            "employees_count": 10
        },
        {
            "id": "4bed6a30-71cf-11ea-8d5a-37a60c92e4f0",
            "name": "Traditional Lodge Hotel Company Limited",
            "employees_count": 23
        },
        {
            "id": "79648390-e3c0-11ea-bcee-9df07e004133",
            "name": "Transportation",
            "employees_count": 281
        },
        {
            "id": "215a3d80-46e6-11ee-8984-d1e65b2784df",
            "name": "Transportation - YGN",
            "employees_count": 1
        },
        {
            "id": "f65eca40-2b28-11eb-ad23-bd5c1bc81c3c",
            "name": "TVY",
            "employees_count": 2
        },
        {
            "id": "17a59290-4307-11ea-b28c-652a705deac1",
            "name": "USD",
            "employees_count": 1
        },
        {
            "id": "671043d0-6806-11ea-bda9-73a157548c2b",
            "name": "Warehouse",
            "employees_count": 81
        },
        {
            "id": "4796a820-ea7c-11ea-92c2-e1e51977f57d",
            "name": "Warhouse",
            "employees_count": 1
        },
        {
            "id": "c7477a80-71d0-11ea-8f32-9766e2881d9f",
            "name": "YALH",
            "employees_count": 47
        },
        {
            "id": "8683e870-e3c0-11ea-82b4-65a128db758d",
            "name": "YALH Zuari Yoma",
            "employees_count": 0
        },
        {
            "id": "5e4db340-71ce-11ea-8ca6-7172cfe5ce1a",
            "name": "YALH-Zuari Yoma",
            "employees_count": 7
        },
        {
            "id": "bfcc9a80-6daa-11ea-b75d-93ac4ec4a5a5",
            "name": "YDG",
            "employees_count": 34
        },
        {
            "id": "2a9ba320-839d-11ee-8d01-3993b552e49a",
            "name": "YDG - Dev",
            "employees_count": 1
        },
        {
            "id": "6ec7c930-6db0-11ea-9082-312173199501",
            "name": "YDG - Dev.",
            "employees_count": 25
        },
        {
            "id": "6f23ef70-6db0-11ea-85db-5d0ffce3c01f",
            "name": "YDG - Leasing",
            "employees_count": 31
        },
        {
            "id": "ef51e3e0-5ef0-11ec-b832-67884703ce67",
            "name": "YDG - Leasing (Campus)",
            "employees_count": 52
        },
        {
            "id": "2b919480-60f2-11ee-b8e1-afa11da4e942",
            "name": "YDG - Leasing(Campus)",
            "employees_count": 1
        },
        {
            "id": "c69032f0-6daa-11ea-9b4f-8b7cfb7f83ce",
            "name": "YDG - PM",
            "employees_count": 158
        },
        {
            "id": "4187bac0-0f22-11ee-b042-c54ffb774991",
            "name": "YDG - PM - YCP",
            "employees_count": 0
        },
        {
            "id": "0276aea0-ca98-11ea-9086-6de7c470d552",
            "name": "YDG - PYN",
            "employees_count": 2
        },
        {
            "id": "019d2a40-ca98-11ea-8a7f-c785df8ed85c",
            "name": "YDG - YCP",
            "employees_count": 3
        },
        {
            "id": "714a85e0-8a94-11ea-b607-e918a27329ba",
            "name": "YDG PM",
            "employees_count": 1
        },
        {
            "id": "b9509d10-6daa-11ea-a4a9-0534950630de",
            "name": "YDG PM - PYN",
            "employees_count": 44
        },
        {
            "id": "b5590c20-6daa-11ea-a27d-c73b88a09d81",
            "name": "YDG PM - YCP",
            "employees_count": 155
        },
        {
            "id": "50152f50-5eaf-11ea-8d23-cf31f1a4ff45",
            "name": "YFL",
            "employees_count": 1
        },
        {
            "id": "710e0520-79b4-11ea-8ff3-1568b81cad48",
            "name": "YGM",
            "employees_count": 0
        },
        {
            "id": "f3f70d60-5062-11ee-a0ea-eb612dc84fcb",
            "name": "YHE",
            "employees_count": 1
        },
        {
            "id": "56a54440-68b5-11ee-8a27-011f7833efe2",
            "name": "YLD-DEV",
            "employees_count": 7
        },
        {
            "id": "ad8157c0-9967-11ee-b4b6-e97ca76db48a",
            "name": "Yoma Center",
            "employees_count": 1
        },
        {
            "id": "1b987c19-5dd0-11ec-baa7-06ca9e02f304",
            "name": "Yoma Central",
            "employees_count": 7
        },
        {
            "id": "2cedab80-789a-11ea-8955-f18d9efcaa95",
            "name": "Yoma Central MKT",
            "employees_count": 5
        },
        {
            "id": "562f0e40-4eeb-11ea-aa10-a1c0fe403e82",
            "name": "Yoma Equipment & Power Rental",
            "employees_count": 8
        },
        {
            "id": "65c0a180-218b-11ea-8bb4-fdcc52548635",
            "name": "Yoma F&B",
            "employees_count": 1
        },
        {
            "id": "8ddf1740-bf71-11e9-bcc3-b1b6bd38be56",
            "name": "Yoma Fleet",
            "employees_count": 9
        },
        {
            "id": "462b19e0-ea7c-11ea-ba4f-ffdd23cd8f7c",
            "name": "Yoma Fleet Limited",
            "employees_count": 1
        },
        {
            "id": "9d73ec90-c18d-11ea-ace5-05f90bceba4b",
            "name": "Yoma Fleet Ltd",
            "employees_count": 0
        },
        {
            "id": "f8474960-592b-11ea-8859-bbbda0f6297b",
            "name": "Yoma German Motors",
            "employees_count": 0
        },
        {
            "id": "7028a530-4eec-11ea-9cf4-95fb19294034",
            "name": "Yoma German Motors Ltd.",
            "employees_count": 1
        },
        {
            "id": "f8cb4ed0-592b-11ea-bb48-c9f7dee78f5c",
            "name": "Yoma German Motors Ltd. (Ygn)",
            "employees_count": 1
        },
        {
            "id": "6f0f2ba0-4eec-11ea-bf77-09ff243233a0",
            "name": "Yoma German Motors Ltd. & SGG Motors Services Ltd.",
            "employees_count": 2
        },
        {
            "id": "4f2c6cc0-4eeb-11ea-b41b-0b5e1c45254e",
            "name": "Yoma JCB ",
            "employees_count": 56
        },
        {
            "id": "8de05d80-bf71-11e9-b125-79a8397618d1",
            "name": "Yoma Leasing",
            "employees_count": 0
        },
        {
            "id": "ae319160-7744-11ea-897d-33491b7be220",
            "name": "Yoma Micro Power",
            "employees_count": 346
        },
        {
            "id": "fa431cc0-9b0d-11ea-981d-e957e0c9f6dd",
            "name": "Yoma Nominee Ltd.",
            "employees_count": 1
        },
        {
            "id": "0e965ea0-79b4-11ea-a726-0fd526eac584",
            "name": "Yomaland",
            "employees_count": 1
        },
        {
            "id": "d382c160-e27c-11e9-94d6-3901efc8c76d",
            "name": "YSH",
            "employees_count": 66
        },
        {
            "id": "777a5c50-e3c0-11ea-b23b-7357deb1c204",
            "name": "YSIL - KOSPA",
            "employees_count": 0
        },
        {
            "id": "f82021b0-2b28-11eb-836b-9dbc2928937b",
            "name": "YSIL (Altai)",
            "employees_count": 36
        },
        {
            "id": "7e783c20-e3c0-11ea-9f3c-53700eb048f5",
            "name": "YSIL (KFC)",
            "employees_count": 2
        },
        {
            "id": "77477cd0-e3c0-11ea-ab54-2970c8dfaa8f",
            "name": "YSIL (YFL)",
            "employees_count": 2
        },
        {
            "id": "658d8ea0-218b-11ea-b1ff-f373a189569a",
            "name": "YSIL (Yoma F&B)",
            "employees_count": 24
        },
        {
            "id": "79753820-e3c0-11ea-aa56-1f1066cb3bbc",
            "name": "YSIL-KOSPA",
            "employees_count": 8
        },
        {
            "id": "7e504810-e3c0-11ea-966a-03e338a63cf8",
            "name": "YSIL-KOSPA-Metro",
            "employees_count": 7
        },
        {
            "id": "7e73f1c0-e3c0-11ea-b53d-4976f17aedab",
            "name": "YSIL(Altai)",
            "employees_count": 3
        },
        {
            "id": "6bcac690-218b-11ea-9a08-5b50455696af",
            "name": "YSIL(KFC)",
            "employees_count": 0
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):


{
    "message": "Failed to retrieve Charge to entities"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/charge-to-entities

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Create Charge to entity

requires authentication

Create a new Charge to entity.

Example request:
curl --request POST \
    "http://localhost/api/v1/charge-to-entities" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Entity\"
}"
const url = new URL(
    "http://localhost/api/v1/charge-to-entities"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "name": "Entity"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "message": "Charge to entity created successfully",
    "data": [
        {
            "id": "9d3a8f20-c8e4-4b3a-9f2d-1e5c8a7b9d3a",
            "name": "Entity"
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/charge-to-entities

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

The name of the charge to entity Example: Entity

Delete Charge to entity

requires authentication

Delete a Charge to entity by its UUID.

Example request:
curl --request DELETE \
    "http://localhost/api/v1/charge-to-entities/9d3a8f20-c8e4-4b3a-9f2d-1e5c8a7b9d3a" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/charge-to-entities/9d3a8f20-c8e4-4b3a-9f2d-1e5c8a7b9d3a"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Charge to entity deleted successfully"
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422):


{
    "message": "Cannot delete Charge to entity with associated employees"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):


{
    "message": "Failed to delete Charge to entity"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

DELETE api/v1/charge-to-entities/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The UUID of the section to delete. Example: 9d3a8f20-c8e4-4b3a-9f2d-1e5c8a7b9d3a

Section

Index Section

requires authentication

Retrieve a list of all sections with their employee counts.

Example request:
curl --request GET \
    --get "http://localhost/api/v1/sections" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/sections"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Sections retrieved successfully",
    "data": [
        {
            "id": "aad55850-a59c-11ec-8644-c18b3ff2ed47",
            "name": " Air-con Team ",
            "employees_count": 0
        },
        {
            "id": "9e429140-0e85-11ee-8132-b1af60230e34",
            "name": " City Loft",
            "employees_count": 0
        },
        {
            "id": "f4c3e0d0-a59d-11ec-b040-1fbab4f5ec5d",
            "name": " Dulwich ",
            "employees_count": 2
        },
        {
            "id": "aba438c0-a59c-11ec-84c1-77766a7afd7a",
            "name": " Housekeeping ",
            "employees_count": 0
        },
        {
            "id": "da1c9770-8a55-11ec-8c2b-01a22f299c13",
            "name": " Security & Fire ",
            "employees_count": 3
        },
        {
            "id": "d998eee0-8a55-11ec-93d4-bbd86d4ec89b",
            "name": " Security and Fire ",
            "employees_count": 4
        },
        {
            "id": "f497a440-a59d-11ec-9f43-350c03f98a81",
            "name": " Utility Operation ",
            "employees_count": 0
        },
        {
            "id": "a9e36d20-a59c-11ec-98d3-93be9922545e",
            "name": " Veggie Farm ",
            "employees_count": 1
        },
        {
            "id": "c72c0d90-e27c-11e9-9ef4-59915eff3d71",
            "name": "- ",
            "employees_count": 1916
        },
        {
            "id": "29286bf0-0121-11ee-a2f0-5d9e76151a8a",
            "name": "(EMO A&B)",
            "employees_count": 8
        },
        {
            "id": "5623c9f0-e25f-11ed-a6a9-4f34a0716d8e",
            "name": "(EMO CL&CV)",
            "employees_count": 7
        },
        {
            "id": "60762160-e25f-11ed-bc0f-137c91f8bf9f",
            "name": "(EMO Galaxy & SV)",
            "employees_count": 8
        },
        {
            "id": "f2a83060-2b27-11eb-a5b2-47b66a374915",
            "name": "AA - Junction City",
            "employees_count": 1
        },
        {
            "id": "f53de460-2b27-11eb-b03e-b155654043a4",
            "name": "AA - Junction Square",
            "employees_count": 2
        },
        {
            "id": "f2a02a90-2b27-11eb-ae30-35c7e8d9d03c",
            "name": "AA - Myanmar Plaza",
            "employees_count": 2
        },
        {
            "id": "67199170-71d7-11ea-8fb7-c1148fde2e74",
            "name": "Admin",
            "employees_count": 3
        },
        {
            "id": "fbba6720-0f6f-11ee-8818-ff9c50fde730",
            "name": "Admin & General",
            "employees_count": 4
        },
        {
            "id": "b8833480-2b27-11eb-8e7b-bddd9bacf4d4",
            "name": "Administration",
            "employees_count": 33
        },
        {
            "id": "d151ce00-2b27-11eb-94bc-09fe8d47f447",
            "name": "Administration Office",
            "employees_count": 15
        },
        {
            "id": "ca955540-2b27-11eb-9280-337e9a24537c",
            "name": "Air ConTeam",
            "employees_count": 4
        },
        {
            "id": "d72e9af0-4709-11ee-89f5-5f25a2655e91",
            "name": "Air-con Team",
            "employees_count": 1
        },
        {
            "id": "081c4460-2b28-11eb-856d-5d7436c6b50e",
            "name": "Architectural Design Team ",
            "employees_count": 2
        },
        {
            "id": "be7b53a0-2b27-11eb-9caa-dffffae3b9b1",
            "name": "Architectural Design Team 1",
            "employees_count": 0
        },
        {
            "id": "be8265c0-2b27-11eb-bf57-9f112078e3d7",
            "name": "Architectural Design Team 2",
            "employees_count": 0
        },
        {
            "id": "fb6323f0-2b27-11eb-8212-db9c2c8db9fd",
            "name": "Architectural Design Team 3",
            "employees_count": 1
        },
        {
            "id": "be8a9700-2b27-11eb-b83e-a9723fa4f382",
            "name": "Architectural Design Team 4",
            "employees_count": 1
        },
        {
            "id": "b0452520-353c-11ec-86e3-55d6f5241e1f",
            "name": "Architecture",
            "employees_count": 18
        },
        {
            "id": "8d4cbb90-4f42-11eb-8fcc-b78cb6b860e2",
            "name": "Assambler",
            "employees_count": 1
        },
        {
            "id": "82c1cbe0-218b-11ea-ad20-c9bf3238fe02",
            "name": "Assembler",
            "employees_count": 502
        },
        {
            "id": "026b2640-78a0-11ed-bd65-f3b211ca7676",
            "name": "Atlas Bar",
            "employees_count": 17
        },
        {
            "id": "1adfbd20-730e-11ee-9535-779fb8f80415",
            "name": "Awei Mett F&B",
            "employees_count": 3
        },
        {
            "id": "664b6b20-69bc-11ee-9ac2-b51c37b26e28",
            "name": "Awei Metta F&B",
            "employees_count": 2
        },
        {
            "id": "e0894290-2b27-11eb-be00-673e79097f52",
            "name": "Bagan Operation ",
            "employees_count": 14
        },
        {
            "id": "db4ce390-534d-11eb-a9cb-71e5c8b5f70b",
            "name": "Bamboo House",
            "employees_count": 4
        },
        {
            "id": "da54d7d0-71b1-11ee-b7ae-4dc5c7ef023a",
            "name": "Bar",
            "employees_count": 1
        },
        {
            "id": "c0ea1b60-2b27-11eb-b4b7-0d63e4894602",
            "name": "Body & Paint",
            "employees_count": 4
        },
        {
            "id": "8797fd10-7470-11ec-8c7e-a12bdeee39d1",
            "name": "Branding & Communication",
            "employees_count": 11
        },
        {
            "id": "d0d090d0-d1b4-11ec-8256-09c7a0857597",
            "name": "Branding and Communication",
            "employees_count": 1
        },
        {
            "id": "4c69fe20-d208-11ec-883a-a73cecb8ab1a",
            "name": "Branding and Communications",
            "employees_count": 1
        },
        {
            "id": "7ecfd160-f91e-11ed-a179-af684473375e",
            "name": "British Club",
            "employees_count": 3
        },
        {
            "id": "440b0180-0f70-11ee-83e8-9161a42e9431",
            "name": "Buggy Service",
            "employees_count": 2
        },
        {
            "id": "1b8f7910-eb86-11ec-8c9b-d347b3937900",
            "name": "Building Maintenance",
            "employees_count": 27
        },
        {
            "id": "1749bc40-07db-11ed-a99a-fbf8d6077845",
            "name": "Business Development",
            "employees_count": 1
        },
        {
            "id": "ea38f6b0-2b27-11eb-8e44-91e57d875c7b",
            "name": "C&S",
            "employees_count": 0
        },
        {
            "id": "c32cdb30-2b27-11eb-b60e-0bbd96f64744",
            "name": "Caddy",
            "employees_count": 15
        },
        {
            "id": "8059a220-c2fe-11ed-9916-f317ce7f3cb1",
            "name": "Campus - Transport",
            "employees_count": 0
        },
        {
            "id": "d025cd90-2b27-11eb-9b6e-f727bedbace7",
            "name": "Campus Coffee Shop",
            "employees_count": 1
        },
        {
            "id": "b97d1230-2b27-11eb-a612-e1d44da4f2c1",
            "name": "Campus Operation",
            "employees_count": 9
        },
        {
            "id": "ebb4d640-353c-11ec-8dba-61fc13088ee2",
            "name": "Campus Operations",
            "employees_count": 1
        },
        {
            "id": "a6f832e0-4395-11ec-9dc7-a9c856e42faf",
            "name": "Campus Transport",
            "employees_count": 21
        },
        {
            "id": "9d747e30-c18d-11ea-9781-5b35e299c679",
            "name": "Carshare",
            "employees_count": 0
        },
        {
            "id": "827af2b0-218b-11ea-8249-9d3f8dd6c44e",
            "name": "Cashier",
            "employees_count": 168
        },
        {
            "id": "36d378e0-0f70-11ee-9372-41d5f58abd48",
            "name": "CC - Finance",
            "employees_count": 1
        },
        {
            "id": "12ea0830-0f70-11ee-8d64-e11e83ef08a7",
            "name": "CC - Front Office",
            "employees_count": 7
        },
        {
            "id": "c49cc810-0f6f-11ee-8146-cb087dca8561",
            "name": "CC - Housekeeping",
            "employees_count": 7
        },
        {
            "id": "d74ef1c0-0f6f-11ee-a3bd-7bf942c32a42",
            "name": "CC - M&E",
            "employees_count": 2
        },
        {
            "id": "877c7860-52e8-11ee-82d0-a7b7b8c9e440",
            "name": "CEO ",
            "employees_count": 1
        },
        {
            "id": "9c53d7d0-7470-11ec-93c5-2149f14ec199",
            "name": "CEO Office",
            "employees_count": 2
        },
        {
            "id": "5da121f1-5f0f-11ec-baa7-06ca9e02f304",
            "name": "Chief Advisor Office",
            "employees_count": 3
        },
        {
            "id": "fbc123e2-146b-11ec-a4b2-06ca9e02f304",
            "name": "City Loft",
            "employees_count": 32
        },
        {
            "id": "170ad7f0-7e8c-11ec-8aed-636425800b12",
            "name": "City Loft West",
            "employees_count": 9
        },
        {
            "id": "74fb39f0-3e10-11ed-8ae0-b3045f2bdbc4",
            "name": "City Villa",
            "employees_count": 0
        },
        {
            "id": "300ec1b0-6ec8-11ed-9248-691a8353762f",
            "name": "City Villas",
            "employees_count": 10
        },
        {
            "id": "9ac1ffc0-0e85-11ee-b349-176c945cdbeb",
            "name": "City Villas X",
            "employees_count": 7
        },
        {
            "id": "fe574ce0-d15d-11ec-b4cd-d303f41bed78",
            "name": "CK Office",
            "employees_count": 2
        },
        {
            "id": "a42fc960-7470-11ec-ae64-e18370ac22d4",
            "name": "Clinical Excellence",
            "employees_count": 11
        },
        {
            "id": "ac264020-7470-11ec-aa5c-891dc70750fe",
            "name": "Clinical Operations",
            "employees_count": 284
        },
        {
            "id": "9a8f8a7d-146c-11ec-a4b2-06ca9e02f304",
            "name": "CLW",
            "employees_count": 0
        },
        {
            "id": "eb2ee2e0-2b27-11eb-b81d-7f5c580f9f14",
            "name": "Community S&R (Pool)",
            "employees_count": 2
        },
        {
            "id": "cc0642a0-20b0-11ea-b129-af92749254bd",
            "name": "Compensation & Benefits",
            "employees_count": 15
        },
        {
            "id": "dc7697d0-f527-11ea-bd5d-359c42ce1b20",
            "name": "Construction",
            "employees_count": 1
        },
        {
            "id": "dc3c1640-f527-11ea-a7b4-93bf746be25f",
            "name": "Contract / Commercial",
            "employees_count": 0
        },
        {
            "id": "2cd02f50-9354-11ee-8739-8f6b6ac0db82",
            "name": "Contract and Project Cost Control Section",
            "employees_count": 0
        },
        {
            "id": "4eed3af0-84c9-11ec-a2ce-49d2e5d46242",
            "name": "Corporate Sales",
            "employees_count": 1
        },
        {
            "id": "4e1b7c90-74b0-11ec-b933-a5a040d9f699",
            "name": "Corporate Support Services",
            "employees_count": 3
        },
        {
            "id": "5fde71e0-0709-11ec-ba8b-4990e12aea6f",
            "name": "Cost & Contracts",
            "employees_count": 3
        },
        {
            "id": "cfd33aa0-2b27-11eb-a88e-3d475e9d8857",
            "name": "Country Store",
            "employees_count": 3
        },
        {
            "id": "ad936750-f52b-11ea-8bc8-3751387ed50a",
            "name": "Credit",
            "employees_count": 0
        },
        {
            "id": "b6c32460-7470-11ec-9210-5b6ea2cfbc7a",
            "name": "Customer Care & Loyalty",
            "employees_count": 106
        },
        {
            "id": "4a121f00-d208-11ec-81a0-f1b44ab10539",
            "name": "Customer Care and Loyalty",
            "employees_count": 5
        },
        {
            "id": "9a376ba0-07d3-11ed-92cf-338d687cd033",
            "name": "Customer Service",
            "employees_count": 4
        },
        {
            "id": "fea176f0-f06d-11ea-8303-d14f894d2d87",
            "name": "Customer Solutions",
            "employees_count": 0
        },
        {
            "id": "019c0d6f-7c4c-70e2-bf23-62cf8b06d6a7",
            "name": "Data",
            "employees_count": 0
        },
        {
            "id": "ba055220-e5e7-11ea-9653-c92ec7f7164c",
            "name": "Design",
            "employees_count": 3
        },
        {
            "id": "dd9daba0-f527-11ea-9e60-55c5e9a720af",
            "name": "Design (Archi)",
            "employees_count": 0
        },
        {
            "id": "df9cccb0-f527-11ea-9439-21ca8fe9f128",
            "name": "Design (ID)",
            "employees_count": 0
        },
        {
            "id": "dcec7ac0-f527-11ea-a3eb-7545a74845dc",
            "name": "Design (MEP)",
            "employees_count": 15
        },
        {
            "id": "d677f6e0-2b27-11eb-8918-5bd0bd5ccb15",
            "name": "DIS (Finance)",
            "employees_count": 1
        },
        {
            "id": "d5103780-2b27-11eb-a1a9-2909f8c1e725",
            "name": "DIS (Security)",
            "employees_count": 1
        },
        {
            "id": "c9da0680-2b27-11eb-85c4-dfd719baf51c",
            "name": "DPS - Treasury",
            "employees_count": 0
        },
        {
            "id": "3a31a9b0-3a75-11ee-9110-0756464d53ea",
            "name": "Driver",
            "employees_count": 0
        },
        {
            "id": "c35b9990-2b27-11eb-a47a-5786e6def756",
            "name": "Driving Range Operation",
            "employees_count": 14
        },
        {
            "id": "d3a421e0-2b27-11eb-a8d3-0dbb3a2e8f4b",
            "name": "EM",
            "employees_count": 0
        },
        {
            "id": "caff1a80-2b27-11eb-ad12-5d684d5ff606",
            "name": "EM - Finance",
            "employees_count": 3
        },
        {
            "id": "b61e6de0-2b27-11eb-adb7-87a9d0de3151",
            "name": "EM -Office",
            "employees_count": 2
        },
        {
            "id": "d102fb70-f5d1-11ea-9bf6-a59c7b26b248",
            "name": "EM (HK)",
            "employees_count": 169
        },
        {
            "id": "7b5fe470-d197-11ec-a2ba-2f87ef221bf4",
            "name": "EM (MO A-5)",
            "employees_count": 0
        },
        {
            "id": "d68a67a0-2b27-11eb-bde1-3fa30d2a0ba6",
            "name": "EM (MO A&B)",
            "employees_count": 1
        },
        {
            "id": "784774e0-11d7-11eb-a494-c16121e45165",
            "name": "EM (MO City Loft)",
            "employees_count": 4
        },
        {
            "id": "d68446c0-2b27-11eb-9040-6994e73d1792",
            "name": "EM (MO Galaxy)",
            "employees_count": 0
        },
        {
            "id": "d62d05b0-8fa3-11ec-84f6-a71dc0619b72",
            "name": "EM (MO-A5)",
            "employees_count": 1
        },
        {
            "id": "d380b8d0-2b27-11eb-a1d5-094f5cd354b3",
            "name": "EM (MOA-5)",
            "employees_count": 1
        },
        {
            "id": "20526a70-ad1d-11ec-8fce-2f3afc86ba1f",
            "name": "EM (Office)",
            "employees_count": 7
        },
        {
            "id": "d45cbae0-2b27-11eb-ae32-bb0c5c599a6a",
            "name": "EM (R&M)",
            "employees_count": 34
        },
        {
            "id": "0d924440-fe75-11eb-866f-75050377866b",
            "name": "EM-Office",
            "employees_count": 3
        },
        {
            "id": "94a91e70-534d-11eb-95a7-fd58d4ab3e48",
            "name": "EM(HK)",
            "employees_count": 2
        },
        {
            "id": "bff25370-fe74-11eb-a16f-0fcc0bbca14b",
            "name": "EM(R&M)",
            "employees_count": 0
        },
        {
            "id": "c914e080-7470-11ec-82f8-593d5328481c",
            "name": "Emerging Health",
            "employees_count": 16
        },
        {
            "id": "01e9e2c0-7075-11eb-b9ab-ff012ab19473",
            "name": "Estate Maintenance",
            "employees_count": 4
        },
        {
            "id": "5da121c9-5f0f-11ec-baa7-06ca9e02f304",
            "name": "Estate Management",
            "employees_count": 3
        },
        {
            "id": "bcfc2410-2b27-11eb-86f3-39e88f3cf41c",
            "name": "Estate Operation",
            "employees_count": 58
        },
        {
            "id": "a5a278a0-0704-11eb-8bf5-a9234434e77b",
            "name": "Estate Sanitation",
            "employees_count": 40
        },
        {
            "id": "c3a05830-2b27-11eb-9b20-f1519415d3eb",
            "name": "Estate Sanitation & HK",
            "employees_count": 2
        },
        {
            "id": "65deea80-7d64-11ee-be54-cb83fad2e79a",
            "name": "Estella",
            "employees_count": 5
        },
        {
            "id": "b0bbfdfc-146c-11ec-a4b2-06ca9e02f304",
            "name": "Export/Import",
            "employees_count": 1
        },
        {
            "id": "598866b0-5b5e-11ee-9c24-9549376324e6",
            "name": "F & B",
            "employees_count": 3
        },
        {
            "id": "f5325dd0-1dd0-11ec-9c76-9f574f85f204",
            "name": "F&B",
            "employees_count": 14
        },
        {
            "id": "4b384690-4404-11ee-8ee3-17bccb53987c",
            "name": "F&B - ADD",
            "employees_count": 0
        },
        {
            "id": "c70aab10-2b27-11eb-931e-29b666d896c5",
            "name": "F&B - AIM",
            "employees_count": 1
        },
        {
            "id": "4f5de740-4404-11ee-801e-5fd67fcba4ec",
            "name": "F&B - FD",
            "employees_count": 0
        },
        {
            "id": "c8e0d770-2b27-11eb-a910-c5aa980fef16",
            "name": "F&B - Finance",
            "employees_count": 1
        },
        {
            "id": "caf29d70-2b27-11eb-8cbb-c9456cef89bc",
            "name": "F&B - Procurement",
            "employees_count": 1
        },
        {
            "id": "cbebe1a0-2b27-11eb-97fc-e9a83c9aeaa9",
            "name": "F&B - Treasury",
            "employees_count": 2
        },
        {
            "id": "f08ec7e0-0e86-11ee-bdd4-f7e8dc5b6e58",
            "name": "F&B Kitchen",
            "employees_count": 1
        },
        {
            "id": "4c7def30-09bf-11ee-87b4-a9708c3ed439",
            "name": "F&B Service",
            "employees_count": 3
        },
        {
            "id": "28042c00-f068-11ea-9586-371775fb504f",
            "name": "Finance",
            "employees_count": 57
        },
        {
            "id": "d55ece20-2b27-11eb-99a4-95d1b9dd62dc",
            "name": "Finance ( Credit Control)",
            "employees_count": 1
        },
        {
            "id": "d15a0ad0-2b27-11eb-b5f0-c5f20123db48",
            "name": "Finance ( Leasing)",
            "employees_count": 3
        },
        {
            "id": "d31668e0-f5d1-11ea-815f-a5a5a59c7b83",
            "name": "Finance (Cashier)",
            "employees_count": 29
        },
        {
            "id": "51f69150-e25f-11ed-b54e-57d2e32d63fb",
            "name": "Finance (City Loft West)",
            "employees_count": 1
        },
        {
            "id": "879efe80-8299-11ed-8b06-f30cebc1add2",
            "name": "Finance (City Loft)",
            "employees_count": 5
        },
        {
            "id": "10df4aa0-0121-11ee-bfe8-a985f7522fee",
            "name": "Finance (Credit Control)",
            "employees_count": 5
        },
        {
            "id": "d5587a30-2b27-11eb-9afd-bd0e1efb3184",
            "name": "Finance (EM)",
            "employees_count": 5
        },
        {
            "id": "56a93d00-68b5-11ee-9b6c-675635b06d4a",
            "name": "Finance (Estella)",
            "employees_count": 2
        },
        {
            "id": "3e685aa0-6f25-11ee-a590-15f6c6dd8699",
            "name": "Finance (Facility)",
            "employees_count": 3
        },
        {
            "id": "ad6890d0-0437-11ee-b10f-97c643430306",
            "name": "Finance (Leasing)",
            "employees_count": 5
        },
        {
            "id": "d0f29340-2b27-11eb-b529-a3cb401c0960",
            "name": "Finance (Procurement)",
            "employees_count": 2
        },
        {
            "id": "d0e3d2b0-2b27-11eb-86e7-63b1a865cd2b",
            "name": "Finance (Procurement) AIM",
            "employees_count": 0
        },
        {
            "id": "1111ae00-1a23-11ee-a7f2-b5d57896caf9",
            "name": "Finance (SCSC)",
            "employees_count": 4
        },
        {
            "id": "f8cb7700-0120-11ee-9fdc-57add67834cb",
            "name": "Finance (Star City Links)",
            "employees_count": 0
        },
        {
            "id": "23525eb0-f068-11ea-851d-a1ef375176f2",
            "name": "Finance (UO)",
            "employees_count": 4
        },
        {
            "id": "37b893c0-9354-11ee-81d7-f9823652c8cd",
            "name": "Finance & Account Section",
            "employees_count": 0
        },
        {
            "id": "cf1561f0-353b-11ec-aedf-ade578345033",
            "name": "Finance Director Office",
            "employees_count": 1
        },
        {
            "id": "9c944840-0e85-11ee-ba34-73251a740bf4",
            "name": "Finance(Cashier)",
            "employees_count": 2
        },
        {
            "id": "d5b9d1d0-2b27-11eb-a46d-b19b659f2aec",
            "name": "Finance(City Loft)",
            "employees_count": 2
        },
        {
            "id": "ddfc2100-2b27-11eb-8978-3f3e85053478",
            "name": "Finance(PH)",
            "employees_count": 0
        },
        {
            "id": "d10a40d0-2b27-11eb-8d8a-171df2f809d7",
            "name": "Finance(S&R)",
            "employees_count": 0
        },
        {
            "id": "1bfda3b0-f86e-11ed-afc9-410ba1d7d532",
            "name": "Finance(SCSC)",
            "employees_count": 1
        },
        {
            "id": "f8deee00-d15e-11ec-94d7-77d35bee9321",
            "name": "Floor",
            "employees_count": 11
        },
        {
            "id": "2af96150-cf53-11ec-a975-7f0c717ffd95",
            "name": "FMI Flotilla",
            "employees_count": 2
        },
        {
            "id": "824bfb70-218b-11ea-9df8-95ba661552af",
            "name": "FOH",
            "employees_count": 199
        },
        {
            "id": "1f8a7410-ad1d-11ec-b6f1-3376b88c3e2b",
            "name": "Food & Beverage",
            "employees_count": 1
        },
        {
            "id": "9f1acdb0-5709-11ec-beb6-5dfd524159a6",
            "name": "Food and Beverage",
            "employees_count": 4
        },
        {
            "id": "fb360c40-789f-11ed-bb01-e1e34b65ac86",
            "name": "Front Office ",
            "employees_count": 12
        },
        {
            "id": "ff279980-1c9d-11ed-b7cf-8db3e0352ffc",
            "name": "Front Office (Campus)",
            "employees_count": 2
        },
        {
            "id": "9ce20ff0-5156-11ee-b9d1-315ad23e2bc6",
            "name": "Galaxy Tower",
            "employees_count": 1
        },
        {
            "id": "f5ab9730-52b7-11ee-8388-a36cbc81e097",
            "name": "Garden",
            "employees_count": 3
        },
        {
            "id": "c31148e0-2b27-11eb-84cc-2d36ea85c436",
            "name": "GCLM - Chemical",
            "employees_count": 3
        },
        {
            "id": "c3943950-2b27-11eb-8657-a54a3c3e6e8c",
            "name": "GCLM - Irrigation",
            "employees_count": 7
        },
        {
            "id": "c2ecaf60-2b27-11eb-86a6-c310a1bd8c42",
            "name": "GCLM - Office",
            "employees_count": 2
        },
        {
            "id": "f7c10ad0-2d8c-11ec-afc0-f19382c92dad",
            "name": "GCLM - Turf Farm",
            "employees_count": 5
        },
        {
            "id": "c2b3c140-2b27-11eb-b2ad-b99463b70994",
            "name": "GCLM - Workshop",
            "employees_count": 7
        },
        {
            "id": "cfae90d0-775e-11ec-af39-1ff996b11469",
            "name": "General Support Service ",
            "employees_count": 14
        },
        {
            "id": "daa589c0-7470-11ec-a6c3-35862f303259",
            "name": "General Support Services",
            "employees_count": 148
        },
        {
            "id": "12e52d30-584f-11ee-8d6d-5b078cb07aa9",
            "name": "Golf Course",
            "employees_count": 1
        },
        {
            "id": "35867c80-dfe1-11ea-a92f-937296a81fff",
            "name": "Golf Course Landscape",
            "employees_count": 43
        },
        {
            "id": "34d06bc0-dfe1-11ea-a9b9-bb64f809691c",
            "name": "Golf Course Maintenance",
            "employees_count": 39
        },
        {
            "id": "91318fc0-eb99-11ea-875a-277251c849a3",
            "name": "Golf Course Maintenance Operation",
            "employees_count": 35
        },
        {
            "id": "d0fe53b0-2b27-11eb-b07f-a5387b9d3c73",
            "name": "Golf Course Maintenance Operation (Finance Procurement)",
            "employees_count": 0
        },
        {
            "id": "8f61dec0-eb99-11ea-8ac6-79064db9cf2b",
            "name": "Golf Course Operation",
            "employees_count": 49
        },
        {
            "id": "2ee71490-23de-11eb-a6ba-3b40ac35ca92",
            "name": "Group Reporting",
            "employees_count": 3
        },
        {
            "id": "c2ff1400-2b27-11eb-a572-8138e375b87c",
            "name": "Half Way",
            "employees_count": 10
        },
        {
            "id": "a21d28b0-0120-11ee-83d1-1bcf7b5bc787",
            "name": "Hangar (Security)",
            "employees_count": 3
        },
        {
            "id": "a630c8e0-0709-11ec-bf39-ad3df373eb82",
            "name": "Hanger",
            "employees_count": 2
        },
        {
            "id": "49743200-71cc-11ea-bf30-55b44ed31ead",
            "name": "Head Office",
            "employees_count": 0
        },
        {
            "id": "c32886c0-2b27-11eb-a999-2d4c826bdd22",
            "name": "Homeowner Relation",
            "employees_count": 12
        },
        {
            "id": "c5640000-2b27-11eb-98cf-498e2a50f163",
            "name": "Horizon Restaurant",
            "employees_count": 39
        },
        {
            "id": "107e2170-1886-11ed-985f-e3054066390c",
            "name": "Horizons Restaurant",
            "employees_count": 1
        },
        {
            "id": "b302bdd0-775e-11ec-ac58-5b9c69478e1f",
            "name": "Hospital & Clinics Operations",
            "employees_count": 5
        },
        {
            "id": "e6e93570-7470-11ec-8c6f-c758b1124a7e",
            "name": "Hospitals & Clinics Operations",
            "employees_count": 14
        },
        {
            "id": "862a92e0-1a21-11ee-bfc0-f79277c691b2",
            "name": "Hotels",
            "employees_count": 2
        },
        {
            "id": "a3bc4440-24ef-11ec-a123-6d26099e9c05",
            "name": "Housekeeping",
            "employees_count": 59
        },
        {
            "id": "cfb4bbe0-2b27-11eb-804a-f35b9997cc24",
            "name": "Housekeeping (Campus)",
            "employees_count": 13
        },
        {
            "id": "db4c1370-2b27-11eb-9090-398f29e63c55",
            "name": "Housing",
            "employees_count": 10
        },
        {
            "id": "d0bed010-f2b8-11ea-a2f6-3b33e0601551",
            "name": "HR",
            "employees_count": 2
        },
        {
            "id": "413e20c0-9354-11ee-8b25-59bde13cbe7b",
            "name": "HR & Corporate Planning Section",
            "employees_count": 0
        },
        {
            "id": "c360dfb0-737a-11ec-8b7c-6d1e10896e4f",
            "name": "HR Operations",
            "employees_count": 3
        },
        {
            "id": "bda588a0-737a-11ec-85a7-6f9f350b6660",
            "name": "HR Strategy & Development",
            "employees_count": 6
        },
        {
            "id": "9ba2be90-4395-11ec-a395-1f74b5b077b6",
            "name": "HRGCCL Transport",
            "employees_count": 26
        },
        {
            "id": "d282d4b0-2b27-11eb-9261-b3e24be52336",
            "name": "Human Resources",
            "employees_count": 24
        },
        {
            "id": "edf991f0-7470-11ec-a4b7-77db6a083e7e",
            "name": "ICT & Innovation",
            "employees_count": 13
        },
        {
            "id": "4b577d50-9354-11ee-9ffd-e7d010428124",
            "name": "Installation Section",
            "employees_count": 0
        },
        {
            "id": "776109a0-2101-11ec-9108-cfba4d1d4cbf",
            "name": "Interior",
            "employees_count": 8
        },
        {
            "id": "be5be5d0-2b27-11eb-8957-b76b17ae91b3",
            "name": "Interior Design",
            "employees_count": 4
        },
        {
            "id": "70708340-b16a-11ec-a940-dd8224029fcc",
            "name": "Investment Management",
            "employees_count": 2
        },
        {
            "id": "3afc7d30-520d-11ee-bce6-9dc8719e5d7f",
            "name": "IT",
            "employees_count": 1
        },
        {
            "id": "81c85be0-218b-11ea-a1fb-33108ad229d2",
            "name": "Kitchen",
            "employees_count": 242
        },
        {
            "id": "3fd397c0-4404-11ee-a2bb-e9d9f10d2d69",
            "name": "Kitchen - ADD",
            "employees_count": 7
        },
        {
            "id": "44ce6ec0-4404-11ee-ad88-5db84b7e9678",
            "name": "Kitchen - FD",
            "employees_count": 0
        },
        {
            "id": "c4d50c40-2b27-11eb-9191-e18a2d92cd97",
            "name": "Landcaping (Construction)",
            "employees_count": 6
        },
        {
            "id": "899281d0-d720-11ec-84bd-49158513842b",
            "name": "Landscape",
            "employees_count": 3
        },
        {
            "id": "90183300-eb99-11ea-947b-d18613e79f33",
            "name": "Landscaping",
            "employees_count": 76
        },
        {
            "id": "cd008e40-2b27-11eb-87e7-a70c5d1614b2",
            "name": "Landscaping (Campus)",
            "employees_count": 2
        },
        {
            "id": "00aa0320-09a0-11ee-ba5c-675670c5f19d",
            "name": "Landscaping (Construction)",
            "employees_count": 1
        },
        {
            "id": "c2f9e910-2b27-11eb-831e-6bfc8e212be8",
            "name": "Landscaping (Maintenance)",
            "employees_count": 74
        },
        {
            "id": "c2f374c0-2b27-11eb-bc05-2fce569e82c9",
            "name": "Landscaping (Pun Hlaing Estate)",
            "employees_count": 52
        },
        {
            "id": "be63e8b0-2b27-11eb-849e-8591a951c56c",
            "name": "Landscaping Design",
            "employees_count": 2
        },
        {
            "id": "c02a4450-52b7-11ee-bf49-770ad24f2dbc",
            "name": "Laundry",
            "employees_count": 3
        },
        {
            "id": "8841b570-f5d3-11ea-a960-cfb8bd519855",
            "name": "Leasing",
            "employees_count": 30
        },
        {
            "id": "60187420-0709-11ec-ad22-ebd8be079553",
            "name": "Leasing (Hanger)",
            "employees_count": 0
        },
        {
            "id": "e694cbb0-353c-11ec-9fbc-89bd23af4727",
            "name": "Leasing Operations",
            "employees_count": 1
        },
        {
            "id": "7be74a40-d197-11ec-a9d8-75cc0e4938a1",
            "name": "Legal",
            "employees_count": 2
        },
        {
            "id": "9e7f1bf0-b075-11ed-bd16-c9b042c787b2",
            "name": "Locale",
            "employees_count": 7
        },
        {
            "id": "2d678220-6af5-11ed-82df-a1c94efa1cf1",
            "name": "Logistics",
            "employees_count": 1
        },
        {
            "id": "5bd4fc20-9354-11ee-9ba9-211443ce9942",
            "name": "Logistics Section",
            "employees_count": 0
        },
        {
            "id": "27d210e0-520d-11ee-bec5-4739eaa31775",
            "name": "M & E",
            "employees_count": 8
        },
        {
            "id": "c2cd4820-2b27-11eb-9c75-4d0c1b0fda86",
            "name": "M & E (Campus)",
            "employees_count": 6
        },
        {
            "id": "6acab280-48b2-11ea-b6e4-75fe4c3d6e20",
            "name": "M&E",
            "employees_count": 0
        },
        {
            "id": "e747d0c0-fdca-11ed-9313-45454afd9ec2",
            "name": "Maintenance",
            "employees_count": 1
        },
        {
            "id": "67817cf0-9354-11ee-aab9-7506f529b957",
            "name": "Maintenance Section",
            "employees_count": 0
        },
        {
            "id": "821cab80-218b-11ea-845c-4f616a5ad536",
            "name": "Management",
            "employees_count": 123
        },
        {
            "id": "fa43afb0-9b0d-11ea-bdf1-df28d86e5f18",
            "name": "Marketing",
            "employees_count": 3
        },
        {
            "id": "5da12221-5f0f-11ec-baa7-06ca9e02f304",
            "name": "Marketing & Communication",
            "employees_count": 1
        },
        {
            "id": "de593a60-f060-11ea-8a6b-f7fe1d8c413e",
            "name": "Marketing & Customer Solutions",
            "employees_count": 0
        },
        {
            "id": "bc98c140-041e-11ee-b36c-9de5b07fa300",
            "name": "Memories Myanmar F&B Management Co.,Ltd",
            "employees_count": 32
        },
        {
            "id": "5c4df000-e601-11eb-a2a9-05004ecd95e3",
            "name": "NA",
            "employees_count": 2484
        },
        {
            "id": "7ed36220-9354-11ee-b7e7-e7216532f13c",
            "name": "New Sales Section",
            "employees_count": 0
        },
        {
            "id": "ee400870-2b27-11eb-9bcd-9516b80456fe",
            "name": "NOC",
            "employees_count": 0
        },
        {
            "id": "2689faa0-7471-11ec-bf0c-651eb649a0e9",
            "name": "Nursing",
            "employees_count": 449
        },
        {
            "id": "cba76200-2b27-11eb-b88d-e7a1083a7922",
            "name": "Nusery",
            "employees_count": 7
        },
        {
            "id": "c4779e30-2b27-11eb-8e0a-459d1a65e9fc",
            "name": "Oasis Bistro",
            "employees_count": 17
        },
        {
            "id": "5da12151-5f0f-11ec-baa7-06ca9e02f304",
            "name": "Oasis Bistro/Campus Café",
            "employees_count": 1
        },
        {
            "id": "25460da0-d13a-11ec-8711-cb516842673a",
            "name": "Operation",
            "employees_count": 1
        },
        {
            "id": "27cddf50-f068-11ea-a9f8-79b00c28fea4",
            "name": "Operations",
            "employees_count": 1
        },
        {
            "id": "f0a38430-2b27-11eb-b263-41b5a82d4bd0",
            "name": "PABX Helpdesk",
            "employees_count": 5
        },
        {
            "id": "b5b92000-c1e8-11ec-82a4-f3dd31405b79",
            "name": "Padauk",
            "employees_count": 15
        },
        {
            "id": "82d98c80-218b-11ea-90ae-3f0e5854e9a7",
            "name": "Pantry",
            "employees_count": 162
        },
        {
            "id": "5da1219b-5f0f-11ec-baa7-06ca9e02f304",
            "name": "Pastry",
            "employees_count": 4
        },
        {
            "id": "9b07bea0-09d5-11ed-bd39-69c637f7c0ab",
            "name": "PDG",
            "employees_count": 6
        },
        {
            "id": "ca1be900-cfb8-11ed-88af-f33581317133",
            "name": "PDG - Housekeeping",
            "employees_count": 2
        },
        {
            "id": "02bce2e0-ed75-11ed-b32a-e70e847aa570",
            "name": "PDG - O & M",
            "employees_count": 7
        },
        {
            "id": "548380d0-012c-11ee-bc9f-b7f4ba34f470",
            "name": "PDG - Security",
            "employees_count": 50
        },
        {
            "id": "2f14ddb0-7471-11ec-9fc1-ed977f7b6284",
            "name": "People Management & Development",
            "employees_count": 12
        },
        {
            "id": "c87de790-2b27-11eb-8093-4b3b9b6a6886",
            "name": "PHCC - AIM",
            "employees_count": 1
        },
        {
            "id": "ce577ff0-2b27-11eb-a06d-136d0c62a9ac",
            "name": "PHCC - Buggy Service",
            "employees_count": 0
        },
        {
            "id": "ca54bbc0-2b27-11eb-a3e5-2352180141fd",
            "name": "PHCC - Estate Maintenance",
            "employees_count": 1
        },
        {
            "id": "c7a74460-2b27-11eb-ad93-e9714e9b1b23",
            "name": "PHCC - Finance",
            "employees_count": 1
        },
        {
            "id": "f88371c0-2b27-11eb-a6fa-191011f487bc",
            "name": "PHCC - Front Office(Membership)",
            "employees_count": 1
        },
        {
            "id": "c59f6780-2b27-11eb-a507-852aea13c3ff",
            "name": "PHCC - Front Office(Spa & Salon)",
            "employees_count": 2
        },
        {
            "id": "9307c020-eb99-11ea-ae8d-43adc349efbf",
            "name": "PHCC - Housekeeping",
            "employees_count": 8
        },
        {
            "id": "c665ef00-2b27-11eb-bf96-17ec4d1f7e9e",
            "name": "PHCC - Procurement",
            "employees_count": 0
        },
        {
            "id": "c75bc5a0-2b27-11eb-998a-a7cad98b94c7",
            "name": "PHCC - Treasury",
            "employees_count": 1
        },
        {
            "id": "d7efd550-353b-11ec-9195-49125975839f",
            "name": "PHE & External",
            "employees_count": 2
        },
        {
            "id": "db3755a0-2b27-11eb-9406-d7aeac7e6534",
            "name": "PHE Leasing",
            "employees_count": 4
        },
        {
            "id": "9e0c02c0-5b07-11eb-81eb-2730d17f7c98",
            "name": "PHE Sales",
            "employees_count": 3
        },
        {
            "id": "a3eb1800-24ef-11ec-9fd2-6b1c773103bb",
            "name": "PHEM - Housekeeping",
            "employees_count": 13
        },
        {
            "id": "410c3810-0199-11eb-8704-d1012d7999e5",
            "name": "PHGC - Administration",
            "employees_count": 2
        },
        {
            "id": "c9738ae0-2b27-11eb-adc8-49aa4a0dd74a",
            "name": "PHGC - Buggy Service",
            "employees_count": 4
        },
        {
            "id": "30b09b00-22d9-11ed-94bf-b1e7a99f22de",
            "name": "PHGC - Building Maintenance",
            "employees_count": 7
        },
        {
            "id": "c453f760-2b27-11eb-a447-dd34e85e3e3e",
            "name": "PHGC - Estate Maintenance",
            "employees_count": 0
        },
        {
            "id": "b5b8b4c0-2b27-11eb-af2a-a381fb909692",
            "name": "PHGC - F&B",
            "employees_count": 0
        },
        {
            "id": "cd865e50-2b27-11eb-b4ba-9bf0fde92558",
            "name": "PHGC - Finance",
            "employees_count": 7
        },
        {
            "id": "c43325a0-2b27-11eb-a34e-b1a43474da36",
            "name": "PHGC - Front Office",
            "employees_count": 12
        },
        {
            "id": "c4633320-2b27-11eb-99b5-8bb60a812eb9",
            "name": "PHGC - Guest Service",
            "employees_count": 6
        },
        {
            "id": "3b63a920-0199-11eb-bbd5-056d046e7f1f",
            "name": "PHGC - Housekeeping",
            "employees_count": 23
        },
        {
            "id": "c3613ad0-2b27-11eb-972d-f79bd3709ffc",
            "name": "PHGC - Locker Attendant",
            "employees_count": 5
        },
        {
            "id": "c5294d40-2b27-11eb-ae6b-2982a98962c8",
            "name": "PHGC - Procurement",
            "employees_count": 2
        },
        {
            "id": "425a9660-0199-11eb-a7d2-097cd9e32aac",
            "name": "PHGC - Proshop",
            "employees_count": 4
        },
        {
            "id": "c540eb50-2b27-11eb-9ac3-d902afc9e0e9",
            "name": "PHGC - Security",
            "employees_count": 28
        },
        {
            "id": "c4c8bed0-2b27-11eb-b7f5-518190e3dc13",
            "name": "PHGC - Transport",
            "employees_count": 1
        },
        {
            "id": "fc41cd50-2b27-11eb-b889-d3de78158dfb",
            "name": "PHGC - Treasury",
            "employees_count": 1
        },
        {
            "id": "c85b4fb0-41e5-11ec-8cfe-c74723cfc639",
            "name": "PHGC / Front Office",
            "employees_count": 0
        },
        {
            "id": "c888cc80-41e5-11ec-a44b-7b55078f5e0e",
            "name": "PHGC / Proshop",
            "employees_count": 0
        },
        {
            "id": "57ccb790-87e2-11ec-bba5-a956139b4c78",
            "name": "PHGC-Housekeeping",
            "employees_count": 0
        },
        {
            "id": "c2aeeec0-2b27-11eb-9de7-5dbae9195948",
            "name": "PHGE - Administration",
            "employees_count": 3
        },
        {
            "id": "c2d783b0-2b27-11eb-96df-b750102daf47",
            "name": "PHGE - AIM",
            "employees_count": 13
        },
        {
            "id": "c2c13ce0-2b27-11eb-8151-6d7b6b5417e3",
            "name": "PHGE - Finance",
            "employees_count": 12
        },
        {
            "id": "cc965ae0-2b27-11eb-9272-d3ddf652ae36",
            "name": "PHGE - GM Office",
            "employees_count": 4
        },
        {
            "id": "ccbd81e0-2b27-11eb-9e4b-4f3d55768c20",
            "name": "PHGE - Procurement",
            "employees_count": 3
        },
        {
            "id": "c40c8650-2b27-11eb-94de-8d98c6e9cc66",
            "name": "PHGE - Transport",
            "employees_count": 9
        },
        {
            "id": "ea849440-2b27-11eb-93a4-f9c0da0d6a8d",
            "name": "PHGE - Treasury",
            "employees_count": 4
        },
        {
            "id": "c3ab98f0-2b27-11eb-8573-35a7b48bd928",
            "name": "PHS - Finance",
            "employees_count": 2
        },
        {
            "id": "d48faad0-0c5d-11eb-983d-b9fd61124c4c",
            "name": "Planning",
            "employees_count": 0
        },
        {
            "id": "bd4eee60-2b27-11eb-a61f-7ffecd610fdf",
            "name": "PM",
            "employees_count": 91
        },
        {
            "id": "bc0f3180-2b27-11eb-b414-a3b61aa1133c",
            "name": "PM - Cost & Contracts",
            "employees_count": 1
        },
        {
            "id": "be2d1460-2b27-11eb-a1eb-13d9b494d737",
            "name": "PM – Cost & Contract ( Star City )",
            "employees_count": 3
        },
        {
            "id": "019c065d-ba4a-7109-9c2d-1e22bb924f4c",
            "name": "Power Ranger",
            "employees_count": 0
        },
        {
            "id": "e11882a0-353c-11ec-9f8f-2fcee62aae64",
            "name": "Procurement",
            "employees_count": 6
        },
        {
            "id": "8a905930-9354-11ee-9f06-99b61cd4dc87",
            "name": "Procurement Section",
            "employees_count": 0
        },
        {
            "id": "b8ad3790-2b27-11eb-b403-b5d487fba20a",
            "name": "Project",
            "employees_count": 0
        },
        {
            "id": "dcb1a530-f527-11ea-9ee6-65549dfe9fd8",
            "name": "Project Control",
            "employees_count": 1
        },
        {
            "id": "4fd7adc0-3297-11ee-a795-1f4d4c95d461",
            "name": "Project Development",
            "employees_count": 3
        },
        {
            "id": "2e0bd960-6af5-11ed-9f4d-bd504fef1650",
            "name": "Project Management",
            "employees_count": 7
        },
        {
            "id": "aac4031b-146c-11ec-a4b2-06ca9e02f304",
            "name": "Protocol",
            "employees_count": 3
        },
        {
            "id": "32017fd0-cf53-11ec-894c-77245c665a90",
            "name": "Pun Aekary",
            "employees_count": 4
        },
        {
            "id": "2f55dc60-cd11-11ec-bea3-0fbc9c359cfb",
            "name": "Pun Hlaing Estate Landscaping",
            "employees_count": 0
        },
        {
            "id": "915796e0-fbb9-11ec-8c4b-2da8732e9994",
            "name": "Pun Hlaing Hospitals - Hlaing Tharyar",
            "employees_count": 1
        },
        {
            "id": "99dec8b0-2482-11ee-bea9-e9db266902b1",
            "name": "Pun Hlaing Lodge Hotel Management Limited",
            "employees_count": 5
        },
        {
            "id": "ddd900d0-f527-11ea-9297-1389ceff729a",
            "name": "QA/QC",
            "employees_count": 1
        },
        {
            "id": "94106a70-9354-11ee-bba3-c947ab4be524",
            "name": "QC Section",
            "employees_count": 0
        },
        {
            "id": "cd2e97c0-353c-11ec-8a07-658ecd95637f",
            "name": "Re-sales",
            "employees_count": 3
        },
        {
            "id": "cd8ac3c0-2b27-11eb-a5b0-6917f600b0ba",
            "name": "Regular Caddy",
            "employees_count": 98
        },
        {
            "id": "1a2cffb0-3e0f-11ed-aa27-65d6d7d36284",
            "name": "Renovation & Fit-Out Team",
            "employees_count": 0
        },
        {
            "id": "f9b636e0-ca22-11ed-a409-7b8b5e61b3d5",
            "name": "Renovation and Fit-Out",
            "employees_count": 6
        },
        {
            "id": "527efa60-cce2-11ec-8e8b-017fda4776da",
            "name": "Repair and Maintenance ",
            "employees_count": 0
        },
        {
            "id": "16d98f90-63aa-11ec-ad85-0585b257b2ec",
            "name": "Resales",
            "employees_count": 2
        },
        {
            "id": "8454a600-52e8-11ee-8f6c-e32932c425cf",
            "name": "Reservation",
            "employees_count": 1
        },
        {
            "id": "ea2232a0-1143-11ed-9bd4-19061ef7498e",
            "name": "S & R (City Loft)",
            "employees_count": 0
        },
        {
            "id": "d4420a70-2b27-11eb-a9c0-0d96d16385fb",
            "name": "S&R (Gym)",
            "employees_count": 4
        },
        {
            "id": "d0fdd320-0438-11ee-9768-396478d6f33e",
            "name": "S&R (Kid)",
            "employees_count": 1
        },
        {
            "id": "d6b2ac60-2b27-11eb-bc6f-f7a131f4dc48",
            "name": "S&R (Pool)",
            "employees_count": 13
        },
        {
            "id": "24186d40-7eb9-11ed-84a0-77563da192d4",
            "name": "S&R(City Loft)",
            "employees_count": 3
        },
        {
            "id": "57a7e440-64fd-11ed-a1db-9d8a0a376138",
            "name": "Sabila",
            "employees_count": 2
        },
        {
            "id": "9f3b0aa0-9354-11ee-8f31-45f38768a2ea",
            "name": "Safety Assurance Section",
            "employees_count": 0
        },
        {
            "id": "d25ff290-353c-11ec-8e60-f77b47060a50",
            "name": "Sales",
            "employees_count": 55
        },
        {
            "id": "a7f5ed20-9354-11ee-b2b1-031fff0276a1",
            "name": "Sales Engineering",
            "employees_count": 0
        },
        {
            "id": "d785b1c0-353c-11ec-b9b0-fd55a12c1621",
            "name": "Sales Support Administration",
            "employees_count": 2
        },
        {
            "id": "7a82af90-d158-11ec-b260-1554ba00fc18",
            "name": "Sales, Marketing, IT& BD",
            "employees_count": 1
        },
        {
            "id": "c4937a60-2b27-11eb-aea0-5ba8e5aac4d0",
            "name": "Salon",
            "employees_count": 11
        },
        {
            "id": "f5df55a0-00be-11ec-aff7-05f2eff9374d",
            "name": "Sanitation",
            "employees_count": 0
        },
        {
            "id": "1b8885a0-cb8c-11ec-9497-9d97e0ad7793",
            "name": "SCIS",
            "employees_count": 2
        },
        {
            "id": "6070d8c0-0709-11ec-8593-d10d96a3b8df",
            "name": "Security",
            "employees_count": 37
        },
        {
            "id": "52460ab0-cce2-11ec-ae36-6988a6ee72db",
            "name": "Security - Compound",
            "employees_count": 1
        },
        {
            "id": "eacf99a0-23f9-11eb-945e-c9e43852340a",
            "name": "Security ( RB )",
            "employees_count": 4
        },
        {
            "id": "c7e76310-2b27-11eb-aade-23853774a1b8",
            "name": "Security (Campus)",
            "employees_count": 18
        },
        {
            "id": "8cd319a0-0120-11ee-aff9-37398e1cc4ab",
            "name": "Security (City Loft West)",
            "employees_count": 0
        },
        {
            "id": "24af7db0-7eb9-11ed-924c-cfaafd5f0be4",
            "name": "Security (City Loft)",
            "employees_count": 0
        },
        {
            "id": "cfda3f40-f5d1-11ea-8441-eb8ca1e62f2b",
            "name": "Security (Compound)",
            "employees_count": 129
        },
        {
            "id": "c6204d90-2b27-11eb-8433-339d6a82f4d0",
            "name": "Security (Penisular)",
            "employees_count": 9
        },
        {
            "id": "d1ee7f00-f5d1-11ea-8761-f91ea71313ad",
            "name": "Security (RB)",
            "employees_count": 86
        },
        {
            "id": "5bf29f70-e601-11eb-8e26-79a36d717709",
            "name": "Security & Fire",
            "employees_count": 1
        },
        {
            "id": "c534ba70-2b27-11eb-be9f-e743cd78dad2",
            "name": "Security and Fire",
            "employees_count": 215
        },
        {
            "id": "144b5160-d7ef-11eb-a5eb-35eafb4bf593",
            "name": "Security(Compound)",
            "employees_count": 0
        },
        {
            "id": "b5d02920-4a86-11eb-ad9e-4fca04b9781f",
            "name": "Security(RB)",
            "employees_count": 5
        },
        {
            "id": "c0bb37a0-2b27-11eb-8051-1f63b267ba95",
            "name": "Service",
            "employees_count": 30
        },
        {
            "id": "d8c47310-07d2-11ed-af25-f723d1fcfd64",
            "name": "Services",
            "employees_count": 22
        },
        {
            "id": "63d9dc10-d162-11ec-8a91-15d571636e72",
            "name": "Shop Management",
            "employees_count": 22
        },
        {
            "id": "c6a2d260-2b27-11eb-b36b-bf3e6f8710bb",
            "name": "Spa",
            "employees_count": 17
        },
        {
            "id": "c0c71b30-2b27-11eb-9c97-a74d03971315",
            "name": "Spare Parts",
            "employees_count": 11
        },
        {
            "id": "24ba8f90-e2e0-11ec-8e1a-afb74628ae83",
            "name": "Sports and Recreation",
            "employees_count": 0
        },
        {
            "id": "8fbf0220-eb99-11ea-bcce-fb4fcb9c7c70",
            "name": "Star City Marketing & Communication",
            "employees_count": 23
        },
        {
            "id": "daad8270-8e0e-11ec-9b31-bf5d506c6c6c",
            "name": "Star City Marketing and Communication",
            "employees_count": 0
        },
        {
            "id": "59d683e0-9b72-11ec-a1a0-474797dfbb82",
            "name": "Star City Sport Club",
            "employees_count": 41
        },
        {
            "id": "41ad8720-7ab5-11ed-8924-43873deabc41",
            "name": "Star City Sports Club",
            "employees_count": 19
        },
        {
            "id": "54cbcba0-b56f-11ec-b22c-ffca0a77fb23",
            "name": "Star Villa",
            "employees_count": 0
        },
        {
            "id": "84945898-146c-11ec-a4b2-06ca9e02f304",
            "name": "Star Villas",
            "employees_count": 15
        },
        {
            "id": "b8dbf960-0438-11ee-aab4-533acb9eadbd",
            "name": "Store",
            "employees_count": 6
        },
        {
            "id": "a9025f10-353c-11ec-a5f0-59638d590449",
            "name": "Structural",
            "employees_count": 0
        },
        {
            "id": "be6be470-2b27-11eb-9b5c-df13e267d64a",
            "name": "Structural Design",
            "employees_count": 1
        },
        {
            "id": "bb98fb10-353c-11ec-bb28-f193fcb2ae0d",
            "name": "Structure",
            "employees_count": 8
        },
        {
            "id": "36cddc80-7471-11ec-962d-c7d808a323f9",
            "name": "Supply Chain",
            "employees_count": 17
        },
        {
            "id": "8ed1038d-146c-11ec-a4b2-06ca9e02f304",
            "name": "SV & CLW",
            "employees_count": 0
        },
        {
            "id": "c64f8540-2b27-11eb-b88f-496c6a668724",
            "name": "Swimming Pool",
            "employees_count": 5
        },
        {
            "id": "5da11f7d-5f0f-11ec-baa7-06ca9e02f304",
            "name": "Talent Acquisition",
            "employees_count": 3
        },
        {
            "id": "3e639140-7471-11ec-9b58-192fa9f315e6",
            "name": "Technician",
            "employees_count": 1
        },
        {
            "id": "55260300-62d3-11ec-a3d4-97a4a588dddd",
            "name": "TED - Hanger",
            "employees_count": 0
        },
        {
            "id": "c4bd1190-2b27-11eb-b6e7-d361eb76e19b",
            "name": "Tennis Court",
            "employees_count": 3
        },
        {
            "id": "dcec6260-2b27-11eb-a2ab-213d44383cd8",
            "name": "Training & Development",
            "employees_count": 8
        },
        {
            "id": "d1110bd0-2b27-11eb-9898-530865477adb",
            "name": "Transport",
            "employees_count": 27
        },
        {
            "id": "bd352ec0-2b27-11eb-8ba0-675961249845",
            "name": "TSC QS",
            "employees_count": 4
        },
        {
            "id": "c7813ff0-2b27-11eb-af92-1d78dafa5dc2",
            "name": "Turf Farm",
            "employees_count": 0
        },
        {
            "id": "a3c4534c-146c-11ec-a4b2-06ca9e02f304",
            "name": "U & I",
            "employees_count": 1
        },
        {
            "id": "e4fadc00-0051-11ee-884a-c1b4057d08d4",
            "name": "UO - Drinking Water",
            "employees_count": 6
        },
        {
            "id": "d972d340-0051-11ee-9042-957e7ca1b43d",
            "name": "UO - Electricity",
            "employees_count": 53
        },
        {
            "id": "cab72770-2b27-11eb-8a29-23371ea06c89",
            "name": "UO - Finance",
            "employees_count": 5
        },
        {
            "id": "fe9b0760-0051-11ee-b156-a397cbcf5a30",
            "name": "UO - Maintenance & Infracture",
            "employees_count": 5
        },
        {
            "id": "574cbc00-0052-11ee-a999-cfaf04485b30",
            "name": "UO - Office",
            "employees_count": 2
        },
        {
            "id": "413574a0-0052-11ee-a463-0dd916757b3b",
            "name": "UO - Portal Water",
            "employees_count": 9
        },
        {
            "id": "2c6c0920-d71f-11ec-96be-47abae9f12d8",
            "name": "Utility and Infra",
            "employees_count": 40
        },
        {
            "id": "5da12244-5f0f-11ec-baa7-06ca9e02f304",
            "name": "Utility Main Construction",
            "employees_count": 3
        },
        {
            "id": "a418e500-24ef-11ec-b7b2-7d37177e35a4",
            "name": "Utility Operation",
            "employees_count": 11
        },
        {
            "id": "6442f100-6113-11eb-b3b4-1d8ce77ebdcc",
            "name": "Utility Operation ( Operation )",
            "employees_count": 0
        },
        {
            "id": "90d583a0-eb99-11ea-9939-175091734743",
            "name": "Utility Operation (Operation)",
            "employees_count": 102
        },
        {
            "id": "baf580a0-c410-11eb-accd-d16e2c340d4a",
            "name": "Utility Operation(Operation)",
            "employees_count": 1
        },
        {
            "id": "76fdb400-6213-11ec-9dd4-b17587089397",
            "name": "Veggie Farm",
            "employees_count": 59
        },
        {
            "id": "b5f2d6a0-353c-11ec-b3b6-f345032bba4d",
            "name": "Visualizer",
            "employees_count": 3
        },
        {
            "id": "bea6f5f0-2b27-11eb-aa49-8b42b7581a37",
            "name": "Visualizer Team",
            "employees_count": 0
        },
        {
            "id": "7cb6a6c8-146c-11ec-a4b2-06ca9e02f304",
            "name": "YBHQ",
            "employees_count": 5
        },
        {
            "id": "c124f060-2b27-11eb-aa1d-ab2ec36fc8cd",
            "name": "YCP - Contracts & Commercial",
            "employees_count": 6
        },
        {
            "id": "6a898ce0-dbd5-11ec-ac5b-e550badd6443",
            "name": "YDG - Leasing (Campus)",
            "employees_count": 1
        },
        {
            "id": "7f949c00-c2fe-11ed-8974-a7c328050732",
            "name": "YDG - Transport",
            "employees_count": 0
        },
        {
            "id": "d005bf90-2b27-11eb-b98f-9f18ad3558ff",
            "name": "YDG - Treasury",
            "employees_count": 0
        },
        {
            "id": "93c35cf0-4395-11ec-a6bf-991d591b8973",
            "name": "YDG Transport",
            "employees_count": 6
        },
        {
            "id": "e54a7ff0-93f7-11ee-ac11-117f6b54a257",
            "name": "YECL",
            "employees_count": 0
        },
        {
            "id": "01f98bf0-2b28-11eb-ae88-216000fe7f0c",
            "name": "Yoma Land",
            "employees_count": 2
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):


{
    "message": "Failed to retrieve sections"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/sections

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Create Section

requires authentication

Create a new section.

Example request:
curl --request POST \
    "http://localhost/api/v1/sections" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Finance\"
}"
const url = new URL(
    "http://localhost/api/v1/sections"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "name": "Finance"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "message": "Section created successfully",
    "data": {
        "id": "9d3a8f20-c8e4-4b3a-9f2d-1e5c8a7b9d3a",
        "name": "Finance"
    }
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):


{
    "message": "Failed to create section"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/sections

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

The name of the section. Example: Finance

Delete Section

requires authentication

Delete a section by ID.

Example request:
curl --request DELETE \
    "http://localhost/api/v1/sections/9d3a8f20-c8e4-4b3a-9f2d-1e5c8a7b9d3a" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/sections/9d3a8f20-c8e4-4b3a-9f2d-1e5c8a7b9d3a"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Section deleted successfully"
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422):


{
    "message": "Cannot delete section with associated employees"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):


{
    "message": "Failed to delete section"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

DELETE api/v1/sections/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The UUID of the section to delete. Example: 9d3a8f20-c8e4-4b3a-9f2d-1e5c8a7b9d3a

Entity

Index Entity

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/entities" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/entities"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Entities retrieved successfully",
    "data": [
        {
            "id": "235028f0-9445-11f0-bcaa-271e1b7cebb6",
            "name": "Abc Entity",
            "division_id": "12598f00-9445-11f0-a977-7531da5b9426",
            "division": {
                "id": "12598f00-9445-11f0-a977-7531da5b9426",
                "name": "Abc Divisions",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "f8772340-a6e3-11ea-bc24-65ba517e4e0a",
            "name": "Altai Myanmar Company Limited",
            "division_id": "12c20c90-6367-11ea-b23b-cfad603fbf29",
            "division": {
                "id": "12c20c90-6367-11ea-b23b-cfad603fbf29",
                "name": "Yoma F&B",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "24985240-a6df-11ea-a052-bf96d8418050",
            "name": "Asia Holidays Travels & Tours Company Limited",
            "division_id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
            "division": {
                "id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
                "name": "Tourism",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "7547f700-03e8-11ed-b1c5-f786ec21e3f4",
            "name": "Atlas Digi Myanmar Limited",
            "division_id": "2e9a1d40-ae31-11ea-9a04-db86f318d3d5",
            "division": {
                "id": "2e9a1d40-ae31-11ea-9a04-db86f318d3d5",
                "name": "Others",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "04565320-a6e4-11ea-a377-914b5aa1516d",
            "name": "Blue Ridge Company Limited",
            "division_id": "12c20c90-6367-11ea-b23b-cfad603fbf29",
            "division": {
                "id": "12c20c90-6367-11ea-b23b-cfad603fbf29",
                "name": "Yoma F&B",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "42a231b0-a6df-11ea-b95d-bf712d0eee37",
            "name": "Burma Boating Company Limited",
            "division_id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
            "division": {
                "id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
                "name": "Tourism",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
            "name": "Chindwin Investments Limited",
            "division_id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
            "division": {
                "id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
                "name": "Tourism",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "ae3fae70-05ae-11ee-851d-f58ba0ecc5ee",
            "name": "CLW Development Limited",
            "division_id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
            "division": {
                "id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
                "name": "Yoma Land",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "814d4020-8503-11ee-bec7-472281e48c34",
            "name": "Country Club",
            "division_id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
            "division": {
                "id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
                "name": "Tourism",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "57d03b00-280d-11ed-bf78-55672245db61",
            "name": "Digital Loyalty Service Myanmar Limited",
            "division_id": "2e9a1d40-ae31-11ea-9a04-db86f318d3d5",
            "division": {
                "id": "2e9a1d40-ae31-11ea-9a04-db86f318d3d5",
                "name": "Others",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "11511650-69ce-11ea-9ec7-c3b12c6c8ba0",
            "name": "Digital Money Myanmar Ltd",
            "division_id": "114fdb40-69ce-11ea-b172-ff278c4a22b4",
            "division": {
                "id": "114fdb40-69ce-11ea-b172-ff278c4a22b4",
                "name": "Wave Money",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "8d2b5bc0-7471-11ec-988e-a167f1c32fab",
            "name": "Emerging Health",
            "division_id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
            "division": {
                "id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
                "name": "YOMA OUE Healthcare",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "227059e0-8dec-11f0-b49e-1943d54c01a7",
            "name": "Entity",
            "division_id": "1d054440-8deb-11f0-a367-d585bcc17a03",
            "division": {
                "id": "1d054440-8deb-11f0-a367-d585bcc17a03",
                "name": "Development Created",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "0ab1b000-e4ec-11e9-a4ca-d72e2946fec3",
            "name": "F M I Flotilla Company Limited",
            "division_id": "bb034a10-c28b-11e9-ab2e-318a2e6c714e",
            "division": {
                "id": "bb034a10-c28b-11e9-ab2e-318a2e6c714e",
                "name": "Corporate",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "854f1370-a92c-11ea-9609-1fe39c4c05b4",
            "name": "F. M. I Garden Development Limited",
            "division_id": "bb034a10-c28b-11e9-ab2e-318a2e6c714e",
            "division": {
                "id": "bb034a10-c28b-11e9-ab2e-318a2e6c714e",
                "name": "Corporate",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "d10babf0-d1b4-11ec-bd92-f567324257eb",
            "name": "Family Clinic - Sanchaung",
            "division_id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
            "division": {
                "id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
                "name": "YOMA OUE Healthcare",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "d31ea6a0-e27c-11e9-8981-1fea00017ead",
            "name": "First Myanmar Investment Public Company Limited",
            "division_id": "bb034a10-c28b-11e9-ab2e-318a2e6c714e",
            "division": {
                "id": "bb034a10-c28b-11e9-ab2e-318a2e6c714e",
                "name": "Corporate",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "name": "Hlaing River Golf And Country Club Company Limited",
            "division_id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
            "division": {
                "id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
                "name": "Yoma Land",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "1081fd00-a6e1-11ea-994c-0dd91a3893a2",
            "name": "Hpa An Traditional Lodge Limited",
            "division_id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
            "division": {
                "id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
                "name": "Tourism",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "6a791a50-2358-11ed-ada9-f575e8e780d5",
            "name": "JJ Pun",
            "division_id": "6a6bb230-2358-11ed-92eb-2d532ebc96b2",
            "division": {
                "id": "6a6bb230-2358-11ed-92eb-2d532ebc96b2",
                "name": "JJ Pun",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "c5f99000-a6e0-11ea-9e41-e130baac2b0d",
            "name": "Keinara Loikaw Company Limited",
            "division_id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
            "division": {
                "id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
                "name": "Tourism",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "name": "KOSPA Limited",
            "division_id": "12c20c90-6367-11ea-b23b-cfad603fbf29",
            "division": {
                "id": "12c20c90-6367-11ea-b23b-cfad603fbf29",
                "name": "Yoma F&B",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "c3676d00-7879-11ea-854c-437de4b8ca7e",
            "name": "Meeyahta Development Limited",
            "division_id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
            "division": {
                "id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
                "name": "Yoma Land",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "d13bc920-a6e0-11ea-9246-05d1bf6d042b",
            "name": "Memories Group Limited",
            "division_id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
            "division": {
                "id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
                "name": "Tourism",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "name": "Memories Myanmar F&B Management Co.,Ltd",
            "division_id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
            "division": {
                "id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
                "name": "Tourism",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "2a019b70-723c-11ea-8b6c-95b5a3245155",
            "name": "MM Cars Myanmar Ltd.",
            "division_id": "6df60450-4eec-11ea-91af-bfbcfe2c2df7",
            "division": {
                "id": "6df60450-4eec-11ea-91af-bfbcfe2c2df7",
                "name": "Yoma Car",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "e386d7a0-fb6c-11ec-bb91-0f1408eee5d1",
            "name": "MMCM Mandalay Limited",
            "division_id": "6df60450-4eec-11ea-91af-bfbcfe2c2df7",
            "division": {
                "id": "6df60450-4eec-11ea-91af-bfbcfe2c2df7",
                "name": "Yoma Car",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
            "name": "Mokan International Company Limited",
            "division_id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
            "division": {
                "id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
                "name": "Tourism",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
            "name": "Myanmar Agri-Tech Limited",
            "division_id": "5e4e2c30-71ce-11ea-882d-31723674a6ba",
            "division": {
                "id": "5e4e2c30-71ce-11ea-882d-31723674a6ba",
                "name": "Yoma Agri",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "301810a0-723c-11ea-b4ee-6f9c4761f561",
            "name": "Myanmar Motors Pte. Ltd.",
            "division_id": "6df60450-4eec-11ea-91af-bfbcfe2c2df7",
            "division": {
                "id": "6df60450-4eec-11ea-91af-bfbcfe2c2df7",
                "name": "Yoma Car",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "ee9fde00-936e-11f0-9b64-ed7fdeeacd62",
            "name": "New Entity",
            "division_id": "ecd5e240-936e-11f0-9843-0142d796781c",
            "division": {
                "id": "ecd5e240-936e-11f0-9843-0142d796781c",
                "name": "New Divisions",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "0c36e390-9444-11f0-9541-4baad6aebae0",
            "name": "New Entity",
            "division_id": "0b1b7fd0-9444-11f0-aa33-cda19e0f7f3c",
            "division": {
                "id": "0b1b7fd0-9444-11f0-aa33-cda19e0f7f3c",
                "name": "New Divisions",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "9aad29b0-fb6b-11ec-990f-ef00fda1838a",
            "name": "New Entity 1",
            "division_id": "8b335af0-fb6b-11ec-93e3-69e1539c9d7c",
            "division": null
        },
        {
            "id": "171346e0-8dee-11f0-97ce-a7170502e5c5",
            "name": "New Entity 1 Updated",
            "division_id": "7707dc30-8dec-11f0-b6a4-653e8638ee77",
            "division": {
                "id": "7707dc30-8dec-11f0-b6a4-653e8638ee77",
                "name": "New Divisions 1 Updated",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
            "name": "PRA-FMI Pansea Hotel Development Company Limited",
            "division_id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
            "division": {
                "id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
                "name": "Tourism",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "a6fa5540-7471-11ec-a497-397343d68f69",
            "name": "Pun Hlaing Clinic - North Dagon",
            "division_id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
            "division": {
                "id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
                "name": "YOMA OUE Healthcare",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "b09df300-7471-11ec-9bc1-b3b5ffb2261f",
            "name": "Pun Hlaing Clinic - Star City",
            "division_id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
            "division": {
                "id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
                "name": "YOMA OUE Healthcare",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
            "name": "Pun Hlaing Clinic - Taw Win",
            "division_id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
            "division": {
                "id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
                "name": "YOMA OUE Healthcare",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "name": "Pun Hlaing Hospital - Hlaing Tharyar",
            "division_id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
            "division": {
                "id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
                "name": "YOMA OUE Healthcare",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "name": "Pun Hlaing Hospital - Mandalay",
            "division_id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
            "division": {
                "id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
                "name": "YOMA OUE Healthcare",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "name": "Pun Hlaing Hospital - Taunggyi",
            "division_id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
            "division": {
                "id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
                "name": "YOMA OUE Healthcare",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "ff7fbed0-74fd-11ec-8ad5-8f00002b004e",
            "name": "Pun Hlaing Hospitals",
            "division_id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
            "division": {
                "id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
                "name": "YOMA OUE Healthcare",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "name": "Pun Hlaing Hospitals - Head Office",
            "division_id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
            "division": {
                "id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
                "name": "YOMA OUE Healthcare",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "915862a0-fbb9-11ec-a000-0f3eea21b5ff",
            "name": "Pun Hlaing Hospitals - Hlaing Tharyar",
            "division_id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
            "division": {
                "id": "6dfdfa80-7471-11ec-b29a-87fde5b3404f",
                "name": "YOMA OUE Healthcare",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "e8376490-a6e0-11ea-a1bd-a935cdfdb3b5",
            "name": "Pun Hlaing Lodge Hotel Management Limited",
            "division_id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
            "division": {
                "id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
                "name": "Tourism",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "402d6230-ae31-11ea-8837-b92649346501",
            "name": "Pun Plus Projects Limited",
            "division_id": "2e9a1d40-ae31-11ea-9a04-db86f318d3d5",
            "division": {
                "id": "2e9a1d40-ae31-11ea-9a04-db86f318d3d5",
                "name": "Others",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "58c76320-d0e7-11ec-84e5-f98c1f989ebe",
            "name": "SAUNG NAING FOOD AND BEVERAGE COMPANY LIMITED",
            "division_id": "2e9a1d40-ae31-11ea-9a04-db86f318d3d5",
            "division": {
                "id": "2e9a1d40-ae31-11ea-9a04-db86f318d3d5",
                "name": "Others",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "bc0ea100-c28b-11e9-b0a5-91e0913aed65",
            "name": "Serge Pun & Associates (Myanmar) Limited",
            "division_id": "bb034a10-c28b-11e9-ab2e-318a2e6c714e",
            "division": {
                "id": "bb034a10-c28b-11e9-ab2e-318a2e6c714e",
                "name": "Corporate",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "b3fe1d10-13aa-11ec-8fb8-45ca7d3d34be",
            "name": "Serge Pun & Associates (Myanmar) Limited",
            "division_id": "2e9a1d40-ae31-11ea-9a04-db86f318d3d5",
            "division": {
                "id": "2e9a1d40-ae31-11ea-9a04-db86f318d3d5",
                "name": "Others",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "8f851150-bf71-11e9-a535-3f4ed1b21b78",
            "name": "Serge Pun & Associates (Myanmar) Limited",
            "division_id": "8f7460b0-bf71-11e9-8604-d9401779b519",
            "division": {
                "id": "8f7460b0-bf71-11e9-8604-d9401779b519",
                "name": "Corporate (GSS)",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "72dd6b80-852b-11ea-ab2a-715d096e77a0",
            "name": "Serge Pun & Associates Marketing Limited",
            "division_id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
            "division": {
                "id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
                "name": "Yoma Land",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "6f0f8e30-4eec-11ea-a7b3-372cf4b6aaa8",
            "name": "SGG Motor Services Limited",
            "division_id": "6df60450-4eec-11ea-91af-bfbcfe2c2df7",
            "division": {
                "id": "6df60450-4eec-11ea-91af-bfbcfe2c2df7",
                "name": "Yoma Car",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "f715e570-a6e0-11ea-86a3-697953368f72",
            "name": "Shwe Lay Ta Gun Travels & Tours Company Limited",
            "division_id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
            "division": {
                "id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
                "name": "Tourism",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
            "name": "SM Mawlamyaing Hotel Limited",
            "division_id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
            "division": {
                "id": "0ed99c60-a6df-11ea-984e-3154d14bbdd7",
                "name": "Tourism",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "c71289a0-6daa-11ea-aae7-f14b05445682",
            "name": "SPA Design & Project Services Limited",
            "division_id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
            "division": {
                "id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
                "name": "Yoma Land",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "5f1d8970-a93b-11ea-8403-c3e5b8e64655",
            "name": "SPA Project Management Pte. Ltd.",
            "division_id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
            "division": {
                "id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
                "name": "Yoma Land",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "6df76320-4eec-11ea-94b2-cbb2c0a4d8c2",
            "name": "Successful Goal Trading Company Limited",
            "division_id": "6df60450-4eec-11ea-91af-bfbcfe2c2df7",
            "division": {
                "id": "6df60450-4eec-11ea-91af-bfbcfe2c2df7",
                "name": "Yoma Car",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "name": "Summit Brands Restaurant Group Company Limited",
            "division_id": "12c20c90-6367-11ea-b23b-cfad603fbf29",
            "division": {
                "id": "12c20c90-6367-11ea-b23b-cfad603fbf29",
                "name": "Yoma F&B",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
            "name": "Summit SPA Motors Co.,Ltd",
            "division_id": "71b5f850-2dc8-11ed-83dd-65f6ca0beeb2",
            "division": {
                "id": "71b5f850-2dc8-11ed-83dd-65f6ca0beeb2",
                "name": "HINO Myanmar",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "ef5e4d50-6389-11ea-864b-f175239df991",
            "name": "Thanlyin Estate Development Limited",
            "division_id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
            "division": {
                "id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
                "name": "Yoma Land",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "7e696ad0-9442-11f0-8137-455294c85350",
            "name": "Unit Enitty",
            "division_id": "7abafb50-9442-11f0-924f-39fe5106b4d2",
            "division": {
                "id": "7abafb50-9442-11f0-924f-39fe5106b4d2",
                "name": "Unit Divisions",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "925bacf0-9443-11f0-b873-3b320f0606a1",
            "name": "Unit Entity",
            "division_id": "8fe89280-9443-11f0-bfc4-65c3ebe2bec9",
            "division": {
                "id": "8fe89280-9443-11f0-bfc4-65c3ebe2bec9",
                "name": "Unit Divisions",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "415846e0-9442-11f0-ad41-1df089f596d4",
            "name": "Unit Entity",
            "division_id": "3e2afbb0-9442-11f0-ab7d-b98c6038a273",
            "division": {
                "id": "3e2afbb0-9442-11f0-ab7d-b98c6038a273",
                "name": "Unit Division",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "c22a4700-9443-11f0-bc6e-1b0cbecaa6bc",
            "name": "Unit Entity",
            "division_id": "bf3359e0-9443-11f0-8d0f-e17c2870a47c",
            "division": {
                "id": "bf3359e0-9443-11f0-8d0f-e17c2870a47c",
                "name": "Unit Divisions",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "1972f9b0-9443-11f0-814f-51b58715a9e0",
            "name": "Unit Entity",
            "division_id": "16d56980-9443-11f0-9e6e-e3f83811307c",
            "division": {
                "id": "16d56980-9443-11f0-9e6e-e3f83811307c",
                "name": "Unit Divisions",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "cd3e8730-9442-11f0-a8fc-17ed9df24a3a",
            "name": "Unit Entity",
            "division_id": "c948eaa0-9442-11f0-b9e8-379b9404cee0",
            "division": {
                "id": "c948eaa0-9442-11f0-b9e8-379b9404cee0",
                "name": "Unit Division",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "69e29000-2358-11ed-b91c-e3d71238e7f3",
            "name": "Wave Money",
            "division_id": "114fdb40-69ce-11ea-b172-ff278c4a22b4",
            "division": {
                "id": "114fdb40-69ce-11ea-b172-ff278c4a22b4",
                "name": "Wave Money",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
            "name": "YKKO Branches",
            "division_id": "6424fcf0-218b-11ea-8395-3168d75b101f",
            "division": {
                "id": "6424fcf0-218b-11ea-8395-3168d75b101f",
                "name": "YKKO",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "name": "YKKO Group of Companies.,Ltd",
            "division_id": "6424fcf0-218b-11ea-8395-3168d75b101f",
            "division": {
                "id": "6424fcf0-218b-11ea-8395-3168d75b101f",
                "name": "YKKO",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "6426f810-218b-11ea-85f8-69567965e025",
            "name": "YKKO HO",
            "division_id": "6424fcf0-218b-11ea-8395-3168d75b101f",
            "division": {
                "id": "6424fcf0-218b-11ea-8395-3168d75b101f",
                "name": "YKKO",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
            "name": "YKKO Trademarks Company Limited",
            "division_id": "12c20c90-6367-11ea-b23b-cfad603fbf29",
            "division": {
                "id": "12c20c90-6367-11ea-b23b-cfad603fbf29",
                "name": "Yoma F&B",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "f77f1390-a70f-11ea-b5da-ad28a6a1d45e",
            "name": "Yoma Agricultural & Logistics Holding Pte. Ltd.",
            "division_id": "5e4e2c30-71ce-11ea-882d-31723674a6ba",
            "division": {
                "id": "5e4e2c30-71ce-11ea-882d-31723674a6ba",
                "name": "Yoma Agri",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "c7481260-71d0-11ea-8206-7d18a76aa17b",
            "name": "Yoma Agriculture Company Limited",
            "division_id": "5e4e2c30-71ce-11ea-882d-31723674a6ba",
            "division": {
                "id": "5e4e2c30-71ce-11ea-882d-31723674a6ba",
                "name": "Yoma Agri",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
            "name": "Yoma Bank",
            "division_id": "1111dbc0-69ce-11ea-83b4-8319a67d067d",
            "division": {
                "id": "1111dbc0-69ce-11ea-83b4-8319a67d067d",
                "name": "Yoma Bank",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "ff191f30-6518-11ea-9538-a1ce56cba1a3",
            "name": "Yoma Connect Inc",
            "division_id": "f8d78f50-6518-11ea-9146-f1d4787a48db",
            "division": {
                "id": "f8d78f50-6518-11ea-9146-f1d4787a48db",
                "name": "Yoma Connect",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "name": "Yoma Development Group Limited",
            "division_id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
            "division": {
                "id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
                "name": "Yoma Land",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "75b53f80-9353-11ee-9d93-1f64d36b1068",
            "name": "Yoma Elevator Company Limited",
            "division_id": "2e9a1d40-ae31-11ea-9a04-db86f318d3d5",
            "division": {
                "id": "2e9a1d40-ae31-11ea-9a04-db86f318d3d5",
                "name": "Others",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "name": "Yoma Fleet Limited",
            "division_id": "35d98520-5dfc-11ea-ae4c-9ba17e8426dd",
            "division": {
                "id": "35d98520-5dfc-11ea-ae4c-9ba17e8426dd",
                "name": "Yoma Financial Services",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "3556a3e0-065f-11eb-97ac-ff901d1205c7",
            "name": "Yoma Fleet Limited",
            "division_id": "35552c70-065f-11eb-9760-ebdf24a0fe49",
            "division": null
        },
        {
            "id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
            "name": "Yoma German Motors Limited",
            "division_id": "6df60450-4eec-11ea-91af-bfbcfe2c2df7",
            "division": {
                "id": "6df60450-4eec-11ea-91af-bfbcfe2c2df7",
                "name": "Yoma Car",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "name": "Yoma Heavy Equipment Company Limited",
            "division_id": "02ce47b0-a709-11ea-8c01-d75cd2a95c71",
            "division": {
                "id": "02ce47b0-a709-11ea-8c01-d75cd2a95c71",
                "name": "Yoma Heavy",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "50159680-5eaf-11ea-8083-11086d5c5e7d",
            "name": "Yoma Leasing Company Limited",
            "division_id": "35d98520-5dfc-11ea-ae4c-9ba17e8426dd",
            "division": {
                "id": "35d98520-5dfc-11ea-ae4c-9ba17e8426dd",
                "name": "Yoma Financial Services",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "name": "Yoma Micro Power Myanmar Limited",
            "division_id": "4b27b540-6d8c-11ea-b660-0b00bb837ccd",
            "division": {
                "id": "4b27b540-6d8c-11ea-b660-0b00bb837ccd",
                "name": "JV - YMP",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "45a8a6a0-f9dc-11ea-95d4-67b16d301613",
            "name": "Yoma Micro Power Myanmar Limited",
            "division_id": "45a796a0-f9dc-11ea-b7b1-d7945d908e39",
            "division": null
        },
        {
            "id": "c0190630-4472-11eb-9111-1723cb8f99bb",
            "name": "Yoma Micro Power Myanmar Limited",
            "division_id": "c012bc60-4472-11eb-a2e9-41afb473e1a1",
            "division": null
        },
        {
            "id": "1f0f53e0-186a-11eb-af2d-6720d136fc11",
            "name": "Yoma Micro Power Myanmar Limited",
            "division_id": "1f096ec0-186a-11eb-9293-df5f8e8fbf43",
            "division": null
        },
        {
            "id": "c72c6bf0-e27c-11e9-8157-838dd6945639",
            "name": "Yoma Nominee Limited",
            "division_id": "bb034a10-c28b-11e9-ab2e-318a2e6c714e",
            "division": {
                "id": "bb034a10-c28b-11e9-ab2e-318a2e6c714e",
                "name": "Corporate",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "bf8c0340-6daa-11ea-8fcc-a912b7f0bbdb",
            "name": "Yoma Nominee Limited",
            "division_id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
            "division": {
                "id": "9d4fb7c0-5f4f-11ea-b7f2-556e50034632",
                "name": "Yoma Land",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "941ff580-e6f2-11ea-a2fb-49a2cf897723",
            "name": "Yoma Nominee Limited",
            "division_id": "35d98520-5dfc-11ea-ae4c-9ba17e8426dd",
            "division": {
                "id": "35d98520-5dfc-11ea-ae4c-9ba17e8426dd",
                "name": "Yoma Financial Services",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "7e2228c0-32de-11ea-9c26-b1b0ab48ed9d",
            "name": "Yoma Nominee Limited",
            "division_id": "bb034a10-c28b-11e9-ab2e-318a2e6c714e",
            "division": {
                "id": "bb034a10-c28b-11e9-ab2e-318a2e6c714e",
                "name": "Corporate",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "f9074280-9f1c-11ea-b435-7b8d0032473e",
            "name": "Yoma Nominee Limited",
            "division_id": "12c20c90-6367-11ea-b23b-cfad603fbf29",
            "division": {
                "id": "12c20c90-6367-11ea-b23b-cfad603fbf29",
                "name": "Yoma F&B",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
            "name": "Yoma Nominee Limited",
            "division_id": "8f7460b0-bf71-11e9-8604-d9401779b519",
            "division": {
                "id": "8f7460b0-bf71-11e9-8604-d9401779b519",
                "name": "Corporate (GSS)",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "abe2fb70-aba3-11ea-8451-fb625cf17775",
            "name": "Yoma Siloam Hospital Pun Hlaing Limited",
            "division_id": "8dca69f0-42a5-11ea-958a-1567aa16a1fb",
            "division": {
                "id": "8dca69f0-42a5-11ea-958a-1567aa16a1fb",
                "name": "Health Care",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "name": "Yoma Siloam Hospital Pun Hlaing Limited",
            "division_id": "8dca69f0-42a5-11ea-958a-1567aa16a1fb",
            "division": {
                "id": "8dca69f0-42a5-11ea-958a-1567aa16a1fb",
                "name": "Health Care",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "name": "Yoma Siloam Hospital Pun Hlaing Ltd.",
            "division_id": "8dca69f0-42a5-11ea-958a-1567aa16a1fb",
            "division": {
                "id": "8dca69f0-42a5-11ea-958a-1567aa16a1fb",
                "name": "Health Care",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "bb04f1c0-c28b-11e9-9760-f36fafa5ba7c",
            "name": "Yoma Strategic Holdings Ltd.",
            "division_id": "bb034a10-c28b-11e9-ab2e-318a2e6c714e",
            "division": {
                "id": "bb034a10-c28b-11e9-ab2e-318a2e6c714e",
                "name": "Corporate",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "8f91ba20-bf71-11e9-a024-117db0392911",
            "name": "Yoma Strategic Holdings Ltd.",
            "division_id": "8f7460b0-bf71-11e9-8604-d9401779b519",
            "division": {
                "id": "8f7460b0-bf71-11e9-8604-d9401779b519",
                "name": "Corporate (GSS)",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        },
        {
            "id": "5e503fa0-71ce-11ea-9dd5-eb2d7e58002d",
            "name": "Zuari Yoma Agri Solutions Limited",
            "division_id": "5e4e2c30-71ce-11ea-882d-31723674a6ba",
            "division": {
                "id": "5e4e2c30-71ce-11ea-882d-31723674a6ba",
                "name": "Yoma Agri",
                "color": null,
                "head_id": null,
                "organization_id": null
            }
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/entities

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Create Entity

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/entities" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/entities"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/entities

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Update Entity

requires authentication

Example request:
curl --request PUT \
    "http://localhost/api/v1/entities/architecto" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/entities/architecto"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

PUT api/v1/entities/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the entity. Example: architecto

Delete Entity

requires authentication

Example request:
curl --request DELETE \
    "http://localhost/api/v1/entities/architecto" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/entities/architecto"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

DELETE api/v1/entities/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the entity. Example: architecto

Job Level

Index Job Level

requires authentication

Retrieve a list of all job levels with their employee counts.

Example request:
curl --request GET \
    --get "http://localhost/api/v1/job-levels" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/job-levels"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Job levels retrieved successfully",
    "data": [
        {
            "id": "019c0683-be17-7029-983a-a19b127aab54",
            "name": "Director",
            "employees_count": 0
        },
        {
            "id": "019c0902-a2b8-71c9-b20b-7cb8b008ef88",
            "name": "Execute",
            "employees_count": 0
        },
        {
            "id": "019c0d61-1d73-70d8-ae97-9b604fde6c3a",
            "name": "Senior Software Engineer",
            "employees_count": 0
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):


{
    "message": "Failed to retrieve job levels"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/job-levels

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Create Job level

requires authentication

Create a new job level.

Example request:
curl --request POST \
    "http://localhost/api/v1/job-levels" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"Job Level\"
}"
const url = new URL(
    "http://localhost/api/v1/job-levels"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "name": "Job Level"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "message": "Job Level created successfully",
    "data": [
        {
            "name": "Job Level",
            "id": "cb4b9410-f4a6-11f0-b368-f156882f4924"
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):


{
    "message": "Failed to create job level"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/job-levels

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

The name of the job level. Example: Job Level

Delete Job Level

requires authentication

Delete a job level by its UUID.

Example request:
curl --request DELETE \
    "http://localhost/api/v1/job-levels/02da7b60-10b0-11ee-83af-993cbfad82b3" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/job-levels/02da7b60-10b0-11ee-83af-993cbfad82b3"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Job Level deleted successfully"
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422):


{
    "message": "Cannot delete job level with associated employees"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):


{
    "message": "Failed to delete job level"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

DELETE api/v1/job-levels/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The UUID of the job level to delete. Example: 02da7b60-10b0-11ee-83af-993cbfad82b3

Department

Index Department

requires authentication

Example request:
curl --request GET \
    --get "http://localhost/api/v1/departments" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/departments"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Departments retrieved successfully",
    "data": [
        {
            "id": "7d8d9640-a970-11ea-93a0-71ef4be317f9",
            "name": "YSH Finance",
            "color": "#aecafc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c72c6bf0-e27c-11e9-8157-838dd6945639",
            "head": null,
            "entity": {
                "id": "c72c6bf0-e27c-11e9-8157-838dd6945639",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "50727780-3a79-11ee-aa45-69a5d54e26e9",
            "name": "YSH Finance",
            "color": "#8197ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "7e2228c0-32de-11ea-9c26-b1b0ab48ed9d",
            "head": null,
            "entity": {
                "id": "7e2228c0-32de-11ea-9c26-b1b0ab48ed9d",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "46275780-7d20-11ed-b08a-e7d5f1e090c6",
            "name": "Yoma Plus",
            "color": "#94fcf0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "0ff35f00-6519-11ea-a032-8f05342cdc73",
            "name": "Yoma Connect Dept",
            "color": "#81f771",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ff191f30-6518-11ea-9538-a1ce56cba1a3",
            "head": null,
            "entity": {
                "id": "ff191f30-6518-11ea-9538-a1ce56cba1a3",
                "name": "Yoma Connect Inc"
            },
            "positions": []
        },
        {
            "id": "11142de0-69ce-11ea-bad0-8f61b2d257d3",
            "name": "Yoma Bank",
            "color": "#aefcc3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
            "head": null,
            "entity": {
                "id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
                "name": "Yoma Bank"
            },
            "positions": []
        },
        {
            "id": "08342440-d164-11ec-8c61-c9f22e1cf307",
            "name": "YKN",
            "color": "#f7df88",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "0a1c9270-a70e-11ea-8683-ff7f7664dcaf",
            "name": "YJCB Training(YGN)",
            "color": "#71f776",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "0913e290-a70e-11ea-a1d4-9dff6fb4a405",
            "name": "YJCB Spare Parts(Kalay)",
            "color": "#fcb374",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "04584d40-a70e-11ea-94a8-31fd0d2fe152",
            "name": "YJCB Sales(TG)",
            "color": "#7fb3e8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "6e6b3270-a70d-11ea-b26f-bb2e4b948ede",
            "name": "YJCB Product Support(YGN)",
            "color": "#c8acf9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "6de31320-a70d-11ea-99fd-2335d046926c",
            "name": "YJCB Marketing(YGN)",
            "color": "#78ed8a",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "6cce4f00-a70d-11ea-a080-6f1429a49871",
            "name": "YJCB Finance(YGN)",
            "color": "#e583f7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "fe585850-d15d-11ec-b5b5-2385094ce2de",
            "name": "YGN-CK",
            "color": "#d96ded",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "922c8890-a6e5-11ea-85f4-5b5d62202fcf",
            "name": "Ygn Operation",
            "color": "#c7aef2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "f715e570-a6e0-11ea-86a3-697953368f72",
            "head": null,
            "entity": {
                "id": "f715e570-a6e0-11ea-86a3-697953368f72",
                "name": "Shwe Lay Ta Gun Travels & Tours Company Limited"
            },
            "positions": []
        },
        {
            "id": "ec031ba0-a945-11ea-a769-0b84240ada1a",
            "name": "YCP - Transport",
            "color": "#68e8a3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "56753340-b56f-11ec-9533-6dfd29b75b69",
            "name": "YCP - Safety",
            "color": "#77f4a3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "e4569c70-a945-11ea-9814-0fe1153d2cec",
            "name": "YCP - Project Control",
            "color": "#b4ef6b",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "e430d100-a945-11ea-8b32-d5b279699b1c",
            "name": "YCP - Planning",
            "color": "#83e6fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "f74463e0-92bb-11ec-b0f2-97b220b9420c",
            "name": "YCP - IT",
            "color": "#ce8bf4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "b566ac70-6daa-11ea-8aba-d55b500bee1b",
            "name": "YCP - Human Resources",
            "color": "#f9bddd",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "0f867310-a945-11ea-bbb8-eb42a2197510",
            "name": "YCP - Government Relation",
            "color": "#f7c78c",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "e41137f0-a945-11ea-b00c-b75b9b3ad903",
            "name": "YCP - Design",
            "color": "#a1ef70",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "aa63b470-a945-11ea-9071-8bf754a5dfe5",
            "name": "YCP - Contracts & Commercial",
            "color": "#81efd4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "69cadae0-dbd5-11ec-8d4f-6552a66143de",
            "name": "YCP - Construction",
            "color": "#8cf7dc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "9f049d90-6db0-11ea-bdac-952e8b893561",
            "name": "YCP - Administration",
            "color": "#fafcb8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "8ecbd970-7964-11ea-a6ff-6b1fd56034ae",
            "name": "Yangon Warehouse",
            "color": "#66dddd",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "e728d640-f90e-11ec-a4de-1b770c0bb0a6",
            "name": "Yangon & Mandalay Warehouse",
            "color": "#fcabe2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "086b4600-d164-11ec-961d-4fffe0fd3342",
            "name": "WZYD",
            "color": "#b3f28c",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "2defab30-6c65-11ec-a88e-8d9a27813b96",
            "name": "Warehouse, Procurement & Logistics (Yangon)",
            "color": "#e1ffad",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "3bd5c4a0-a70e-11ea-be40-f569d7d99131",
            "name": "Warehouse Metro",
            "color": "#a4c9f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "6b361240-a70d-11ea-b6cb-9b79d69c6418",
            "name": "Warehouse",
            "color": "#adffd2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "6c5f90d0-d0e7-11ec-af04-5d921af27ec7",
            "name": "Warehouse",
            "color": "#ef7f7f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "58c76320-d0e7-11ec-84e5-f98c1f989ebe",
            "head": null,
            "entity": {
                "id": "58c76320-d0e7-11ec-84e5-f98c1f989ebe",
                "name": "SAUNG NAING FOOD AND BEVERAGE COMPANY LIMITED"
            },
            "positions": []
        },
        {
            "id": "79c5b8c0-a70d-11ea-9d01-25d8edee6a27",
            "name": "Warehouse",
            "color": "#afffeb",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "91a12210-e70c-11ec-8b70-31f491835bdc",
            "name": "Warehouse",
            "color": "#f7c6a0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "91914b20-e70c-11ec-8fe2-1da17b98f97a",
            "head": null,
            "entity": null,
            "positions": []
        },
        {
            "id": "bc90e990-5f50-11ea-bd11-3b07044531fe",
            "name": "Utility Operation",
            "color": "#fff8b2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "581618c0-a940-11ea-a5d1-1905454292d9",
            "name": "Utility Main Construction",
            "color": "#82c3f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "6b592c60-a70d-11ea-a920-0b17fa580212",
            "name": "UED",
            "color": "#88dbf7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "bd52cf80-e6f3-11ea-aa17-d956def5329d",
            "name": "Treasury",
            "color": "#f4d3ab",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "16417a60-e706-11eb-ab70-2f6a4f441ef2",
            "name": "Treasury",
            "color": "#f2859e",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c71289a0-6daa-11ea-aae7-f14b05445682",
            "head": null,
            "entity": {
                "id": "c71289a0-6daa-11ea-aae7-f14b05445682",
                "name": "SPA Design & Project Services Limited"
            },
            "positions": []
        },
        {
            "id": "26e23c20-e706-11eb-bac8-d7b7c71cc204",
            "name": "Treasury",
            "color": "#e989ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "1bb98f80-3ae5-11ec-8520-51739f6ac71a",
            "name": "Transportation - YGN",
            "color": "#f7e983",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "4ac04f90-1496-11ee-a283-13a1b19439ae",
            "name": "Transportation - Makro",
            "color": "#bcc0ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "4e1c8ea0-74b0-11ec-bb67-9dc322a8019b",
            "name": "Transport",
            "color": "#9fc2ea",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "head": null,
            "entity": {
                "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
                "name": "Pun Hlaing Hospitals - Head Office"
            },
            "positions": []
        },
        {
            "id": "63a4bb40-77c0-11ec-80a1-bb178f4d72de",
            "name": "Transport",
            "color": "#f9e4bb",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "18d0ca70-5395-11ea-b738-8f4b047a958a",
            "name": "Transport",
            "color": "#fcdec7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "bf8b58b0-76e6-11ec-9333-61cc0230168c",
            "name": "Transport",
            "color": "#f9f984",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "ade5be40-a93d-11ec-92ad-d58c6bb2d93e",
            "name": "Transport",
            "color": "#ffdccc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "6a4b7040-a70d-11ea-b598-85c55a7ded7c",
            "name": "Training(YGN)",
            "color": "#d1aef2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "661057f0-d162-11ec-93ea-fb1811103afb",
            "name": "TMN",
            "color": "#d9f99d",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "08e3ff30-d164-11ec-8583-610b7deb45fe",
            "name": "TLCM",
            "color": "#ffd87f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "07c43140-d164-11ec-b6a5-7d7593cacd31",
            "name": "TKT",
            "color": "#a9ffa8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "099bb980-d164-11ec-b783-fd6686d1df30",
            "name": "TGO",
            "color": "#b5ffb2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "07fc3880-d164-11ec-a5a6-c95f925fcb9d",
            "name": "TGGN",
            "color": "#92e6e8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "69a8fea0-2358-11ed-a04c-85a30e239579",
            "name": "Technology Division",
            "color": "#f5a3ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
            "head": null,
            "entity": {
                "id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
                "name": "Yoma Bank"
            },
            "positions": []
        },
        {
            "id": "69f0ac80-2358-11ed-9ab3-69b617763570",
            "name": "Technology",
            "color": "#c87eea",
            "parent_id": null,
            "head_id": null,
            "entity_id": "69e29000-2358-11ed-b91c-e3d71238e7f3",
            "head": null,
            "entity": {
                "id": "69e29000-2358-11ed-b91c-e3d71238e7f3",
                "name": "Wave Money"
            },
            "positions": []
        },
        {
            "id": "8b837d10-d163-11ec-b8a6-8b2c7a6643e2",
            "name": "SYS",
            "color": "#d8f78f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "a4cc3340-aa0e-11ea-94f6-5f7ab8227320",
            "name": "Supply Chain Management & QA",
            "color": "#fce18f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "622e7db0-76e6-11ec-9c5a-6b96e587fae6",
            "name": "Supply Chain",
            "color": "#e8fc74",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "191f31e0-77c0-11ec-8c43-671c8ae8d138",
            "name": "Supply Chain",
            "color": "#efb8f9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "36e89fa0-74b0-11ec-ada4-bf5614d031bb",
            "name": "Supply Chain",
            "color": "#fcdf76",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "e5221a40-7488-11ec-9dad-09149b82db7f",
            "name": "Supply Chain",
            "color": "#9bc6f7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "head": null,
            "entity": {
                "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
                "name": "Pun Hlaing Hospitals - Head Office"
            },
            "positions": []
        },
        {
            "id": "4f7a9e60-c739-11ea-9feb-79b01fd6fc06",
            "name": "Strategy and Finance",
            "color": "#eeff72",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8f91ba20-bf71-11e9-a024-117db0392911",
            "head": null,
            "entity": {
                "id": "8f91ba20-bf71-11e9-a024-117db0392911",
                "name": "Yoma Strategic Holdings Ltd."
            },
            "positions": []
        },
        {
            "id": "5fcc0870-f68f-11ec-a789-cd82f3ee99fe",
            "name": "Strategy and Finance",
            "color": "#90f4bf",
            "parent_id": null,
            "head_id": null,
            "entity_id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
            "head": null,
            "entity": {
                "id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "0a922650-74b0-11ec-af48-53897e91fff0",
            "name": "Strategy & Business Development",
            "color": "#f2d7a2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8d2b5bc0-7471-11ec-988e-a167f1c32fab",
            "head": null,
            "entity": {
                "id": "8d2b5bc0-7471-11ec-988e-a167f1c32fab",
                "name": "Emerging Health"
            },
            "positions": []
        },
        {
            "id": "792851b0-5f14-11eb-b6b0-09993c70034d",
            "name": "Strategy",
            "color": "#8fd6e8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "a3b8a0c0-aa0e-11ea-946b-454a6218e917",
            "name": "Strategy",
            "color": "#abffa8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "40a19d40-a6e3-11ea-b8a2-7599797720e8",
            "name": "Strategic Development",
            "color": "#ef8773",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
            "head": null,
            "entity": {
                "id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
                "name": "Chindwin Investments Limited"
            },
            "positions": []
        },
        {
            "id": "ef4bbaf0-7957-11ea-9ec5-1fd5f052a77a",
            "name": "Store",
            "color": "#81f4b7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
            "head": null,
            "entity": {
                "id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
                "name": "YKKO Branches"
            },
            "positions": []
        },
        {
            "id": "a168d560-8504-11ee-990f-172118129135",
            "name": "Star City Sports Club - Service",
            "color": "#d1a9f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "a2f00930-2d1f-11ee-9a63-0985b3af57a5",
            "name": "Star City Sports Club - Service",
            "color": "#f492a6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "a11a7440-8504-11ee-8363-b99f338a4db5",
            "name": "Star City Sports Club - Kitchen",
            "color": "#6eeab6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "af9c83d0-2d1f-11ee-a43a-a5c030c0d08e",
            "name": "Star City Sports Club - Kitchen",
            "color": "#ed8ec0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "33642570-bc2d-11ed-be34-c9c2f20d2238",
            "name": "Star City Sport Club",
            "color": "#d0bdfc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ef5e4d50-6389-11ea-864b-f175239df991",
            "head": null,
            "entity": {
                "id": "ef5e4d50-6389-11ea-864b-f175239df991",
                "name": "Thanlyin Estate Development Limited"
            },
            "positions": []
        },
        {
            "id": "f1e0f3f0-6389-11ea-8548-d350ed56418a",
            "name": "Star City Marketing & Communication",
            "color": "#f7f596",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ef5e4d50-6389-11ea-864b-f175239df991",
            "head": null,
            "entity": {
                "id": "ef5e4d50-6389-11ea-864b-f175239df991",
                "name": "Thanlyin Estate Development Limited"
            },
            "positions": []
        },
        {
            "id": "a086d2e0-8504-11ee-8f20-1158fb2a0a86",
            "name": "Sport Club",
            "color": "#f4b0f1",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "2cc87be0-2d1f-11ee-bdbb-b13adee8a6fe",
            "name": "Sport Club",
            "color": "#f9b27f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "97736030-fdf6-11ed-bbca-19f99f5f24c9",
            "name": "Sport & Recreation",
            "color": "#f7b2bf",
            "parent_id": null,
            "head_id": null,
            "entity_id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
            "head": null,
            "entity": {
                "id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
                "name": "Mokan International Company Limited"
            },
            "positions": []
        },
        {
            "id": "0d2190c0-588f-11ea-afa0-b5702a20c4f4",
            "name": "Specialist Center (OT& ORtho)",
            "color": "#8dc8fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "c89d1b30-a70c-11ea-9e34-190dad005b8a",
            "name": "Special Project",
            "color": "#83efdb",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "2762d260-a943-11ea-87dd-3732b923dbf0",
            "name": "SPAPMPL",
            "color": "#868be8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5f1d8970-a93b-11ea-8403-c3e5b8e64655",
            "head": null,
            "entity": {
                "id": "5f1d8970-a93b-11ea-8403-c3e5b8e64655",
                "name": "SPA Project Management Pte. Ltd."
            },
            "positions": []
        },
        {
            "id": "9b704270-6db0-11ea-8c72-85afff40d59e",
            "name": "SPA Design",
            "color": "#86a5f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c71289a0-6daa-11ea-aae7-f14b05445682",
            "head": null,
            "entity": {
                "id": "c71289a0-6daa-11ea-aae7-f14b05445682",
                "name": "SPA Design & Project Services Limited"
            },
            "positions": []
        },
        {
            "id": "a0246c30-8504-11ee-9f6c-d1457e0f43cc",
            "name": "Spa",
            "color": "#f7a0c0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "ab3603a0-a6e4-11ea-a678-5b08a105c3f6",
            "name": "Spa",
            "color": "#f5f9a7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
            "head": null,
            "entity": {
                "id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
                "name": "Mokan International Company Limited"
            },
            "positions": []
        },
        {
            "id": "655a9c30-2d1f-11ee-972f-a729a03c98a4",
            "name": "Spa",
            "color": "#f7a880",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "0ac70aa0-74b0-11ec-99a1-5587c39872e3",
            "name": "Smart Health Community Development",
            "color": "#b1e6f9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8d2b5bc0-7471-11ec-988e-a167f1c32fab",
            "head": null,
            "entity": {
                "id": "8d2b5bc0-7471-11ec-988e-a167f1c32fab",
                "name": "Emerging Health"
            },
            "positions": []
        },
        {
            "id": "07525730-d164-11ec-93b5-2b13f17546fa",
            "name": "SJSC",
            "color": "#efc07f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "8c1447b0-d163-11ec-a4a5-87ea4e3b7345",
            "name": "SGD",
            "color": "#c4d3fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "c646ce10-a70c-11ea-95eb-ada59fe6a475",
            "name": "Service",
            "color": "#9ffcb7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "f523ba10-a59d-11ec-9c7d-83507d98a7e4",
            "name": "Security & Fire",
            "color": "#f4ffa8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "a4fd8700-aa07-11ea-ba32-1bd4f2241eb6",
            "name": "Security",
            "color": "#b380f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "854f1370-a92c-11ea-9609-1fe39c4c05b4",
            "head": null,
            "entity": {
                "id": "854f1370-a92c-11ea-9609-1fe39c4c05b4",
                "name": "F. M. I Garden Development Limited"
            },
            "positions": []
        },
        {
            "id": "144814d0-05af-11ee-bbe7-cf1f8b57f610",
            "name": "Security",
            "color": "#fff59e",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ae3fae70-05ae-11ee-851d-f58ba0ecc5ee",
            "head": null,
            "entity": {
                "id": "ae3fae70-05ae-11ee-851d-f58ba0ecc5ee",
                "name": "CLW Development Limited"
            },
            "positions": []
        },
        {
            "id": "175e2890-4404-11ee-8130-d5ba8da6e1a5",
            "name": "Security",
            "color": "#ffcfa3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
            "head": null,
            "entity": {
                "id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
                "name": "PRA-FMI Pansea Hotel Development Company Limited"
            },
            "positions": []
        },
        {
            "id": "50095840-638f-11ea-94f3-d18bc452d76e",
            "name": "Security",
            "color": "#cef293",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ef5e4d50-6389-11ea-864b-f175239df991",
            "head": null,
            "entity": {
                "id": "ef5e4d50-6389-11ea-864b-f175239df991",
                "name": "Thanlyin Estate Development Limited"
            },
            "positions": []
        },
        {
            "id": "61921700-76e6-11ec-8c7b-39cfdaaa1654",
            "name": "Security",
            "color": "#f99286",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "8911a0c0-218b-11ea-b728-9987617ea7b2",
            "name": "Secretary",
            "color": "#f9debb",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6426f810-218b-11ea-85f8-69567965e025",
            "head": null,
            "entity": {
                "id": "6426f810-218b-11ea-85f8-69567965e025",
                "name": "YKKO HO"
            },
            "positions": []
        },
        {
            "id": "640c0d30-d164-11ec-96ec-67f9bcc3018d",
            "name": "SCG",
            "color": "#b0a5ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "904cf3e0-7964-11ea-b80d-d1d1bb15c72d",
            "name": "SAQ",
            "color": "#c2c8fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "9fd27660-8504-11ee-be81-fbb2f1086c29",
            "name": "Salon",
            "color": "#76e8fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "4ff02c20-2d1f-11ee-8675-1bb44cbedec3",
            "name": "Salon",
            "color": "#f49390",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "a0525f10-aa15-11ea-8174-db84d79a06e8",
            "name": "Sales and Marketing",
            "color": "#6df2c1",
            "parent_id": null,
            "head_id": null,
            "entity_id": "42a231b0-a6df-11ea-b95d-bf712d0eee37",
            "head": null,
            "entity": {
                "id": "42a231b0-a6df-11ea-b95d-bf712d0eee37",
                "name": "Burma Boating Company Limited"
            },
            "positions": []
        },
        {
            "id": "3779e420-0199-11eb-8719-ef5c52497d1d",
            "name": "Sales and Marketing",
            "color": "#98f993",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "3e60f7b0-a6e3-11ea-bb8a-8396b35ed83f",
            "name": "Sales & Marketing",
            "color": "#c4f26f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
            "head": null,
            "entity": {
                "id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
                "name": "Chindwin Investments Limited"
            },
            "positions": []
        },
        {
            "id": "90694440-a6e5-11ea-9426-c77a01c7d1d5",
            "name": "Sales & Marketing",
            "color": "#cabbf9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "f715e570-a6e0-11ea-86a3-697953368f72",
            "head": null,
            "entity": {
                "id": "f715e570-a6e0-11ea-86a3-697953368f72",
                "name": "Shwe Lay Ta Gun Travels & Tours Company Limited"
            },
            "positions": []
        },
        {
            "id": "1d1f3020-fb70-11ec-ae56-87cd9a527777",
            "name": "Sales & Business Development",
            "color": "#896eea",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2a019b70-723c-11ea-8b6c-95b5a3245155",
            "head": null,
            "entity": {
                "id": "2a019b70-723c-11ea-8b6c-95b5a3245155",
                "name": "MM Cars Myanmar Ltd."
            },
            "positions": []
        },
        {
            "id": "76fb7490-a70d-11ea-ab17-0385f2f51d28",
            "name": "Sales ( YGN )",
            "color": "#ef97cd",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "83f58410-a70d-11ea-90eb-975966fd796e",
            "name": "Sales ( MDY )",
            "color": "#ffa5ae",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "678fbd60-19df-11ec-89ea-cbd2c78c19c6",
            "name": "Sales - Yoma Central",
            "color": "#f9ccae",
            "parent_id": null,
            "head_id": null,
            "entity_id": "72dd6b80-852b-11ea-ab2a-715d096e77a0",
            "head": null,
            "entity": {
                "id": "72dd6b80-852b-11ea-ab2a-715d096e77a0",
                "name": "Serge Pun & Associates Marketing Limited"
            },
            "positions": []
        },
        {
            "id": "a1c4bd40-a942-11ea-b60a-f35b833e8854",
            "name": "Sales - Star City",
            "color": "#e3c0f9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "72dd6b80-852b-11ea-ab2a-715d096e77a0",
            "head": null,
            "entity": {
                "id": "72dd6b80-852b-11ea-ab2a-715d096e77a0",
                "name": "Serge Pun & Associates Marketing Limited"
            },
            "positions": []
        },
        {
            "id": "aefc8110-237f-11ed-ac7e-63467f3973d0",
            "name": "Sales - PHE",
            "color": "#8089ed",
            "parent_id": null,
            "head_id": null,
            "entity_id": "72dd6b80-852b-11ea-ab2a-715d096e77a0",
            "head": null,
            "entity": {
                "id": "72dd6b80-852b-11ea-ab2a-715d096e77a0",
                "name": "Serge Pun & Associates Marketing Limited"
            },
            "positions": []
        },
        {
            "id": "8ddabc90-e54d-11ec-8442-c568cab5a0bc",
            "name": "Sales - PDG",
            "color": "#8f97ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "72dd6b80-852b-11ea-ab2a-715d096e77a0",
            "head": null,
            "entity": {
                "id": "72dd6b80-852b-11ea-ab2a-715d096e77a0",
                "name": "Serge Pun & Associates Marketing Limited"
            },
            "positions": []
        },
        {
            "id": "62ae05a0-1a3e-11ee-a0df-e3d0d5f951b8",
            "name": "Sales - CLW",
            "color": "#ccd7ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "72dd6b80-852b-11ea-ab2a-715d096e77a0",
            "head": null,
            "entity": {
                "id": "72dd6b80-852b-11ea-ab2a-715d096e77a0",
                "name": "Serge Pun & Associates Marketing Limited"
            },
            "positions": []
        },
        {
            "id": "3b67bb90-a6e1-11ea-896c-ff12b26be57d",
            "name": "Sales",
            "color": "#77ea98",
            "parent_id": null,
            "head_id": null,
            "entity_id": "24985240-a6df-11ea-a052-bf96d8418050",
            "head": null,
            "entity": {
                "id": "24985240-a6df-11ea-a052-bf96d8418050",
                "name": "Asia Holidays Travels & Tours Company Limited"
            },
            "positions": []
        },
        {
            "id": "46f62870-a6e6-11ea-9c59-e33a6b585a7d",
            "name": "Sales",
            "color": "#fca6a6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
            "head": null,
            "entity": {
                "id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
                "name": "SM Mawlamyaing Hotel Limited"
            },
            "positions": []
        },
        {
            "id": "6fe3ec30-4eec-11ea-ac18-3f60ff690987",
            "name": "Sales",
            "color": "#fce6a9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6f0f8e30-4eec-11ea-a7b3-372cf4b6aaa8",
            "head": null,
            "entity": {
                "id": "6f0f8e30-4eec-11ea-a7b3-372cf4b6aaa8",
                "name": "SGG Motor Services Limited"
            },
            "positions": []
        },
        {
            "id": "70705a80-4eec-11ea-b5f3-2ba385f4176e",
            "name": "Sales",
            "color": "#8bb4ed",
            "parent_id": null,
            "head_id": null,
            "entity_id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
            "head": null,
            "entity": {
                "id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
                "name": "Yoma German Motors Limited"
            },
            "positions": []
        },
        {
            "id": "35f66900-5dfc-11ea-bccf-ffac6e18cb52",
            "name": "Sales",
            "color": "#abfcb3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "ef2cdc50-a70b-11ea-80e8-2f21f9c6086e",
            "name": "Sales",
            "color": "#db99ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "7c90c260-852b-11ea-a008-ff0efd0055f5",
            "name": "Sales",
            "color": "#8bdbed",
            "parent_id": null,
            "head_id": null,
            "entity_id": "72dd6b80-852b-11ea-ab2a-715d096e77a0",
            "head": null,
            "entity": {
                "id": "72dd6b80-852b-11ea-ab2a-715d096e77a0",
                "name": "Serge Pun & Associates Marketing Limited"
            },
            "positions": []
        },
        {
            "id": "9cafc440-eb92-11ec-95d2-03fd9d559f1b",
            "name": "Sales",
            "color": "#9f92f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
            "head": null,
            "entity": {
                "id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
                "name": "Chindwin Investments Limited"
            },
            "positions": []
        },
        {
            "id": "b6fd7e40-fb70-11ec-ae4d-f3281982ba17",
            "name": "Sales",
            "color": "#ac89ed",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e386d7a0-fb6c-11ec-bb91-0f1408eee5d1",
            "head": null,
            "entity": {
                "id": "e386d7a0-fb6c-11ec-bb91-0f1408eee5d1",
                "name": "MMCM Mandalay Limited"
            },
            "positions": []
        },
        {
            "id": "01a01500-5394-11ea-8dd6-573c8efc04ca",
            "name": "Sale & Marketing",
            "color": "#9ef7b7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "4adaf940-588b-11ea-a0f9-83719ef7089f",
            "name": "Sale & Marketing",
            "color": "#fcbaf4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "095efdc0-d164-11ec-a8ef-a3d392ee1c51",
            "name": "S-City",
            "color": "#e0ccff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "1667ef10-5395-11ea-919b-5b36d756afaa",
            "name": "RMO",
            "color": "#f48d86",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "d3fb6d20-e27c-11e9-bda7-9bc91db69cac",
            "name": "Risk Management & Assurance, Financial Management",
            "color": "#ef8373",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bb04f1c0-c28b-11e9-9760-f36fafa5ba7c",
            "head": null,
            "entity": {
                "id": "bb04f1c0-c28b-11e9-9760-f36fafa5ba7c",
                "name": "Yoma Strategic Holdings Ltd."
            },
            "positions": []
        },
        {
            "id": "d46bfad0-e27c-11e9-96bc-a7e0ee1777ee",
            "name": "Risk Management & Assurance, Financial Management",
            "color": "#f4a1a5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c72c6bf0-e27c-11e9-8157-838dd6945639",
            "head": null,
            "entity": {
                "id": "c72c6bf0-e27c-11e9-8157-838dd6945639",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "69009000-2358-11ed-a915-4570bedd7926",
            "name": "Risk Division",
            "color": "#fcbde7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
            "head": null,
            "entity": {
                "id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
                "name": "Yoma Bank"
            },
            "positions": []
        },
        {
            "id": "7857a3f0-852b-11ea-b6bc-37017a08ee40",
            "name": "Retail Leasing",
            "color": "#77fffa",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c3676d00-7879-11ea-854c-437de4b8ca7e",
            "head": null,
            "entity": {
                "id": "c3676d00-7879-11ea-854c-437de4b8ca7e",
                "name": "Meeyahta Development Limited"
            },
            "positions": []
        },
        {
            "id": "9a5bb650-eb92-11ec-99b8-e542bf4a6683",
            "name": "Reservation",
            "color": "#fafc76",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
            "head": null,
            "entity": {
                "id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
                "name": "Chindwin Investments Limited"
            },
            "positions": []
        },
        {
            "id": "4a15a190-588b-11ea-b65e-d713e6b91b64",
            "name": "Rehabilitation Medicine",
            "color": "#c5bef7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "a9ceb220-7472-11ec-913c-93803357ebee",
            "name": "Rehabilitation",
            "color": "#8ea3f9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "d2554e30-775e-11ec-874c-41df690aa661",
            "name": "Rehabilitation",
            "color": "#fff496",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "65a1ef30-d162-11ec-a90b-f5f2f50c62cb",
            "name": "RCB",
            "color": "#80f2dd",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "476ffe70-58c8-11eb-80df-79abefc53c2c",
            "name": "R&D",
            "color": "#ea9d69",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
            "head": null,
            "entity": {
                "id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
                "name": "YKKO Trademarks Company Limited"
            },
            "positions": []
        },
        {
            "id": "88367c20-218b-11ea-9c74-7734505dff8b",
            "name": "R&D",
            "color": "#ff7c89",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6426f810-218b-11ea-85f8-69567965e025",
            "head": null,
            "entity": {
                "id": "6426f810-218b-11ea-85f8-69567965e025",
                "name": "YKKO HO"
            },
            "positions": []
        },
        {
            "id": "8b49c100-d163-11ec-98ba-3d0b36495d85",
            "name": "R&D",
            "color": "#7bf972",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "aee337d0-a93d-11ec-84b7-3fe129d1bf48",
            "name": "Quality Management",
            "color": "#c4c6fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "e5b8f640-7488-11ec-a2ba-891bb4a8246f",
            "name": "Quality Management",
            "color": "#70eab1",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "head": null,
            "entity": {
                "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
                "name": "Pun Hlaing Hospitals - Head Office"
            },
            "positions": []
        },
        {
            "id": "b91fbe80-9035-11ea-8225-ad2b25c326ce",
            "name": "QHSE",
            "color": "#e6fcae",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "65341180-d162-11ec-a8d3-49efe376bfdc",
            "name": "PZDMK",
            "color": "#c0ffad",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "0f0e85c0-a945-11ea-ba64-09429732fc55",
            "name": "PYN - Safety",
            "color": "#a2ff9b",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "0efa2840-a945-11ea-8676-5d13c489ac0e",
            "name": "PYN - Project Control",
            "color": "#fcc2f1",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "0ee20ab0-a945-11ea-989e-ef38b6b338e9",
            "name": "PYN - Planning",
            "color": "#f9ec98",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "0ec42fc0-a945-11ea-9c33-f53a86e352c8",
            "name": "PYN - Design",
            "color": "#86f990",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "0eadb140-a945-11ea-bb44-1b89e96420fd",
            "name": "PYN - Contracts & Commercial",
            "color": "#f7bfaa",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "0e0b7c80-a945-11ea-98af-17b12e328753",
            "name": "PYN - Construction",
            "color": "#9888ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "830e4b90-4b85-11ed-962f-57f4d34a0ec4",
            "name": "Purchasing",
            "color": "#f7add8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "8e158560-42a5-11ea-8356-6b27626cc762",
            "name": "Pun Hlaing Siloam Hospital",
            "color": "#f47ac5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "d65c4a20-a946-11ea-b703-8b1ded1878a3",
            "name": "Pun Hlaing Links, TED",
            "color": "#ddccff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bf8c0340-6daa-11ea-8fcc-a912b7f0bbdb",
            "head": null,
            "entity": {
                "id": "bf8c0340-6daa-11ea-8fcc-a912b7f0bbdb",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "4b536480-eb59-11ea-9f74-e53495fd1ab9",
            "name": "Pun Hlaing Golf Club",
            "color": "#91f7b8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "8dcd49f0-42a5-11ea-b135-1f4286be4c7d",
            "name": "Pun Hlaing Clinic (BAS)",
            "color": "#f9eeac",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "d0bcc630-e27c-11e9-bdc6-375ad3f2fb4c",
            "name": "Protocol",
            "color": "#fdffbf",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bc0ea100-c28b-11e9-b0a5-91e0913aed65",
            "head": null,
            "entity": {
                "id": "bc0ea100-c28b-11e9-b0a5-91e0913aed65",
                "name": "Serge Pun & Associates (Myanmar) Limited"
            },
            "positions": []
        },
        {
            "id": "88bc6920-d15d-11ec-ac15-7fd035e099f8",
            "name": "PROPT",
            "color": "#ed84db",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "1a1c4310-ec63-11ec-bdba-6ff34acf53a9",
            "name": "Property Affairs",
            "color": "#f9bc90",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "6442a490-218b-11ea-a67f-3551bffb731d",
            "name": "Property",
            "color": "#ef73b5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6426f810-218b-11ea-85f8-69567965e025",
            "head": null,
            "entity": {
                "id": "6426f810-218b-11ea-85f8-69567965e025",
                "name": "YKKO HO"
            },
            "positions": []
        },
        {
            "id": "542189e0-a338-11eb-9774-63c9c96d390c",
            "name": "Project(Tower Electrification)",
            "color": "#d0f49a",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "90913b40-7964-11ea-adec-ef66e4a109b2",
            "name": "Project(Rural Electrification)",
            "color": "#8ef9f6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "5fdfab70-0709-11ec-af1d-25287a6da288",
            "name": "Project Management",
            "color": "#f9f490",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ef5e4d50-6389-11ea-864b-f175239df991",
            "head": null,
            "entity": {
                "id": "ef5e4d50-6389-11ea-864b-f175239df991",
                "name": "Thanlyin Estate Development Limited"
            },
            "positions": []
        },
        {
            "id": "347a9060-3297-11ee-afef-69f4b7748717",
            "name": "Project Development",
            "color": "#c6f97f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ef5e4d50-6389-11ea-864b-f175239df991",
            "head": null,
            "entity": {
                "id": "ef5e4d50-6389-11ea-864b-f175239df991",
                "name": "Thanlyin Estate Development Limited"
            },
            "positions": []
        },
        {
            "id": "f07cbd70-a6e4-11ea-bbec-bdc9edecfbfa",
            "name": "Project",
            "color": "#8af7bd",
            "parent_id": null,
            "head_id": null,
            "entity_id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
            "head": null,
            "entity": {
                "id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
                "name": "Mokan International Company Limited"
            },
            "positions": []
        },
        {
            "id": "537f65b0-5f83-11eb-8455-d722e88d97b5",
            "name": "Program Management Office",
            "color": "#cf97ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "3e963520-f2c2-11ed-aa49-89473cbf9d38",
            "name": "Products",
            "color": "#f9bd7c",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "641198c0-d0e7-11ec-97b0-977ff35adf4a",
            "name": "Production",
            "color": "#f9a7f0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "58c76320-d0e7-11ec-84e5-f98c1f989ebe",
            "head": null,
            "entity": {
                "id": "58c76320-d0e7-11ec-84e5-f98c1f989ebe",
                "name": "SAUNG NAING FOOD AND BEVERAGE COMPANY LIMITED"
            },
            "positions": []
        },
        {
            "id": "43cd6b50-a6e1-11ea-9694-d176aac66794",
            "name": "Product, Quality and Sustainbility",
            "color": "#b3c5f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "24985240-a6df-11ea-a052-bf96d8418050",
            "head": null,
            "entity": {
                "id": "24985240-a6df-11ea-a052-bf96d8418050",
                "name": "Asia Holidays Travels & Tours Company Limited"
            },
            "positions": []
        },
        {
            "id": "4c28f500-b96f-11ed-86f8-cd1eee50903b",
            "name": "Product Support/Training and Quality Control(YGN)",
            "color": "#eb7ded",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "60656e40-a70b-11ea-8127-51958eb52d1a",
            "name": "Product Support",
            "color": "#80ed81",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "00203720-f90f-11ec-95bb-35b1fd3c0ba6",
            "name": "Procurement & Project Management (PMO)",
            "color": "#dea0f7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "a80274b0-9035-11ea-9746-15e1d506bfa4",
            "name": "Procurement & Logistics",
            "color": "#b6f8f9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "34d97170-84ca-11ec-851e-1dece2925b6a",
            "name": "Procurement",
            "color": "#caa2ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "47510360-71cf-11ea-8fbd-1d6ca3104f21",
            "name": "Procurement",
            "color": "#edbc6f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "503ad960-aa0d-11ea-ac5a-e3b7ab2b9c6e",
            "name": "Procurement",
            "color": "#b8ffaa",
            "parent_id": null,
            "head_id": null,
            "entity_id": "f9074280-9f1c-11ea-b435-7b8d0032473e",
            "head": null,
            "entity": {
                "id": "f9074280-9f1c-11ea-b435-7b8d0032473e",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "17beb410-5394-11ea-ab61-590b03eab5f8",
            "name": "POD",
            "color": "#c9dfff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "0ded09f0-a945-11ea-8442-9f95d09a4d11",
            "name": "PM - Pun Hlaing Estate",
            "color": "#dcf97a",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "499b9ed0-56af-11ee-8844-df24fecf2ef3",
            "name": "PM - PND",
            "color": "#eb84f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "26b52d70-b101-11ec-88c9-9391b8157977",
            "name": "PM - PDG",
            "color": "#b6f989",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "577830e0-2d5e-11ec-8a95-9957c497ed75",
            "name": "Plantation (Sein Taung Estate)",
            "color": "#f7f26f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
            "head": null,
            "entity": {
                "id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
                "name": "Myanmar Agri-Tech Limited"
            },
            "positions": []
        },
        {
            "id": "c0ea40d0-2d5e-11ec-9171-397382087971",
            "name": "Plantation (Maw Tin Estate)",
            "color": "#9ddff9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
            "head": null,
            "entity": {
                "id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
                "name": "Myanmar Agri-Tech Limited"
            },
            "positions": []
        },
        {
            "id": "d21ba640-775e-11ec-99b6-4df844df15a3",
            "name": "Plant Operations",
            "color": "#9cd5f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "531a1710-74b0-11ec-9af2-9f727be316e1",
            "name": "Plant Operations",
            "color": "#94b3e8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "a6fa5540-7471-11ec-a497-397343d68f69",
            "head": null,
            "entity": {
                "id": "a6fa5540-7471-11ec-a497-397343d68f69",
                "name": "Pun Hlaing Clinic - North Dagon"
            },
            "positions": []
        },
        {
            "id": "60659b20-76e6-11ec-b80b-1751fc06cfe6",
            "name": "Plant Operations",
            "color": "#f094f7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "a8620540-7472-11ec-8513-3fef41ea69ce",
            "name": "Plant Operations",
            "color": "#dcffa8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "1cf8b550-5394-11ea-af56-1fb49ab71a36",
            "name": "Physical Therapy/Medical Services",
            "color": "#f279e4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "e3b7e1b0-2d1f-11ee-b7cc-fb7814d06c15",
            "name": "PHE - M&E",
            "color": "#ffbcd9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "9f2a2cb0-8504-11ee-9b40-f33613c351aa",
            "name": "PHE - M&E",
            "color": "#fcb0dc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "9be45620-2482-11ee-8b5a-914838a52f69",
            "name": "PHE - Kitchen",
            "color": "#f48dd5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "340dd7c0-8504-11ee-9ff1-29ed3f3d1474",
            "name": "PHE - Kitchen",
            "color": "#edccff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "2ce0cba0-2d20-11ee-84fd-eb06f4958004",
            "name": "PHE - Housekeeping",
            "color": "#ff7a99",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "33afede0-8504-11ee-ab52-419c24b93b91",
            "name": "PHE - Housekeeping",
            "color": "#7388f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "3358e320-8504-11ee-bde9-19301676baac",
            "name": "PHE - Finance",
            "color": "#74f7c2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "d1c0d680-2d1f-11ee-b11c-4114e9502040",
            "name": "PHE - Finance",
            "color": "#c8ff9e",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "041823c0-78a0-11ed-81b0-5bcd4fdfe108",
            "name": "PHE - F&B",
            "color": "#e1ffb2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "3305f4a0-8504-11ee-8522-9d14ddd7307b",
            "name": "PHE - F&B",
            "color": "#f98ebb",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "00e95a20-5394-11ea-9077-ef1cf3b01f4b",
            "name": "Pharmacy",
            "color": "#8cff8e",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "1dd65fa0-74b0-11ec-b0de-ad38d6ed83e2",
            "name": "Pharmacy",
            "color": "#7c71e2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "a6fa5540-7471-11ec-a497-397343d68f69",
            "head": null,
            "entity": {
                "id": "a6fa5540-7471-11ec-a497-397343d68f69",
                "name": "Pun Hlaing Clinic - North Dagon"
            },
            "positions": []
        },
        {
            "id": "39bf13f0-74b0-11ec-ada6-1da90a0d857d",
            "name": "Pharmacy",
            "color": "#ffbce2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
            "head": null,
            "entity": {
                "id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
                "name": "Pun Hlaing Clinic - Taw Win"
            },
            "positions": []
        },
        {
            "id": "a6156080-7472-11ec-8786-a9cf2ce531ab",
            "name": "Pharmacy",
            "color": "#fce7c4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "49527b20-588b-11ea-bd61-0baae523defc",
            "name": "Pharmacy",
            "color": "#8ebef9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "610749e0-76e6-11ec-814b-b5ff6637ef33",
            "name": "Pharmacy",
            "color": "#f4868f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "c2894800-22f3-11ed-97d4-41d07a81ac9f",
            "name": "Pharmacy",
            "color": "#a672ea",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "head": null,
            "entity": {
                "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
                "name": "Pun Hlaing Hospitals - Head Office"
            },
            "positions": []
        },
        {
            "id": "d1e1c700-775e-11ec-945b-0596753726c2",
            "name": "Pharmacy",
            "color": "#ffd3cc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "be1a9f20-7488-11ec-a75e-c124a99aeff7",
            "name": "People Management & Development",
            "color": "#c092ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "head": null,
            "entity": {
                "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
                "name": "Pun Hlaing Hospitals - Head Office"
            },
            "positions": []
        },
        {
            "id": "d2dff910-775e-11ec-990d-6187a2d6930f",
            "name": "People Management & Development",
            "color": "#c7e9fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "91680ea0-fbb9-11ec-8269-5b4b6c5076bc",
            "name": "People Management & Development",
            "color": "#e8736a",
            "parent_id": null,
            "head_id": null,
            "entity_id": "915862a0-fbb9-11ec-a000-0f3eea21b5ff",
            "head": null,
            "entity": {
                "id": "915862a0-fbb9-11ec-a000-0f3eea21b5ff",
                "name": "Pun Hlaing Hospitals - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "379960b0-74b0-11ec-a6dc-13bcd6aa50a3",
            "name": "People Management & Development",
            "color": "#a87efc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "5f445390-76e6-11ec-a0c9-cbb2aea76562",
            "name": "People Management & Development",
            "color": "#ffcce5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "6b287270-2358-11ed-8494-29aa6021e703",
            "name": "People Division",
            "color": "#ccfdff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
            "head": null,
            "entity": {
                "id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
                "name": "Yoma Bank"
            },
            "positions": []
        },
        {
            "id": "70833df0-56a7-11ec-b74e-0baa65e57bc5",
            "name": "Peninsula Sales Gallery",
            "color": "#f97796",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c3676d00-7879-11ea-854c-437de4b8ca7e",
            "head": null,
            "entity": {
                "id": "c3676d00-7879-11ea-854c-437de4b8ca7e",
                "name": "Meeyahta Development Limited"
            },
            "positions": []
        },
        {
            "id": "c81fd330-a70c-11ea-8884-13f9eef7204c",
            "name": "Parts",
            "color": "#fc9185",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "541985f0-74b0-11ec-a653-0d195896c39b",
            "name": "Partnership Management",
            "color": "#96fc71",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "4cb3ab10-588b-11ea-b971-735513c53f27",
            "name": "Palant Operation",
            "color": "#cbff72",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "eb9b7700-7957-11ea-8b2b-e3065f9da097",
            "name": "Other",
            "color": "#f7c274",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
            "head": null,
            "entity": {
                "id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
                "name": "YKKO Branches"
            },
            "positions": []
        },
        {
            "id": "0eb0ff30-5394-11ea-9a81-ed3fa56b21dc",
            "name": "OT ",
            "color": "#f3ffaa",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "fe1f19a0-d15d-11ec-8b65-b9ea648bf74b",
            "name": "OPT-HO",
            "color": "#f4a6ac",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "474ab540-58c8-11eb-bb1c-05c53b1074ee",
            "name": "OPT",
            "color": "#ffe8aa",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
            "head": null,
            "entity": {
                "id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
                "name": "YKKO Trademarks Company Limited"
            },
            "positions": []
        },
        {
            "id": "5a081760-a70e-11ea-a193-ff4789f33978",
            "name": "Operations Metro",
            "color": "#a385e2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "696f39d0-2358-11ed-a6a7-892163034482",
            "name": "Operations Division",
            "color": "#8afc79",
            "parent_id": null,
            "head_id": null,
            "entity_id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
            "head": null,
            "entity": {
                "id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
                "name": "Yoma Bank"
            },
            "positions": []
        },
        {
            "id": "4a84f620-a8d0-11ea-83f5-17b6d47357d8",
            "name": "Operations",
            "color": "#bffcae",
            "parent_id": null,
            "head_id": null,
            "entity_id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
            "head": null,
            "entity": {
                "id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
                "name": "Yoma German Motors Limited"
            },
            "positions": []
        },
        {
            "id": "cef7d510-adfd-11ea-9861-6132d978efba",
            "name": "Operations",
            "color": "#fff09e",
            "parent_id": null,
            "head_id": null,
            "entity_id": "04565320-a6e4-11ea-a377-914b5aa1516d",
            "head": null,
            "entity": {
                "id": "04565320-a6e4-11ea-a377-914b5aa1516d",
                "name": "Blue Ridge Company Limited"
            },
            "positions": []
        },
        {
            "id": "e025df20-6bd3-11ed-a589-33ddb98e5953",
            "name": "Operations",
            "color": "#9bf7ab",
            "parent_id": null,
            "head_id": null,
            "entity_id": "57d03b00-280d-11ed-bf78-55672245db61",
            "head": null,
            "entity": {
                "id": "57d03b00-280d-11ed-bf78-55672245db61",
                "name": "Digital Loyalty Service Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "91d77b60-90e7-11ea-9ea4-59b6d0b61e52",
            "name": "Operations",
            "color": "#85f7a3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "394f5b40-0199-11eb-a837-6bcdc5c4834a",
            "name": "Operations",
            "color": "#e4f47c",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "2cc21120-ed75-11ed-8fed-2fdf1416090f",
            "name": "Operation & Maintenance",
            "color": "#edc878",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "6160b0c0-2d5e-11ec-8296-0338d63eafe4",
            "name": "Operation (Sein Taung Estate)",
            "color": "#ea9e6b",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
            "head": null,
            "entity": {
                "id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
                "name": "Myanmar Agri-Tech Limited"
            },
            "positions": []
        },
        {
            "id": "b5b0d600-2d5e-11ec-8ded-ab017ec65d99",
            "name": "Operation (Maw Tin Estate)",
            "color": "#f4ffb2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
            "head": null,
            "entity": {
                "id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
                "name": "Myanmar Agri-Tech Limited"
            },
            "positions": []
        },
        {
            "id": "a229ef10-aa0e-11ea-aa3a-2fd0ffebce6d",
            "name": "Operation",
            "color": "#e7f276",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "2069fe80-a6e3-11ea-8728-c70b3c800358",
            "name": "Operation",
            "color": "#ed7890",
            "parent_id": null,
            "head_id": null,
            "entity_id": "42a231b0-a6df-11ea-b95d-bf712d0eee37",
            "head": null,
            "entity": {
                "id": "42a231b0-a6df-11ea-b95d-bf712d0eee37",
                "name": "Burma Boating Company Limited"
            },
            "positions": []
        },
        {
            "id": "2e9e7ac0-2d5e-11ec-b35c-e3ad39e88e4b",
            "name": "Operation",
            "color": "#f7808a",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
            "head": null,
            "entity": {
                "id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
                "name": "Myanmar Agri-Tech Limited"
            },
            "positions": []
        },
        {
            "id": "e6aadd50-b377-11ea-9650-81beea915daf",
            "name": "Operation",
            "color": "#a7c1f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "f8772340-a6e3-11ea-bc24-65ba517e4e0a",
            "head": null,
            "entity": {
                "id": "f8772340-a6e3-11ea-bc24-65ba517e4e0a",
                "name": "Altai Myanmar Company Limited"
            },
            "positions": []
        },
        {
            "id": "3e9620b0-a6e1-11ea-8f5b-fb00c0535fac",
            "name": "Operation",
            "color": "#8cb6f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "24985240-a6df-11ea-a052-bf96d8418050",
            "head": null,
            "entity": {
                "id": "24985240-a6df-11ea-a052-bf96d8418050",
                "name": "Asia Holidays Travels & Tours Company Limited"
            },
            "positions": []
        },
        {
            "id": "65052500-218b-11ea-8364-1143fecd28b0",
            "name": "Operation",
            "color": "#896add",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6426f810-218b-11ea-85f8-69567965e025",
            "head": null,
            "entity": {
                "id": "6426f810-218b-11ea-85f8-69567965e025",
                "name": "YKKO HO"
            },
            "positions": []
        },
        {
            "id": "0d508e60-5394-11ea-b1e4-7bbe98b6cc6c",
            "name": "OPD ",
            "color": "#ed9bf2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "12a56860-aa0d-11ea-8284-5d86e68a656c",
            "name": "Office",
            "color": "#f6bbf9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "04565320-a6e4-11ea-a377-914b5aa1516d",
            "head": null,
            "entity": {
                "id": "04565320-a6e4-11ea-a377-914b5aa1516d",
                "name": "Blue Ridge Company Limited"
            },
            "positions": []
        },
        {
            "id": "ed30eb90-aa0c-11ea-b404-ed624e63a688",
            "name": "Office",
            "color": "#ffc1fa",
            "parent_id": null,
            "head_id": null,
            "entity_id": "f8772340-a6e3-11ea-bc24-65ba517e4e0a",
            "head": null,
            "entity": {
                "id": "f8772340-a6e3-11ea-bc24-65ba517e4e0a",
                "name": "Altai Myanmar Company Limited"
            },
            "positions": []
        },
        {
            "id": "c01f0e90-4472-11eb-aa3c-652fc871e569",
            "name": "O&M",
            "color": "#cced78",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c0190630-4472-11eb-9111-1723cb8f99bb",
            "head": null,
            "entity": {
                "id": "c0190630-4472-11eb-9111-1723cb8f99bb",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "45a9b9d0-f9dc-11ea-b16b-91fc9f910093",
            "name": "O&M",
            "color": "#cd82ed",
            "parent_id": null,
            "head_id": null,
            "entity_id": "45a8a6a0-f9dc-11ea-95d4-67b16d301613",
            "head": null,
            "entity": {
                "id": "45a8a6a0-f9dc-11ea-95d4-67b16d301613",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "8f83bda0-7964-11ea-acd7-c50b95480ef8",
            "name": "O&M",
            "color": "#d5f470",
            "parent_id": null,
            "head_id": "79e0b900-6d8c-11ea-a2a0-f1eae68a1aa3",
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": {
                "id": "79e0b900-6d8c-11ea-a2a0-f1eae68a1aa3",
                "name": "Mainpal Singh",
                "known_as": null
            },
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "4fabe9c0-588b-11ea-a1f8-71ae2d475ca6",
            "name": "Nursing (Ward-2)",
            "color": "#6bea9a",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "50831d90-588b-11ea-b793-adfcdc012051",
            "name": "Nursing (Ward -3)",
            "color": "#9e81ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "4a652de0-588b-11ea-841a-835ceb055560",
            "name": "Nursing (Ward -1)",
            "color": "#99f776",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "4a8d8ba0-588b-11ea-9b6f-c1b64795ae08",
            "name": "Nursing (Operation Theratre)",
            "color": "#e7ef8d",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "4eafc750-588b-11ea-b3e3-e5137786a963",
            "name": "Nursing (Nawarat)",
            "color": "#f7bfb4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "0f0f0d90-588f-11ea-99b9-adec7a0c287a",
            "name": "Nursing (Hnin Si)",
            "color": "#b2ffbd",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "4a3d9180-588b-11ea-aa4a-7fadbe1e95a4",
            "name": "Nursing (HD)",
            "color": "#def970",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "a9a54cd0-de4a-11ec-9481-4377b207d9af",
            "name": "Nursing - Ward 3",
            "color": "#afffeb",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "1ca91b60-de4b-11ec-85af-2be155e85430",
            "name": "Nursing - Ward 2",
            "color": "#c0b5ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "1bd96870-de4b-11ec-936d-cb92d5c5342d",
            "name": "Nursing - Ward 1",
            "color": "#8dfcae",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "f43f67b0-74af-11ec-8abb-69eae79e80fd",
            "name": "Nursing - Plastic",
            "color": "#ea6b94",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "a4837e30-7472-11ec-a260-bd137cffd7ec",
            "name": "Nursing - OT",
            "color": "#8af986",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "18aa69e0-77c0-11ec-94da-6b79dc25d894",
            "name": "Nursing - Operation Theratre",
            "color": "#b2e0f7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "5edeba00-76e6-11ec-bbab-9d6b582928fb",
            "name": "Nursing - Operation Theratre",
            "color": "#f9cca9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "d0275b60-d1b4-11ec-a86a-0d1f07391796",
            "name": "Nursing - Operation Theratre",
            "color": "#f9cebb",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "d115cec0-d1b4-11ec-990f-5322d2c45607",
            "name": "Nursing - OPD",
            "color": "#c1c3ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "d10babf0-d1b4-11ec-bd92-f567324257eb",
            "head": null,
            "entity": {
                "id": "d10babf0-d1b4-11ec-bd92-f567324257eb",
                "name": "Family Clinic - Sanchaung"
            },
            "positions": []
        },
        {
            "id": "d14cf9a0-d1b4-11ec-90e1-9fc6945f4503",
            "name": "Nursing - OPD",
            "color": "#f7a999",
            "parent_id": null,
            "head_id": null,
            "entity_id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
            "head": null,
            "entity": {
                "id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
                "name": "Pun Hlaing Clinic - Taw Win"
            },
            "positions": []
        },
        {
            "id": "1870d490-77c0-11ec-b1ba-a9a501edabfb",
            "name": "Nursing - OPD",
            "color": "#ccc4ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "27362bb0-74b0-11ec-9354-6d3c15ce95f2",
            "name": "Nursing - OPD",
            "color": "#e5f9a7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "5e110220-76e6-11ec-9bd6-51f47918d7f7",
            "name": "Nursing - OPD",
            "color": "#fcb8e9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "26d3e280-74b0-11ec-add0-51d786d6c64a",
            "name": "Nursing - Onco",
            "color": "#9bf7bd",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "aa98ae30-de4a-11ec-80e6-9bff1706cfb4",
            "name": "Nursing - Nawarat",
            "color": "#ca74ed",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "2571eb20-74b0-11ec-b4a5-010c09a5c815",
            "name": "Nursing - MCU",
            "color": "#fcc7c9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "21091570-74b0-11ec-b8f4-bb93c34925c7",
            "name": "Nursing - IPD",
            "color": "#a8a4f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "d14dfa50-775e-11ec-be33-fddef6ced6ce",
            "name": "Nursing - IPD",
            "color": "#ef9bcb",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "5d6b0d00-76e6-11ec-ac26-4f4bbfe63bde",
            "name": "Nursing - IPD",
            "color": "#f4d2a8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "183722d0-77c0-11ec-b86a-f7c6c3c8056c",
            "name": "Nursing - Intensive Care Unit",
            "color": "#d8f984",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "f4098cd0-74af-11ec-8fd5-89488d170af8",
            "name": "Nursing - ICU",
            "color": "#b0b8fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "ab80bec0-de4a-11ec-88d2-97afc751212a",
            "name": "Nursing - Hnin Si",
            "color": "#f780a2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "d0ca76a0-775e-11ec-81dd-7f119e0723d6",
            "name": "Nursing - Hemodialysis",
            "color": "#f18dfc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "a312e050-7472-11ec-ad8b-6b8d8c4a8bfa",
            "name": "Nursing - HD",
            "color": "#f481ad",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "d198a220-d1b4-11ec-811b-63aa36ad39c0",
            "name": "Nursing - Emergency",
            "color": "#eb7ff9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "1cfeb1d0-76fc-11ec-9ff0-031a4862a17d",
            "name": "Nursing - Emergency",
            "color": "#ac75f9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "ac5820e0-a93d-11ec-bf91-ff7750c9145f",
            "name": "Nursing - ED",
            "color": "#bbeff9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "a1e8c640-7472-11ec-9b64-75d1b1254dfc",
            "name": "Nursing - CSSD",
            "color": "#efa98f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "1c5e8200-76fc-11ec-b9ff-d10f0614eaaf",
            "name": "Nursing - CSSD",
            "color": "#c5ffb2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "1e9f1cf0-74b0-11ec-927e-2bd1cbc5a2e4",
            "name": "Nursing - BCU",
            "color": "#8ffc91",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "5034e140-588b-11ea-8549-ab2969e75690",
            "name": "Nursing  (Nursery)",
            "color": "#af85f7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "3e08fd60-a94e-11ec-b7d8-9ff3fab05e6d",
            "name": "Nursing",
            "color": "#f9f889",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b09df300-7471-11ec-9bc1-b3b5ffb2261f",
            "head": null,
            "entity": {
                "id": "b09df300-7471-11ec-9bc1-b3b5ffb2261f",
                "name": "Pun Hlaing Clinic - Star City"
            },
            "positions": []
        },
        {
            "id": "58e53c40-588b-11ea-a161-076b727f9ee9",
            "name": "Nursing",
            "color": "#f7a8e0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "5cc9e8e0-76e6-11ec-9ed2-ab8312879eda",
            "name": "Nursing",
            "color": "#f77bad",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "0dec27f0-74fe-11ec-ab44-9b5dc8d6a1a4",
            "name": "Nursing",
            "color": "#97a1ed",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ff7fbed0-74fd-11ec-8ad5-8f00002b004e",
            "head": null,
            "entity": {
                "id": "ff7fbed0-74fd-11ec-8ad5-8f00002b004e",
                "name": "Pun Hlaing Hospitals"
            },
            "positions": []
        },
        {
            "id": "144121b0-5395-11ea-8886-df8b0e33a618",
            "name": "Nursing",
            "color": "#95f293",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "1c7029c0-74b0-11ec-996e-e744a7358425",
            "name": "Nursing",
            "color": "#a770ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "a6fa5540-7471-11ec-a497-397343d68f69",
            "head": null,
            "entity": {
                "id": "a6fa5540-7471-11ec-a497-397343d68f69",
                "name": "Pun Hlaing Clinic - North Dagon"
            },
            "positions": []
        },
        {
            "id": "1e6aadb0-74b0-11ec-abf6-994548afe21e",
            "name": "Nursing",
            "color": "#89fff9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "383723a0-74b0-11ec-82f1-cff356dc2217",
            "name": "Nursing",
            "color": "#abfce6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
            "head": null,
            "entity": {
                "id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
                "name": "Pun Hlaing Clinic - Taw Win"
            },
            "positions": []
        },
        {
            "id": "bd7f1330-7488-11ec-b58f-91aad6638c5c",
            "name": "Nursing",
            "color": "#e39bef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "head": null,
            "entity": {
                "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
                "name": "Pun Hlaing Hospitals - Head Office"
            },
            "positions": []
        },
        {
            "id": "078bed80-d164-11ec-b3ba-417a84408ecc",
            "name": "NPT-TPG",
            "color": "#f9b1ed",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "066b9160-d164-11ec-a289-3744371add67",
            "name": "NPT-OTT",
            "color": "#f4d673",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "06dc0930-d164-11ec-90e4-dddcbc20399e",
            "name": "NPT-JSN",
            "color": "#a8c3f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "0712eae0-d164-11ec-bef6-8798803b536a",
            "name": "NPST",
            "color": "#e0b7f7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "09266190-d164-11ec-9984-a15253487c38",
            "name": "NPL",
            "color": "#f9da84",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "644a2870-d162-11ec-993e-9371217f036b",
            "name": "NOP",
            "color": "#ef8973",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "8a6bb1b0-7759-11ea-997a-45418c7943d1",
            "name": "NOC",
            "color": "#dcea72",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "d1e94e70-9353-11ee-9c62-51136bfe61c7",
            "name": "New Sales Department",
            "color": "#ffd999",
            "parent_id": null,
            "head_id": null,
            "entity_id": "75b53f80-9353-11ee-9d93-1f64d36b1068",
            "head": null,
            "entity": {
                "id": "75b53f80-9353-11ee-9d93-1f64d36b1068",
                "name": "Yoma Elevator Company Limited"
            },
            "positions": []
        },
        {
            "id": "d8289ec0-8524-11ee-8e55-71545c117942",
            "name": "New Sales Department",
            "color": "#92f499",
            "parent_id": null,
            "head_id": null,
            "entity_id": "cbb57820-8524-11ee-80d1-43f087c68393",
            "head": null,
            "entity": null,
            "positions": []
        },
        {
            "id": "c48db470-9443-11f0-b5af-f75f51431fbd",
            "name": "New Department",
            "color": "#cdffb2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c22a4700-9443-11f0-bc6e-1b0cbecaa6bc",
            "head": null,
            "entity": {
                "id": "c22a4700-9443-11f0-bc6e-1b0cbecaa6bc",
                "name": "Unit Entity"
            },
            "positions": []
        },
        {
            "id": "d04b6260-9442-11f0-ba8a-e9fc626020d3",
            "name": "New Department",
            "color": "#97fcad",
            "parent_id": null,
            "head_id": null,
            "entity_id": "cd3e8730-9442-11f0-a8fc-17ed9df24a3a",
            "head": null,
            "entity": {
                "id": "cd3e8730-9442-11f0-a8fc-17ed9df24a3a",
                "name": "Unit Entity"
            },
            "positions": []
        },
        {
            "id": "f05b2500-936e-11f0-a754-cf576f6db3d5",
            "name": "New Department",
            "color": "#bbb0f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ee9fde00-936e-11f0-9b64-ed7fdeeacd62",
            "head": null,
            "entity": {
                "id": "ee9fde00-936e-11f0-9b64-ed7fdeeacd62",
                "name": "New Entity"
            },
            "positions": []
        },
        {
            "id": "3c9910e0-2dc6-11ed-a11a-77cc8518a62c",
            "name": "New Department",
            "color": "#96f7df",
            "parent_id": null,
            "head_id": null,
            "entity_id": "00f15740-1d58-11ed-a0f2-3784d70ac562",
            "head": null,
            "entity": null,
            "positions": []
        },
        {
            "id": "453b8a00-9442-11f0-8938-2b52ec0561be",
            "name": "New Department",
            "color": "#a7f97a",
            "parent_id": null,
            "head_id": null,
            "entity_id": "415846e0-9442-11f0-ad41-1df089f596d4",
            "head": null,
            "entity": {
                "id": "415846e0-9442-11f0-ad41-1df089f596d4",
                "name": "Unit Entity"
            },
            "positions": []
        },
        {
            "id": "0d4da200-9444-11f0-a36d-07617bcc7fde",
            "name": "New Department",
            "color": "#afffb9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0c36e390-9444-11f0-9541-4baad6aebae0",
            "head": null,
            "entity": {
                "id": "0c36e390-9444-11f0-9541-4baad6aebae0",
                "name": "New Entity"
            },
            "positions": []
        },
        {
            "id": "1c293580-9443-11f0-9259-bd0cc223a790",
            "name": "New Department",
            "color": "#7ef271",
            "parent_id": null,
            "head_id": null,
            "entity_id": "1972f9b0-9443-11f0-814f-51b58715a9e0",
            "head": null,
            "entity": {
                "id": "1972f9b0-9443-11f0-814f-51b58715a9e0",
                "name": "Unit Entity"
            },
            "positions": []
        },
        {
            "id": "823597c0-9442-11f0-9014-4f1d602da83a",
            "name": "New Department",
            "color": "#9af9ba",
            "parent_id": null,
            "head_id": null,
            "entity_id": "7e696ad0-9442-11f0-8137-455294c85350",
            "head": null,
            "entity": {
                "id": "7e696ad0-9442-11f0-8137-455294c85350",
                "name": "Unit Enitty"
            },
            "positions": []
        },
        {
            "id": "95064ea0-9443-11f0-bcdb-e75192365673",
            "name": "New Department",
            "color": "#fcb8c3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "925bacf0-9443-11f0-b873-3b320f0606a1",
            "head": null,
            "entity": {
                "id": "925bacf0-9443-11f0-b873-3b320f0606a1",
                "name": "Unit Entity"
            },
            "positions": []
        },
        {
            "id": "95e6ae10-fb6b-11ec-8dd9-f790847ce2d5",
            "name": "New Department",
            "color": "#f2d891",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8e523f10-fb6b-11ec-8445-2772c57784b5",
            "head": null,
            "entity": null,
            "positions": []
        },
        {
            "id": "0b120b10-aa0d-11ea-a945-39036c11c163",
            "name": "Myanmar Plaza",
            "color": "#f7b4c3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "04565320-a6e4-11ea-a377-914b5aa1516d",
            "head": null,
            "entity": {
                "id": "04565320-a6e4-11ea-a377-914b5aa1516d",
                "name": "Blue Ridge Company Limited"
            },
            "positions": []
        },
        {
            "id": "0157a190-5394-11ea-993b-1dd2d83951a1",
            "name": "MMD",
            "color": "#f6b8fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "08a84dd0-d164-11ec-a322-2b989699d5c0",
            "name": "MLMOC",
            "color": "#fff5ba",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "fed29630-d15d-11ec-91bd-91530ca38985",
            "name": "MKT",
            "color": "#c4e1ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "972e61c0-7472-11ec-9423-f5275e4d3fd1",
            "name": "Mini Mart",
            "color": "#f986d9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "5193f3c0-588b-11ea-a481-b5b46caf6889",
            "name": "Minamart",
            "color": "#7ef7b8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "4d2ce600-366d-11ee-8163-e500b9ebf6c8",
            "name": "Merchants",
            "color": "#b08ef2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "20c3f8a0-0112-11ee-8bde-79787c7f7d14",
            "name": "Merchant Acquisition",
            "color": "#fff7a3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "57d03b00-280d-11ed-bf78-55672245db61",
            "head": null,
            "entity": {
                "id": "57d03b00-280d-11ed-bf78-55672245db61",
                "name": "Digital Loyalty Service Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "4fde7b40-588b-11ea-820b-89beb7aa44e5",
            "name": "Medical Staffs",
            "color": "#7fcbf4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "3b26ff10-74b0-11ec-aeef-93edd6e1e694",
            "name": "Medical Record",
            "color": "#7deda6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
            "head": null,
            "entity": {
                "id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
                "name": "Pun Hlaing Clinic - Taw Win"
            },
            "positions": []
        },
        {
            "id": "48b44be0-588b-11ea-9ac3-29e4eba933d7",
            "name": "Medical Record",
            "color": "#74fcb6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "010d0650-5394-11ea-83fb-756c4560562d",
            "name": "Medical Record",
            "color": "#f98484",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "1b662d90-74b0-11ec-b944-a5dfcf63ad79",
            "name": "Medical Record",
            "color": "#f7a480",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "1b97a020-76fc-11ec-9680-2d0844b54cc8",
            "name": "Medical Record",
            "color": "#ffb689",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "1d6799f0-74b0-11ec-ac63-e756da980f5b",
            "name": "Medical Record",
            "color": "#ef92ab",
            "parent_id": null,
            "head_id": null,
            "entity_id": "a6fa5540-7471-11ec-a497-397343d68f69",
            "head": null,
            "entity": {
                "id": "a6fa5540-7471-11ec-a497-397343d68f69",
                "name": "Pun Hlaing Clinic - North Dagon"
            },
            "positions": []
        },
        {
            "id": "bcf764e0-7488-11ec-a9a8-07a261d75627",
            "name": "Medical Record",
            "color": "#aaffe5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "head": null,
            "entity": {
                "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
                "name": "Pun Hlaing Hospitals - Head Office"
            },
            "positions": []
        },
        {
            "id": "06a4f950-d164-11ec-8ce0-5baaaeb8a1ac",
            "name": "MDY-CATS",
            "color": "#fcbfe5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "63bea060-d164-11ec-be93-adefcb7c39c0",
            "name": "MDY-19CM",
            "color": "#fca9c6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "4ee22150-588b-11ea-8622-5bbab0054873",
            "name": "Material Mangement",
            "color": "#9fd2f9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "5153bfc0-aa0e-11ea-b0ac-237243560083",
            "name": "Marketing",
            "color": "#f0f776",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "57daaa30-280d-11ed-9b50-a9bb8cb1c2f5",
            "name": "Marketing",
            "color": "#ffde8c",
            "parent_id": null,
            "head_id": null,
            "entity_id": "57d03b00-280d-11ed-bf78-55672245db61",
            "head": null,
            "entity": {
                "id": "57d03b00-280d-11ed-bf78-55672245db61",
                "name": "Digital Loyalty Service Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "6e8571f0-4eec-11ea-b568-0fc2efb8ae6a",
            "name": "Marketing",
            "color": "#d198ea",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6df76320-4eec-11ea-94b2-cbb2c0a4d8c2",
            "head": null,
            "entity": {
                "id": "6df76320-4eec-11ea-94b2-cbb2c0a4d8c2",
                "name": "Successful Goal Trading Company Limited"
            },
            "positions": []
        },
        {
            "id": "18ae7e50-ec63-11ec-9824-1ff877c97e5c",
            "name": "Marketing",
            "color": "#ffd782",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "376080f0-5dfc-11ea-8a3f-5d27d26d7ba5",
            "name": "Marketing",
            "color": "#c1dcff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "789034a0-fb70-11ec-ae29-65b926da20e4",
            "name": "Marketing",
            "color": "#b678ed",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2a019b70-723c-11ea-8b6c-95b5a3245155",
            "head": null,
            "entity": {
                "id": "2a019b70-723c-11ea-8b6c-95b5a3245155",
                "name": "MM Cars Myanmar Ltd."
            },
            "positions": []
        },
        {
            "id": "874aa7d0-218b-11ea-b80d-bf1bc2ee356d",
            "name": "Marketing",
            "color": "#d78ef2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6426f810-218b-11ea-85f8-69567965e025",
            "head": null,
            "entity": {
                "id": "6426f810-218b-11ea-85f8-69567965e025",
                "name": "YKKO HO"
            },
            "positions": []
        },
        {
            "id": "91208f30-a709-11ea-9ccc-7d4e09977cbf",
            "name": "Marketing",
            "color": "#f4d184",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "9e220e80-eb92-11ec-8c9c-f3db9d86b5a2",
            "name": "Marketing",
            "color": "#ffd4bf",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
            "head": null,
            "entity": {
                "id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
                "name": "Chindwin Investments Limited"
            },
            "positions": []
        },
        {
            "id": "a0571320-aac7-11ea-a6c9-c5dabcf6e0e0",
            "name": "Marketing",
            "color": "#b1fcab",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5e503fa0-71ce-11ea-9dd5-eb2d7e58002d",
            "head": null,
            "entity": {
                "id": "5e503fa0-71ce-11ea-9dd5-eb2d7e58002d",
                "name": "Zuari Yoma Agri Solutions Limited"
            },
            "positions": []
        },
        {
            "id": "b4620380-aae8-11ed-81e8-e3cce4a57de7",
            "name": "Marketing",
            "color": "#fca9ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
            "head": null,
            "entity": {
                "id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
                "name": "Yoma German Motors Limited"
            },
            "positions": []
        },
        {
            "id": "cf79fd60-dd0e-11ea-aa03-ad93b8b503b9",
            "name": "Marketing",
            "color": "#9af4df",
            "parent_id": null,
            "head_id": null,
            "entity_id": "f9074280-9f1c-11ea-b435-7b8d0032473e",
            "head": null,
            "entity": {
                "id": "f9074280-9f1c-11ea-b435-7b8d0032473e",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "cf767f40-9035-11ea-9553-07ace82cfe9f",
            "name": "Mandalay Warehouse",
            "color": "#a6fcc7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "e53629f0-7957-11ea-be99-eb5c842550b5",
            "name": "Management",
            "color": "#aaf0f7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
            "head": null,
            "entity": {
                "id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
                "name": "YKKO Branches"
            },
            "positions": []
        },
        {
            "id": "25516270-d13a-11ec-a73d-a3314ba47645",
            "name": "Management",
            "color": "#f9b8ca",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "90a582d0-a709-11ea-975f-4d4d9fc67d30",
            "name": "Management",
            "color": "#beff9e",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "36213310-5dfc-11ea-882b-8945882e75bd",
            "name": "Maintenance",
            "color": "#f794b8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "0aa2ce20-51e5-11ee-8d6a-7ff0fc30d5ef",
            "name": "M&E",
            "color": "#f799a5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
            "head": null,
            "entity": {
                "id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
                "name": "PRA-FMI Pansea Hotel Development Company Limited"
            },
            "positions": []
        },
        {
            "id": "47ca6b60-aa0d-11ea-bfba-9b5cf2befb8a",
            "name": "M&E",
            "color": "#e47cff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "f9074280-9f1c-11ea-b435-7b8d0032473e",
            "head": null,
            "entity": {
                "id": "f9074280-9f1c-11ea-b435-7b8d0032473e",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "3db31420-a6e5-11ea-9b90-33721604f4a1",
            "name": "M & E",
            "color": "#ea9a72",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e8376490-a6e0-11ea-a1bd-a935cdfdb3b5",
            "head": null,
            "entity": {
                "id": "e8376490-a6e0-11ea-a1bd-a935cdfdb3b5",
                "name": "Pun Hlaing Lodge Hotel Management Limited"
            },
            "positions": []
        },
        {
            "id": "42b89410-a6e6-11ea-ab52-6d3bbe78dd4b",
            "name": "M & E",
            "color": "#bef287",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
            "head": null,
            "entity": {
                "id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
                "name": "SM Mawlamyaing Hotel Limited"
            },
            "positions": []
        },
        {
            "id": "27d37e40-520d-11ee-88cc-9135c64ad870",
            "name": "M & E",
            "color": "#ff99e8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
            "head": null,
            "entity": {
                "id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
                "name": "PRA-FMI Pansea Hotel Development Company Limited"
            },
            "positions": []
        },
        {
            "id": "88b6d5c0-a6e3-11ea-9c4e-d7072d1d8e91",
            "name": "M & E",
            "color": "#71c6ed",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c5f99000-a6e0-11ea-9e41-e130baac2b0d",
            "head": null,
            "entity": {
                "id": "c5f99000-a6e0-11ea-9e41-e130baac2b0d",
                "name": "Keinara Loikaw Company Limited"
            },
            "positions": []
        },
        {
            "id": "997a26c0-a6e6-11ea-8f42-4fabf1ae72ef",
            "name": "M & E",
            "color": "#7bed8e",
            "parent_id": null,
            "head_id": null,
            "entity_id": "1081fd00-a6e1-11ea-994c-0dd91a3893a2",
            "head": null,
            "entity": {
                "id": "1081fd00-a6e1-11ea-994c-0dd91a3893a2",
                "name": "Hpa An Traditional Lodge Limited"
            },
            "positions": []
        },
        {
            "id": "a8988440-a6e4-11ea-938f-bb50fddff333",
            "name": "M & E",
            "color": "#fca4d3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
            "head": null,
            "entity": {
                "id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
                "name": "Mokan International Company Limited"
            },
            "positions": []
        },
        {
            "id": "5e51ae10-71ce-11ea-bd36-79127aec8ad5",
            "name": "Logistics & Admin",
            "color": "#f4bb97",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5e503fa0-71ce-11ea-9dd5-eb2d7e58002d",
            "head": null,
            "entity": {
                "id": "5e503fa0-71ce-11ea-9dd5-eb2d7e58002d",
                "name": "Zuari Yoma Agri Solutions Limited"
            },
            "positions": []
        },
        {
            "id": "772bca70-4395-11ec-9307-252a76ee4e27",
            "name": "Logistics",
            "color": "#e7aff7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "7b3684f0-a70d-11ea-a9b3-4568913daf96",
            "name": "Logistics",
            "color": "#93aef2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "90912880-a709-11ea-8b59-69bd805195df",
            "name": "Logistics",
            "color": "#a8e4f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "a9976e60-a712-11ea-a3e1-e1b9c14f611f",
            "name": "Logistics",
            "color": "#f4bb9f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6df76320-4eec-11ea-94b2-cbb2c0a4d8c2",
            "head": null,
            "entity": {
                "id": "6df76320-4eec-11ea-94b2-cbb2c0a4d8c2",
                "name": "Successful Goal Trading Company Limited"
            },
            "positions": []
        },
        {
            "id": "e37ee660-fb6f-11ec-8c6b-4fc6334fdb68",
            "name": "Logistics",
            "color": "#f7afea",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2a019b70-723c-11ea-8b6c-95b5a3245155",
            "head": null,
            "entity": {
                "id": "2a019b70-723c-11ea-8b6c-95b5a3245155",
                "name": "MM Cars Myanmar Ltd."
            },
            "positions": []
        },
        {
            "id": "3640fa60-6209-11ec-bc3a-d150e102bbd3",
            "name": "Logistics",
            "color": "#92aefc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
            "head": null,
            "entity": {
                "id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
                "name": "Yoma German Motors Limited"
            },
            "positions": []
        },
        {
            "id": "325ea840-8504-11ee-80a1-bbe34f842902",
            "name": "Locale - Service",
            "color": "#c2ffaf",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "c3fc28a0-2d1f-11ee-92b0-b7a87bc20f95",
            "name": "Locale - Service",
            "color": "#f7ea8a",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "cf372870-2d1f-11ee-ba12-591cd59856b6",
            "name": "Locale - Kitchen",
            "color": "#f9dea4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "320e0530-8504-11ee-97d9-15a9ce538e20",
            "name": "Locale - Kitchen",
            "color": "#9df9b3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "0175b950-c53a-11ec-933c-67bdcb34e9ac",
            "name": "Liaison",
            "color": "#6f6be5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
            "head": null,
            "entity": {
                "id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
                "name": "Myanmar Agri-Tech Limited"
            },
            "positions": []
        },
        {
            "id": "453cc8f0-ed9f-11ec-b0fd-0f65bcc49995",
            "name": "Legal and Secretariat",
            "color": "#e9f79e",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bb04f1c0-c28b-11e9-9760-f36fafa5ba7c",
            "head": null,
            "entity": {
                "id": "bb04f1c0-c28b-11e9-9760-f36fafa5ba7c",
                "name": "Yoma Strategic Holdings Ltd."
            },
            "positions": []
        },
        {
            "id": "8f319840-7964-11ea-9345-517477d850eb",
            "name": "Legal",
            "color": "#fcdfc7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "8b4e7ac0-a944-11ea-8e03-b72623c419e4",
            "name": "Leasing - PHE",
            "color": "#fccc92",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "efc376e0-6389-11ea-b70e-2b7af5964057",
            "name": "Leasing",
            "color": "#81f9af",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ef5e4d50-6389-11ea-864b-f175239df991",
            "head": null,
            "entity": {
                "id": "ef5e4d50-6389-11ea-864b-f175239df991",
                "name": "Thanlyin Estate Development Limited"
            },
            "positions": []
        },
        {
            "id": "5ba99c60-76e6-11ec-927e-b7de77249be3",
            "name": "Laundry & Linen",
            "color": "#ef7791",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "1b321090-74b0-11ec-8975-e7a0b81891d4",
            "name": "Laundry & Linen",
            "color": "#c9f484",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "1548b670-5395-11ea-84d2-97bfe2ff877f",
            "name": "Laundary",
            "color": "#a4fcda",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "f718af80-099f-11ee-b242-2f6a98de5b68",
            "name": "Landscaping",
            "color": "#ffb977",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "1d4e20c0-5395-11ea-bcf9-5f3721c6a71e",
            "name": "Labourdary",
            "color": "#d0a6f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "00c5c420-5394-11ea-936a-d940a5d17221",
            "name": "Laboratory",
            "color": "#a5f7a0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "1a5477f0-76fc-11ec-aa75-5b44ba6c13f5",
            "name": "Laboratory",
            "color": "#fffcaf",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "1d2b06b0-74b0-11ec-93ba-cfad247f3e9f",
            "name": "Laboratory",
            "color": "#e8f489",
            "parent_id": null,
            "head_id": null,
            "entity_id": "a6fa5540-7471-11ec-a497-397343d68f69",
            "head": null,
            "entity": {
                "id": "a6fa5540-7471-11ec-a497-397343d68f69",
                "name": "Pun Hlaing Clinic - North Dagon"
            },
            "positions": []
        },
        {
            "id": "3af1dcd0-74b0-11ec-96c2-4709752803b7",
            "name": "Laboratory",
            "color": "#f48496",
            "parent_id": null,
            "head_id": null,
            "entity_id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
            "head": null,
            "entity": {
                "id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
                "name": "Pun Hlaing Clinic - Taw Win"
            },
            "positions": []
        },
        {
            "id": "49a10410-588b-11ea-a70a-bb3e11a4385b",
            "name": "Laboratory",
            "color": "#f9a8ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "5b065b20-76e6-11ec-8b71-957cbeb15b17",
            "name": "Laboratory",
            "color": "#ffffa8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "95e11930-7472-11ec-a802-6b1655eb7ba9",
            "name": "Laboratory",
            "color": "#77efe7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "ec7b15c0-7957-11ea-a804-f90db51c36a8",
            "name": "Kyay Oh",
            "color": "#c2ff91",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
            "head": null,
            "entity": {
                "id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
                "name": "YKKO Branches"
            },
            "positions": []
        },
        {
            "id": "f1f05a60-a6e4-11ea-a354-f5a7ced51aab",
            "name": "KT Office",
            "color": "#7b7bfc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
            "head": null,
            "entity": {
                "id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
                "name": "Mokan International Company Limited"
            },
            "positions": []
        },
        {
            "id": "e47ccbd0-7957-11ea-9716-79e468333c7c",
            "name": "Kitchen",
            "color": "#f9a9d8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
            "head": null,
            "entity": {
                "id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
                "name": "YKKO Branches"
            },
            "positions": []
        },
        {
            "id": "f26c0e10-4403-11ee-9d94-93f4fb01785c",
            "name": "Kitchen",
            "color": "#b8e5f9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
            "head": null,
            "entity": {
                "id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
                "name": "PRA-FMI Pansea Hotel Development Company Limited"
            },
            "positions": []
        },
        {
            "id": "853286b0-a6e3-11ea-b235-eb6d1d9c4dca",
            "name": "Kitchen",
            "color": "#97dded",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c5f99000-a6e0-11ea-9e41-e130baac2b0d",
            "head": null,
            "entity": {
                "id": "c5f99000-a6e0-11ea-9e41-e130baac2b0d",
                "name": "Keinara Loikaw Company Limited"
            },
            "positions": []
        },
        {
            "id": "a7277420-a6e4-11ea-9011-6ffd7cbb0c27",
            "name": "Kitchen",
            "color": "#86efd3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
            "head": null,
            "entity": {
                "id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
                "name": "Mokan International Company Limited"
            },
            "positions": []
        },
        {
            "id": "1a5df5d0-a6e7-11ea-8427-d9d3f9653a2e",
            "name": "Kitchen",
            "color": "#7693e2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "1081fd00-a6e1-11ea-994c-0dd91a3893a2",
            "head": null,
            "entity": {
                "id": "1081fd00-a6e1-11ea-994c-0dd91a3893a2",
                "name": "Hpa An Traditional Lodge Limited"
            },
            "positions": []
        },
        {
            "id": "3a43b450-a6e6-11ea-8c9b-fb38b98806d8",
            "name": "Kitchen",
            "color": "#faccff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
            "head": null,
            "entity": {
                "id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
                "name": "SM Mawlamyaing Hotel Limited"
            },
            "positions": []
        },
        {
            "id": "3fe7f8a0-a6e5-11ea-b691-234734a6f283",
            "name": "Kitchen",
            "color": "#f9efa9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e8376490-a6e0-11ea-a1bd-a935cdfdb3b5",
            "head": null,
            "entity": {
                "id": "e8376490-a6e0-11ea-a1bd-a935cdfdb3b5",
                "name": "Pun Hlaing Lodge Hotel Management Limited"
            },
            "positions": []
        },
        {
            "id": "4558a120-3a75-11ee-811b-0f2470797666",
            "name": "Kitchen",
            "color": "#fcf3a4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
            "head": null,
            "entity": {
                "id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
                "name": "Chindwin Investments Limited"
            },
            "positions": []
        },
        {
            "id": "a44631c0-4b85-11ed-aa85-43ec8b99870e",
            "name": "Key Accounts",
            "color": "#87f2c2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "ff008da0-aa0c-11ea-ba09-2946a7fbad47",
            "name": "Junction Square",
            "color": "#fcbfc2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "04565320-a6e4-11ea-a377-914b5aa1516d",
            "head": null,
            "entity": {
                "id": "04565320-a6e4-11ea-a377-914b5aa1516d",
                "name": "Blue Ridge Company Limited"
            },
            "positions": []
        },
        {
            "id": "fc96a690-aa0c-11ea-b5df-752018963382",
            "name": "Junction City",
            "color": "#f484ab",
            "parent_id": null,
            "head_id": null,
            "entity_id": "04565320-a6e4-11ea-a377-914b5aa1516d",
            "head": null,
            "entity": {
                "id": "04565320-a6e4-11ea-a377-914b5aa1516d",
                "name": "Blue Ridge Company Limited"
            },
            "positions": []
        },
        {
            "id": "09d581e0-d164-11ec-be02-ad812d955261",
            "name": "JSB",
            "color": "#ddbdfc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "6a86b5f0-2358-11ed-8b43-f7002cdc263c",
            "name": "JJ-PUN",
            "color": "#98f9d2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6a791a50-2358-11ed-ada9-f575e8e780d5",
            "head": null,
            "entity": {
                "id": "6a791a50-2358-11ed-ada9-f575e8e780d5",
                "name": "JJ Pun"
            },
            "positions": []
        },
        {
            "id": "8ca0b940-d163-11ec-b6b9-6904c7753fc8",
            "name": "JCSM ",
            "color": "#99ccfc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "7d5f1860-a70d-11ea-bd10-e5f2d40910a5",
            "name": "IT",
            "color": "#def785",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "8984c5c0-d15d-11ec-a2a6-cb473b4a3400",
            "name": "IT",
            "color": "#b6ccf9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "8aaad3d0-218b-11ea-822c-8b914e18e222",
            "name": "IT",
            "color": "#b9b9f7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6426f810-218b-11ea-85f8-69567965e025",
            "head": null,
            "entity": {
                "id": "6426f810-218b-11ea-85f8-69567965e025",
                "name": "YKKO HO"
            },
            "positions": []
        },
        {
            "id": "8d0b2010-6efa-11ed-9f3e-b181aba80eb1",
            "name": "IT",
            "color": "#afffdc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c3676d00-7879-11ea-854c-437de4b8ca7e",
            "head": null,
            "entity": {
                "id": "c3676d00-7879-11ea-854c-437de4b8ca7e",
                "name": "Meeyahta Development Limited"
            },
            "positions": []
        },
        {
            "id": "95cf5730-03e8-11ed-971d-e5db52752693",
            "name": "IT",
            "color": "#f98be9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "7547f700-03e8-11ed-b1c5-f786ec21e3f4",
            "head": null,
            "entity": {
                "id": "7547f700-03e8-11ed-b1c5-f786ec21e3f4",
                "name": "Atlas Digi Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "4d538860-588b-11ea-a6a6-991feaf776ce",
            "name": "IT",
            "color": "#ef9bd0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "007bcc60-5394-11ea-b15e-e3431110cb14",
            "name": "IT",
            "color": "#f89bff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "0c6647a0-4248-11ee-9a70-379621dcae46",
            "name": "IT",
            "color": "#e7afff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "57d03b00-280d-11ed-bf78-55672245db61",
            "head": null,
            "entity": {
                "id": "57d03b00-280d-11ed-bf78-55672245db61",
                "name": "Digital Loyalty Service Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "15d911e0-03f1-11ed-8bc2-7b7ed6e86ff1",
            "name": "IT",
            "color": "#ffbfde",
            "parent_id": null,
            "head_id": null,
            "entity_id": "fde70220-03f0-11ed-b464-dfb2bc8f513e",
            "head": null,
            "entity": null,
            "positions": []
        },
        {
            "id": "373439e0-5dfc-11ea-a99b-eb85db32e0eb",
            "name": "IT",
            "color": "#af73e2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "1f1418a0-5394-11ea-9182-f7065cc687b1",
            "name": "IPD - Ward 3",
            "color": "#71f7a7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "201d45a0-5394-11ea-8890-75d1557e80ae",
            "name": "IPD - Ward 1",
            "color": "#8e8fe5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "218505e0-5394-11ea-9bb0-d1eb8c9ff6fb",
            "name": "IPD -  Ward 2",
            "color": "#c2d5f9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "1db02760-5394-11ea-96d3-77b2610c29bb",
            "name": "IPD -  Ward 1",
            "color": "#91f7d8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "4e6a1820-e288-11e9-84f5-b9a90bba9b87",
            "name": "Investors Relations",
            "color": "#e7ffa5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bb04f1c0-c28b-11e9-9760-f36fafa5ba7c",
            "head": null,
            "entity": {
                "id": "bb04f1c0-c28b-11e9-9760-f36fafa5ba7c",
                "name": "Yoma Strategic Holdings Ltd."
            },
            "positions": []
        },
        {
            "id": "c00e1a50-6daa-11ea-93da-7b8a53c59520",
            "name": "Investment and Business Development",
            "color": "#ef9ec8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bf8c0340-6daa-11ea-8fcc-a912b7f0bbdb",
            "head": null,
            "entity": {
                "id": "bf8c0340-6daa-11ea-8fcc-a912b7f0bbdb",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "1fc12520-100d-11ee-85e9-0f5b47b0918e",
            "name": "Investment & Operations",
            "color": "#f29787",
            "parent_id": null,
            "head_id": null,
            "entity_id": "d31ea6a0-e27c-11e9-8981-1fea00017ead",
            "head": null,
            "entity": {
                "id": "d31ea6a0-e27c-11e9-8981-1fea00017ead",
                "name": "First Myanmar Investment Public Company Limited"
            },
            "positions": []
        },
        {
            "id": "179b0e50-74b0-11ec-b130-6de030f9d29e",
            "name": "International Patient Care",
            "color": "#dcb7f7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "69393e10-2358-11ed-b8fb-ffc2adca73d1",
            "name": "Internal Audit Division",
            "color": "#f28ea2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
            "head": null,
            "entity": {
                "id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
                "name": "Yoma Bank"
            },
            "positions": []
        },
        {
            "id": "360cbb20-5dfc-11ea-bc53-2569e2a2bda7",
            "name": "Insurance",
            "color": "#6886d8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "63dbe6f0-d162-11ec-a27b-078800e1ab51",
            "name": "INS",
            "color": "#c0f79b",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "8dc75970-a6e5-11ea-b023-7788b1434cf4",
            "name": "Inle Operation",
            "color": "#f7a8f7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "f715e570-a6e0-11ea-86a3-697953368f72",
            "head": null,
            "entity": {
                "id": "f715e570-a6e0-11ea-86a3-697953368f72",
                "name": "Shwe Lay Ta Gun Travels & Tours Company Limited"
            },
            "positions": []
        },
        {
            "id": "eb29de40-d3ee-11eb-8874-f366e7d8a459",
            "name": "Information systems",
            "color": "#ea7ce1",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "91940fa0-76fb-11ec-9a0d-b311710ef7c2",
            "name": "Imaging",
            "color": "#f46eeb",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "931dd2b0-7472-11ec-8ce0-e13f66dd566d",
            "name": "Imaging",
            "color": "#77c6ea",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "3be01670-74b0-11ec-86af-81a0b7567a03",
            "name": "Imaging",
            "color": "#b5f9a2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
            "head": null,
            "entity": {
                "id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
                "name": "Pun Hlaing Clinic - Taw Win"
            },
            "positions": []
        },
        {
            "id": "49040da0-588b-11ea-9590-19a4a74aef53",
            "name": "Imaging",
            "color": "#97f4c1",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "00a09270-5394-11ea-b843-3552075b19a5",
            "name": "Imaging",
            "color": "#abef73",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "1c7ac160-76e6-11ec-b221-5b9a59081c89",
            "name": "Imaging",
            "color": "#edbd87",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "1e35b5e0-74b0-11ec-9bcc-17da53c30f4c",
            "name": "Imaging",
            "color": "#ddfca9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "a6fa5540-7471-11ec-a497-397343d68f69",
            "head": null,
            "entity": {
                "id": "a6fa5540-7471-11ec-a497-397343d68f69",
                "name": "Pun Hlaing Clinic - North Dagon"
            },
            "positions": []
        },
        {
            "id": "146a1ab0-5394-11ea-9a6e-957890649263",
            "name": "ICU",
            "color": "#76a4f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "19a37850-76fc-11ec-bf7d-0b5f74909525",
            "name": "ICT & Innovation",
            "color": "#97f4cf",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "1c326410-76e6-11ec-9fad-ed999fd9c637",
            "name": "ICT & Innovation",
            "color": "#f7aac0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "bc66b240-7488-11ec-939d-b13594c3914a",
            "name": "ICT & Innovation",
            "color": "#85f7f5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "head": null,
            "entity": {
                "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
                "name": "Pun Hlaing Hospitals - Head Office"
            },
            "positions": []
        },
        {
            "id": "d09a07b0-d1b4-11ec-90dd-b11ed09e0f1a",
            "name": "ICT & Innovation",
            "color": "#f986db",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8d2b5bc0-7471-11ec-988e-a167f1c32fab",
            "head": null,
            "entity": {
                "id": "8d2b5bc0-7471-11ec-988e-a167f1c32fab",
                "name": "Emerging Health"
            },
            "positions": []
        },
        {
            "id": "505b3480-74b0-11ec-b3ce-81698a22e711",
            "name": "ICT & Innovation",
            "color": "#fbfcae",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "3f8823e0-a6e3-11ea-8f40-05769303fca8",
            "name": "Human Resources",
            "color": "#7df2ae",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
            "head": null,
            "entity": {
                "id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
                "name": "Chindwin Investments Limited"
            },
            "positions": []
        },
        {
            "id": "407d5d80-aa0d-11ea-bccc-579b890a6a2d",
            "name": "Human Resources",
            "color": "#d873f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "f9074280-9f1c-11ea-b435-7b8d0032473e",
            "head": null,
            "entity": {
                "id": "f9074280-9f1c-11ea-b435-7b8d0032473e",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "41a74ef0-a6e1-11ea-85f7-2daf518ca30e",
            "name": "Human Resources",
            "color": "#a6ed7d",
            "parent_id": null,
            "head_id": null,
            "entity_id": "24985240-a6df-11ea-a052-bf96d8418050",
            "head": null,
            "entity": {
                "id": "24985240-a6df-11ea-a052-bf96d8418050",
                "name": "Asia Holidays Travels & Tours Company Limited"
            },
            "positions": []
        },
        {
            "id": "41e08320-a6e5-11ea-8c90-579a26d75330",
            "name": "Human Resources",
            "color": "#9af4e4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e8376490-a6e0-11ea-a1bd-a935cdfdb3b5",
            "head": null,
            "entity": {
                "id": "e8376490-a6e0-11ea-a1bd-a935cdfdb3b5",
                "name": "Pun Hlaing Lodge Hotel Management Limited"
            },
            "positions": []
        },
        {
            "id": "45707ff0-a6e6-11ea-8906-df7d81dc8406",
            "name": "Human Resources",
            "color": "#a577f9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
            "head": null,
            "entity": {
                "id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
                "name": "SM Mawlamyaing Hotel Limited"
            },
            "positions": []
        },
        {
            "id": "6b939810-2358-11ed-9bef-27a35b02c223",
            "name": "Human Resources",
            "color": "#fc7ec9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "69e29000-2358-11ed-b91c-e3d71238e7f3",
            "head": null,
            "entity": {
                "id": "69e29000-2358-11ed-b91c-e3d71238e7f3",
                "name": "Wave Money"
            },
            "positions": []
        },
        {
            "id": "6f33b8b0-4eec-11ea-b545-37e276a2ea2c",
            "name": "Human Resources",
            "color": "#78ed8c",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6f0f8e30-4eec-11ea-a7b3-372cf4b6aaa8",
            "head": null,
            "entity": {
                "id": "6f0f8e30-4eec-11ea-a7b3-372cf4b6aaa8",
                "name": "SGG Motor Services Limited"
            },
            "positions": []
        },
        {
            "id": "12e8fe90-a70e-11ea-a4de-e18ad64a02cc",
            "name": "Human Resources",
            "color": "#96d5ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "1ec2e790-4404-11ee-ac7c-2fa26e0f7e5a",
            "name": "Human Resources",
            "color": "#819def",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
            "head": null,
            "entity": {
                "id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
                "name": "PRA-FMI Pansea Hotel Development Company Limited"
            },
            "positions": []
        },
        {
            "id": "20a209d0-a93f-11ea-8c89-0df0ed08dd9b",
            "name": "Human Resources",
            "color": "#f3ffaa",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "31b84470-8504-11ee-8879-792ada3a62a2",
            "name": "Human Resources",
            "color": "#e398f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "8a96d4e0-a944-11ea-be44-6bfffc2b1a8c",
            "name": "Human Resources",
            "color": "#9592fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "8c371550-a6e3-11ea-a64d-e1eff93f39bb",
            "name": "Human Resources",
            "color": "#8df4bc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c5f99000-a6e0-11ea-9e41-e130baac2b0d",
            "head": null,
            "entity": {
                "id": "c5f99000-a6e0-11ea-9e41-e130baac2b0d",
                "name": "Keinara Loikaw Company Limited"
            },
            "positions": []
        },
        {
            "id": "952c5dc0-a6e5-11ea-afdb-875e5e9b65b8",
            "name": "Human Resources",
            "color": "#f4abe7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "f715e570-a6e0-11ea-86a3-697953368f72",
            "head": null,
            "entity": {
                "id": "f715e570-a6e0-11ea-86a3-697953368f72",
                "name": "Shwe Lay Ta Gun Travels & Tours Company Limited"
            },
            "positions": []
        },
        {
            "id": "9fdabee0-a6e6-11ea-bfb0-61454671f43d",
            "name": "Human Resources",
            "color": "#ccffb2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "1081fd00-a6e1-11ea-994c-0dd91a3893a2",
            "head": null,
            "entity": {
                "id": "1081fd00-a6e1-11ea-994c-0dd91a3893a2",
                "name": "Hpa An Traditional Lodge Limited"
            },
            "positions": []
        },
        {
            "id": "a3820020-a6e4-11ea-b490-0f992f3c4a56",
            "name": "Human Resources",
            "color": "#f9e7bb",
            "parent_id": null,
            "head_id": null,
            "entity_id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
            "head": null,
            "entity": {
                "id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
                "name": "Mokan International Company Limited"
            },
            "positions": []
        },
        {
            "id": "edc59710-2d1f-11ee-ad8e-b7ca1014dd19",
            "name": "Human Resources",
            "color": "#6dd3e0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "fe8bf4d0-a9bc-11ec-ae18-7d1f1a9d535e",
            "name": "Human Resources",
            "color": "#e4f9a2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
            "head": null,
            "entity": {
                "id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
                "name": "Yoma German Motors Limited"
            },
            "positions": []
        },
        {
            "id": "64bd8e60-d162-11ec-9efa-7b266531f415",
            "name": "HTYOC",
            "color": "#96d9f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "54378b90-588b-11ea-97db-15076077c226",
            "name": "HTY",
            "color": "#97f49f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "f1036a70-51e8-11ee-99f7-b575f883b791",
            "name": "HR & Administration",
            "color": "#8cfc7b",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "9df88b70-a710-11ea-83a8-438d78d91544",
            "name": "HR & Admin (Sein Taung Estate)",
            "color": "#f6ff99",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
            "head": null,
            "entity": {
                "id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
                "name": "Myanmar Agri-Tech Limited"
            },
            "positions": []
        },
        {
            "id": "6f2df110-2d5e-11ec-9e71-0b0273a9cc7a",
            "name": "HR & Admin (Maw Tin Estate)",
            "color": "#eaadf4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
            "head": null,
            "entity": {
                "id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
                "name": "Myanmar Agri-Tech Limited"
            },
            "positions": []
        },
        {
            "id": "9fc90a60-a710-11ea-8e14-b9aadfedd89b",
            "name": "HR & Admin (MAGT - Bago)",
            "color": "#f97e75",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
            "head": null,
            "entity": {
                "id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
                "name": "Myanmar Agri-Tech Limited"
            },
            "positions": []
        },
        {
            "id": "a0cded80-a710-11ea-9c17-bb62ce53ded0",
            "name": "HR & Admin",
            "color": "#e6f486",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
            "head": null,
            "entity": {
                "id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
                "name": "Myanmar Agri-Tech Limited"
            },
            "positions": []
        },
        {
            "id": "3c2e0d20-f86e-11ed-8171-176719c0538c",
            "name": "HR & Admin",
            "color": "#9dbdf9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c3676d00-7879-11ea-854c-437de4b8ca7e",
            "head": null,
            "entity": {
                "id": "c3676d00-7879-11ea-854c-437de4b8ca7e",
                "name": "Meeyahta Development Limited"
            },
            "positions": []
        },
        {
            "id": "4d7da2c0-3cb9-11ee-9d6c-2398789e49b3",
            "name": "HR & Admin",
            "color": "#b0fc88",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ae3fae70-05ae-11ee-851d-f58ba0ecc5ee",
            "head": null,
            "entity": {
                "id": "ae3fae70-05ae-11ee-851d-f58ba0ecc5ee",
                "name": "CLW Development Limited"
            },
            "positions": []
        },
        {
            "id": "4eeb8280-369e-11ee-9709-f5f03568d5e8",
            "name": "HR & Admin",
            "color": "#fcd2ba",
            "parent_id": null,
            "head_id": null,
            "entity_id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
            "head": null,
            "entity": {
                "id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
                "name": "Yoma German Motors Limited"
            },
            "positions": []
        },
        {
            "id": "4f45f7f0-aa0e-11ea-9b60-a1e59b28c5a1",
            "name": "HR & Admin",
            "color": "#f7adf6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "28dec770-fb70-11ec-b844-d98a2ca1637c",
            "name": "HR & Admin",
            "color": "#88fca7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2a019b70-723c-11ea-8b6c-95b5a3245155",
            "head": null,
            "entity": {
                "id": "2a019b70-723c-11ea-8b6c-95b5a3245155",
                "name": "MM Cars Myanmar Ltd."
            },
            "positions": []
        },
        {
            "id": "365c6810-5dfc-11ea-b0fe-59dcbaa827ea",
            "name": "HR & Admin",
            "color": "#7cefb2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "bab46060-c410-11eb-943f-81a9bd7daf29",
            "name": "HR & Admin",
            "color": "#abd0fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ef5e4d50-6389-11ea-864b-f175239df991",
            "head": null,
            "entity": {
                "id": "ef5e4d50-6389-11ea-864b-f175239df991",
                "name": "Thanlyin Estate Development Limited"
            },
            "positions": []
        },
        {
            "id": "e4b44530-8e75-11ea-984b-7d7ff66c6430",
            "name": "HR & Admin",
            "color": "#d699fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "d9b32200-58c7-11eb-89c1-b9902b6ead74",
            "name": "HR",
            "color": "#c8ff7c",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
            "head": null,
            "entity": {
                "id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
                "name": "YKKO Trademarks Company Limited"
            },
            "positions": []
        },
        {
            "id": "fe992010-d15d-11ec-9e50-35f86e908e97",
            "name": "HR",
            "color": "#f9d4b3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "5864c510-588b-11ea-a619-7b7c52dd9240",
            "name": "HR",
            "color": "#b6abfc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "6427de40-218b-11ea-88d3-87a03643430a",
            "name": "HR",
            "color": "#fcbdf2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6426f810-218b-11ea-85f8-69567965e025",
            "head": null,
            "entity": {
                "id": "6426f810-218b-11ea-85f8-69567965e025",
                "name": "YKKO HO"
            },
            "positions": []
        },
        {
            "id": "8f4baf40-a709-11ea-8a3a-39490000d495",
            "name": "HR",
            "color": "#aabfff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "00506420-5394-11ea-877b-7d81e53fdfc9",
            "name": "HR",
            "color": "#9679e0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "0c2aa2e0-74fe-11ec-b7b9-391e8fc27403",
            "name": "Housekeeping",
            "color": "#fcb3e4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ff7fbed0-74fd-11ec-8ad5-8f00002b004e",
            "head": null,
            "entity": {
                "id": "ff7fbed0-74fd-11ec-8ad5-8f00002b004e",
                "name": "Pun Hlaing Hospitals"
            },
            "positions": []
        },
        {
            "id": "101378f0-4404-11ee-bd76-33d2b57cc466",
            "name": "Housekeeping",
            "color": "#8ab8ea",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
            "head": null,
            "entity": {
                "id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
                "name": "PRA-FMI Pansea Hotel Development Company Limited"
            },
            "positions": []
        },
        {
            "id": "12d48830-74b0-11ec-830f-91b089458db4",
            "name": "Housekeeping",
            "color": "#ffccf6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "1b43c7e0-76e6-11ec-b1f3-fb187063d93c",
            "name": "Housekeeping",
            "color": "#f7e983",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "1d9fdd90-74b0-11ec-a839-3f5682f9e5aa",
            "name": "Housekeeping",
            "color": "#8b9ef9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "a6fa5540-7471-11ec-a497-397343d68f69",
            "head": null,
            "entity": {
                "id": "a6fa5540-7471-11ec-a497-397343d68f69",
                "name": "Pun Hlaing Clinic - North Dagon"
            },
            "positions": []
        },
        {
            "id": "36b3dfe0-74b0-11ec-a8a6-7f03fb6106f0",
            "name": "Housekeeping",
            "color": "#cff470",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b09df300-7471-11ec-9bc1-b3b5ffb2261f",
            "head": null,
            "entity": {
                "id": "b09df300-7471-11ec-9bc1-b3b5ffb2261f",
                "name": "Pun Hlaing Clinic - Star City"
            },
            "positions": []
        },
        {
            "id": "3adf1e00-a6e5-11ea-a7aa-e74af81d42f4",
            "name": "Housekeeping",
            "color": "#fcda8f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e8376490-a6e0-11ea-a1bd-a935cdfdb3b5",
            "head": null,
            "entity": {
                "id": "e8376490-a6e0-11ea-a1bd-a935cdfdb3b5",
                "name": "Pun Hlaing Lodge Hotel Management Limited"
            },
            "positions": []
        },
        {
            "id": "3c906e20-74b0-11ec-951a-effb11f12fa6",
            "name": "Housekeeping",
            "color": "#aed6f9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
            "head": null,
            "entity": {
                "id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
                "name": "Pun Hlaing Clinic - Taw Win"
            },
            "positions": []
        },
        {
            "id": "3d9a6910-a6e6-11ea-99cc-bfac094d56be",
            "name": "Housekeeping",
            "color": "#fc997b",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
            "head": null,
            "entity": {
                "id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
                "name": "SM Mawlamyaing Hotel Limited"
            },
            "positions": []
        },
        {
            "id": "468cda70-71cf-11ea-b2f0-a12da7f6a458",
            "name": "Housekeeping",
            "color": "#97f4dd",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "570408d0-588b-11ea-868f-27c89bbfe83c",
            "name": "Housekeeping",
            "color": "#f9d4ac",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "879862b0-a6e3-11ea-ab09-ad16853eeb91",
            "name": "Housekeeping",
            "color": "#f7b7c6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c5f99000-a6e0-11ea-9e41-e130baac2b0d",
            "head": null,
            "entity": {
                "id": "c5f99000-a6e0-11ea-9e41-e130baac2b0d",
                "name": "Keinara Loikaw Company Limited"
            },
            "positions": []
        },
        {
            "id": "90f36740-76fb-11ec-9dff-ef7ddaf69f4e",
            "name": "Housekeeping",
            "color": "#c8fca1",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "9d649ca0-a6e6-11ea-8dae-5fa1bb5c50c0",
            "name": "Housekeeping",
            "color": "#f7ea79",
            "parent_id": null,
            "head_id": null,
            "entity_id": "1081fd00-a6e1-11ea-994c-0dd91a3893a2",
            "head": null,
            "entity": {
                "id": "1081fd00-a6e1-11ea-994c-0dd91a3893a2",
                "name": "Hpa An Traditional Lodge Limited"
            },
            "positions": []
        },
        {
            "id": "a1c5c2a0-a6e4-11ea-bf1c-63146201ce54",
            "name": "Housekeeping",
            "color": "#97fc79",
            "parent_id": null,
            "head_id": null,
            "entity_id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
            "head": null,
            "entity": {
                "id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
                "name": "Mokan International Company Limited"
            },
            "positions": []
        },
        {
            "id": "0132a880-5394-11ea-85e0-4db323d7da61",
            "name": "House Keeping ",
            "color": "#ffa996",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "11a7fb50-74b0-11ec-b402-17098ede2cbf",
            "name": "Hospital Services Management",
            "color": "#f47cc2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "11a063a0-74b0-11ec-8693-31761a75235b",
            "head": null,
            "entity": null,
            "positions": []
        },
        {
            "id": "1a8f1770-76e6-11ec-b241-b521f7781fba",
            "name": "Hospital Services Management",
            "color": "#fccac7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "8f3b1580-7472-11ec-a52e-1b73f9f1b44b",
            "name": "Hospital Services Management",
            "color": "#f176fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "9033c100-76fb-11ec-89c3-3f045e0b1801",
            "name": "Hospital Services Management",
            "color": "#9ae6ea",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "51bbf960-588b-11ea-9e99-63ffb238266c",
            "name": "HO",
            "color": "#94b1e8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "1f8b8410-5395-11ea-a095-4f1cbc288ae3",
            "name": "HK (OT)",
            "color": "#fcddc4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "174240e0-5395-11ea-802e-2d7d775c3f4e",
            "name": "HK",
            "color": "#ff9bc6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "576beb10-2dc9-11ed-847f-837320f8ee8b",
            "name": "HINO Training (YGN)",
            "color": "#8bf3f4",
            "parent_id": "ffef8b60-2e51-11ed-8509-d1d65af61b91",
            "head_id": null,
            "entity_id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
            "head": null,
            "entity": {
                "id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
                "name": "Summit SPA Motors Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "badb95c0-2dc8-11ed-8ebc-81564d271f1d",
            "name": "HINO Spare Parts (YGN)",
            "color": "#dc71f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
            "head": null,
            "entity": {
                "id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
                "name": "Summit SPA Motors Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "f1adc2c0-2e51-11ed-8eba-7db24434b7dd",
            "name": "HINO Spare Parts (MDY)",
            "color": "#9872db",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
            "head": null,
            "entity": {
                "id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
                "name": "Summit SPA Motors Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "b3f20240-2dc9-11ed-8091-6f08b34c8d2d",
            "name": "HINO Service (YGN)",
            "color": "#94d7ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
            "head": null,
            "entity": {
                "id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
                "name": "Summit SPA Motors Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "ffef8b60-2e51-11ed-8509-d1d65af61b91",
            "name": "HINO Service (MDY)",
            "color": "#76f2a4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
            "head": null,
            "entity": {
                "id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
                "name": "Summit SPA Motors Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "b9af50a0-2dc8-11ed-bfaf-73c1949644b8",
            "name": "HINO Sales (YGN)",
            "color": "#f2a287",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
            "head": null,
            "entity": {
                "id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
                "name": "Summit SPA Motors Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "e8ae3b50-2e51-11ed-a41e-a5e40a78bd9f",
            "name": "HINO Sales (MDY)",
            "color": "#72ffa8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
            "head": null,
            "entity": {
                "id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
                "name": "Summit SPA Motors Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "d6804090-2e51-11ed-820c-fd05c468db99",
            "name": "HINO Office (MDY)",
            "color": "#c7c1ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
            "head": null,
            "entity": {
                "id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
                "name": "Summit SPA Motors Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "ba5e75a0-2dc8-11ed-986c-03d1b05f2ed5",
            "name": "HINO Marketing (YGN)",
            "color": "#f9ada4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
            "head": null,
            "entity": {
                "id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
                "name": "Summit SPA Motors Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "9e8a3450-2dc8-11ed-8955-4daa14cb610d",
            "name": "HINO Finance (YGN)",
            "color": "#fcbfda",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
            "head": null,
            "entity": {
                "id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
                "name": "Summit SPA Motors Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "df4d6970-2e51-11ed-89fa-df62bfafc8cc",
            "name": "HINO Finance (MDY)",
            "color": "#b1ffa0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
            "head": null,
            "entity": {
                "id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
                "name": "Summit SPA Motors Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "ba5b7620-2dc8-11ed-afa6-e1025f90ee55",
            "name": "HINO Admin (YGN)",
            "color": "#86efec",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
            "head": null,
            "entity": {
                "id": "8f705660-2dc8-11ed-ba0f-8545abade9de",
                "name": "Summit SPA Motors Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "2cde7dd0-ae32-11ea-9913-d73314bcfa92",
            "name": "Head Office",
            "color": "#af8be5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "402d6230-ae31-11ea-8837-b92649346501",
            "head": null,
            "entity": {
                "id": "402d6230-ae31-11ea-8837-b92649346501",
                "name": "Pun Plus Projects Limited"
            },
            "positions": []
        },
        {
            "id": "d94f7dc0-2bdf-11ec-b47f-59cabf76adf0",
            "name": "Head of Yoma land Office",
            "color": "#eac4fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bf8c0340-6daa-11ea-8fcc-a912b7f0bbdb",
            "head": null,
            "entity": {
                "id": "bf8c0340-6daa-11ea-8fcc-a912b7f0bbdb",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "1bc70a20-5394-11ea-a6d4-7d6d23acf483",
            "name": "HD",
            "color": "#e9bdfc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "146a2b60-5395-11ea-8d29-f1f277f0a8e0",
            "name": "HCA",
            "color": "#afd5f7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "7b3db870-f68f-11ec-8e8c-f39b485d55a4",
            "name": "Group Technology",
            "color": "#f489a2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
            "head": null,
            "entity": {
                "id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "d4dbae00-e27c-11e9-b183-4fcb18d47796",
            "name": "Group Sustainability",
            "color": "#ff8e7c",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c72c6bf0-e27c-11e9-8157-838dd6945639",
            "head": null,
            "entity": {
                "id": "c72c6bf0-e27c-11e9-8157-838dd6945639",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "e631a440-aa06-11ea-a750-a3bfe28b0a63",
            "name": "Group Marketing",
            "color": "#f7a5ca",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8f851150-bf71-11e9-a535-3f4ed1b21b78",
            "head": null,
            "entity": {
                "id": "8f851150-bf71-11e9-a535-3f4ed1b21b78",
                "name": "Serge Pun & Associates (Myanmar) Limited"
            },
            "positions": []
        },
        {
            "id": "396b8020-aa07-11ea-b79e-f53fcbf67e2d",
            "name": "Group Legal",
            "color": "#f279a5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8f91ba20-bf71-11e9-a024-117db0392911",
            "head": null,
            "entity": {
                "id": "8f91ba20-bf71-11e9-a024-117db0392911",
                "name": "Yoma Strategic Holdings Ltd."
            },
            "positions": []
        },
        {
            "id": "8190ac30-f68f-11ec-81e3-8bbf2e1ee639",
            "name": "Group Legal",
            "color": "#a8ffda",
            "parent_id": null,
            "head_id": null,
            "entity_id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
            "head": null,
            "entity": {
                "id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "8fa61fd0-bf71-11e9-a357-cba7bdd6366e",
            "name": "Group HR",
            "color": "#9ff9e3",
            "parent_id": null,
            "head_id": null,
            "entity_id": null,
            "head": null,
            "entity": null,
            "positions": []
        },
        {
            "id": "a0a38a60-f68f-11ec-b1e8-d7f1485e468a",
            "name": "Group HR",
            "color": "#ef8be5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
            "head": null,
            "entity": {
                "id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "c652e9a0-fdef-11ec-976e-339eeee92d1f",
            "name": "Group HR",
            "color": "#f7dcaa",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c6433de0-fdef-11ec-b5b7-233bfe4636ce",
            "head": null,
            "entity": null,
            "positions": []
        },
        {
            "id": "4f3696d0-f68f-11ec-9e57-4b81c5bd99f9",
            "name": "Group Communications and Public Relations",
            "color": "#8cf7a5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
            "head": null,
            "entity": {
                "id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "36be2c00-aa07-11ea-88b7-c742669699af",
            "name": "Group Communications and Public Relations",
            "color": "#cfa9f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8f91ba20-bf71-11e9-a024-117db0392911",
            "head": null,
            "entity": {
                "id": "8f91ba20-bf71-11e9-a024-117db0392911",
                "name": "Yoma Strategic Holdings Ltd."
            },
            "positions": []
        },
        {
            "id": "8b7098c0-f68f-11ec-a7f0-2f105c6d2c94",
            "name": "Group China Desk",
            "color": "#82ffb4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
            "head": null,
            "entity": {
                "id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "abc994d0-aa06-11ea-a9a8-e1f8079077c0",
            "name": "Group Ambassador",
            "color": "#fccf8f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8f851150-bf71-11e9-a535-3f4ed1b21b78",
            "head": null,
            "entity": {
                "id": "8f851150-bf71-11e9-a535-3f4ed1b21b78",
                "name": "Serge Pun & Associates (Myanmar) Limited"
            },
            "positions": []
        },
        {
            "id": "57bcd6d0-f68f-11ec-8a00-9324890c3804",
            "name": "Group Administration",
            "color": "#fc9299",
            "parent_id": null,
            "head_id": null,
            "entity_id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
            "head": null,
            "entity": {
                "id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "6e448090-f68f-11ec-8994-8f99169c1db8",
            "name": "Government Relations",
            "color": "#9ff279",
            "parent_id": null,
            "head_id": null,
            "entity_id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
            "head": null,
            "entity": {
                "id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "1f1535a0-186a-11eb-b99a-354f797b22d5",
            "name": "Government Relations",
            "color": "#89f97a",
            "parent_id": null,
            "head_id": null,
            "entity_id": "1f0f53e0-186a-11eb-af2d-6720d136fc11",
            "head": null,
            "entity": {
                "id": "1f0f53e0-186a-11eb-af2d-6720d136fc11",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "12e887c0-584f-11ee-8b5c-957b9f8d3c19",
            "name": "Golf Course Operation",
            "color": "#b18fe8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ef5e4d50-6389-11ea-864b-f175239df991",
            "head": null,
            "entity": {
                "id": "ef5e4d50-6389-11ea-864b-f175239df991",
                "name": "Thanlyin Estate Development Limited"
            },
            "positions": []
        },
        {
            "id": "1a80c490-5f50-11ea-a1eb-958d662725a0",
            "name": "Golf Course Operation",
            "color": "#93f2b3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "3ce31100-5f50-11ea-a736-fbc6e5fb2d8e",
            "name": "Golf Course Landscape and Maintenance",
            "color": "#efcc7a",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "2ec09ae0-fdb4-11ec-be50-e7beda5c597d",
            "name": "Golf Course",
            "color": "#f6bbf9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ef5e4d50-6389-11ea-864b-f175239df991",
            "head": null,
            "entity": {
                "id": "ef5e4d50-6389-11ea-864b-f175239df991",
                "name": "Thanlyin Estate Development Limited"
            },
            "positions": []
        },
        {
            "id": "d3bc0060-8853-11ea-9913-7d86d10079d8",
            "name": "GM Office",
            "color": "#ffd2cc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c3676d00-7879-11ea-854c-437de4b8ca7e",
            "head": null,
            "entity": {
                "id": "c3676d00-7879-11ea-854c-437de4b8ca7e",
                "name": "Meeyahta Development Limited"
            },
            "positions": []
        },
        {
            "id": "636a3270-d164-11ec-bd23-59737903b2ab",
            "name": "GKMY",
            "color": "#ed87d0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "1976f5e0-76e6-11ec-b436-db4dcddc6645",
            "name": "General Support Services",
            "color": "#8adff2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "b14a7220-cc7d-11ec-8bf3-ef9ccc8e5d58",
            "name": "General Support Services",
            "color": "#fcc2cc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "163a0a50-5394-11ea-ad6c-c7be698e176d",
            "name": "Front Office Department",
            "color": "#e0ed6f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "18f6b790-76e6-11ec-9c4d-150f125b4642",
            "name": "Front Office",
            "color": "#eda56a",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "1ca5b300-74b0-11ec-8c05-6b81d5df6143",
            "name": "Front Office",
            "color": "#fcd9ab",
            "parent_id": null,
            "head_id": null,
            "entity_id": "a6fa5540-7471-11ec-a497-397343d68f69",
            "head": null,
            "entity": {
                "id": "a6fa5540-7471-11ec-a497-397343d68f69",
                "name": "Pun Hlaing Clinic - North Dagon"
            },
            "positions": []
        },
        {
            "id": "3801dd40-74b0-11ec-93f0-8d2d5eca6ca2",
            "name": "Front Office",
            "color": "#f9ea84",
            "parent_id": null,
            "head_id": null,
            "entity_id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
            "head": null,
            "entity": {
                "id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
                "name": "Pun Hlaing Clinic - Taw Win"
            },
            "positions": []
        },
        {
            "id": "3eb58430-a6e5-11ea-902e-670aaa8eec4c",
            "name": "Front Office",
            "color": "#8fa4ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e8376490-a6e0-11ea-a1bd-a935cdfdb3b5",
            "head": null,
            "entity": {
                "id": "e8376490-a6e0-11ea-a1bd-a935cdfdb3b5",
                "name": "Pun Hlaing Lodge Hotel Management Limited"
            },
            "positions": []
        },
        {
            "id": "41872ed0-a6e6-11ea-9d7c-237d6835857a",
            "name": "Front Office",
            "color": "#abe1fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
            "head": null,
            "entity": {
                "id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
                "name": "SM Mawlamyaing Hotel Limited"
            },
            "positions": []
        },
        {
            "id": "575e9de0-588b-11ea-a670-4398e4a55f01",
            "name": "Front Office",
            "color": "#93f2c7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "67c5e820-b4f7-11ea-ad8d-47d21657af60",
            "name": "Front Office",
            "color": "#ceb5f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bc5724f0-a6e0-11ea-b1d9-45a2583fec96",
            "head": null,
            "entity": null,
            "positions": []
        },
        {
            "id": "eadab870-4403-11ee-a7db-8ff875075be3",
            "name": "Front Office",
            "color": "#c4fafc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
            "head": null,
            "entity": {
                "id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
                "name": "PRA-FMI Pansea Hotel Development Company Limited"
            },
            "positions": []
        },
        {
            "id": "81e0ae80-a6e3-11ea-9f6c-8b2f58cf9080",
            "name": "Front Office",
            "color": "#f77ebc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c5f99000-a6e0-11ea-9e41-e130baac2b0d",
            "head": null,
            "entity": {
                "id": "c5f99000-a6e0-11ea-9e41-e130baac2b0d",
                "name": "Keinara Loikaw Company Limited"
            },
            "positions": []
        },
        {
            "id": "88736600-7472-11ec-a449-cbd282700fa4",
            "name": "Front Office",
            "color": "#6bef6e",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "8f8898f0-76fb-11ec-bc31-f32ce8def10d",
            "name": "Front Office",
            "color": "#69b8e5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "9af70340-a6e6-11ea-bb21-252777d41488",
            "name": "Front Office",
            "color": "#96f984",
            "parent_id": null,
            "head_id": null,
            "entity_id": "1081fd00-a6e1-11ea-994c-0dd91a3893a2",
            "head": null,
            "entity": {
                "id": "1081fd00-a6e1-11ea-994c-0dd91a3893a2",
                "name": "Hpa An Traditional Lodge Limited"
            },
            "positions": []
        },
        {
            "id": "ac0c2300-a6e4-11ea-bc97-0b17feffd43d",
            "name": "Front Office",
            "color": "#9693ea",
            "parent_id": null,
            "head_id": null,
            "entity_id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
            "head": null,
            "entity": {
                "id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
                "name": "Mokan International Company Limited"
            },
            "positions": []
        },
        {
            "id": "c8c128d0-aa0c-11ea-b17e-a7ee3d067a60",
            "name": "Front of House",
            "color": "#f3f489",
            "parent_id": null,
            "head_id": null,
            "entity_id": "f8772340-a6e3-11ea-bc24-65ba517e4e0a",
            "head": null,
            "entity": {
                "id": "f8772340-a6e3-11ea-bc24-65ba517e4e0a",
                "name": "Altai Myanmar Company Limited"
            },
            "positions": []
        },
        {
            "id": "5688f890-74b0-11ec-98a2-d5a19e327f69",
            "name": "Food & Beverage",
            "color": "#a7f9c7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
            "head": null,
            "entity": {
                "id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
                "name": "Pun Hlaing Clinic - Taw Win"
            },
            "positions": []
        },
        {
            "id": "0b5083c0-74b0-11ec-9ee8-5d977ea9b130",
            "name": "Food & Beverage",
            "color": "#f29dde",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "8e706140-76fb-11ec-8a78-5719f92868f8",
            "name": "Food & Beverage",
            "color": "#93f2e2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "15d776c0-5395-11ea-b02a-49cfeed8636c",
            "name": "FO",
            "color": "#b4f285",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "6d83da40-aa07-11ea-9015-1d76398fd1f6",
            "name": "FMI Flotilla",
            "color": "#f282d2",
            "parent_id": null,
            "head_id": "8968ad60-d15d-11ec-b0b0-37042c845dcc",
            "entity_id": "0ab1b000-e4ec-11e9-a4ca-d72e2946fec3",
            "head": {
                "id": "8968ad60-d15d-11ec-b0b0-37042c845dcc",
                "name": " May Thawdar Naing",
                "known_as": "May"
            },
            "entity": {
                "id": "0ab1b000-e4ec-11e9-a4ca-d72e2946fec3",
                "name": "F M I Flotilla Company Limited"
            },
            "positions": [
                {
                    "id": "84129f50-bf71-11e9-88b2-8f33e16c9645",
                    "name": "HR Manager",
                    "is_old": null
                }
            ]
        },
        {
            "id": "e99be250-7957-11ea-b189-2b3bbfa0bea0",
            "name": "Floor",
            "color": "#9ffccc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
            "head": null,
            "entity": {
                "id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
                "name": "YKKO Branches"
            },
            "positions": []
        },
        {
            "id": "3a9aff40-a70e-11ea-a8f2-5d49dd01c096",
            "name": "Fleet & Distribution Metro",
            "color": "#72ea90",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "97b4d340-aa0d-11ea-915b-f714cfec8e41",
            "name": "Fleet & Distribution",
            "color": "#f99d90",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "370fa200-5dfc-11ea-a4a0-9723bb2ac208",
            "name": "Financial Risk Management",
            "color": "#daef70",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "c802a2e0-fb70-11ec-ad31-257e9fd767d8",
            "name": "Financial Accounting",
            "color": "#f097f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e386d7a0-fb6c-11ec-bb91-0f1408eee5d1",
            "head": null,
            "entity": {
                "id": "e386d7a0-fb6c-11ec-bb91-0f1408eee5d1",
                "name": "MMCM Mandalay Limited"
            },
            "positions": []
        },
        {
            "id": "67309f30-fb70-11ec-8c4d-d559348f02bf",
            "name": "Financial Accounting",
            "color": "#84e2ed",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2a019b70-723c-11ea-8b6c-95b5a3245155",
            "head": null,
            "entity": {
                "id": "2a019b70-723c-11ea-8b6c-95b5a3245155",
                "name": "MM Cars Myanmar Ltd."
            },
            "positions": []
        },
        {
            "id": "3c8480c0-a70e-11ea-814f-93a2c3e228c7",
            "name": "Finance Metro",
            "color": "#6ae88c",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "6abcd040-2358-11ed-a302-8d920a4ccf9b",
            "name": "Finance & Treasury Division",
            "color": "#91f2c1",
            "parent_id": null,
            "head_id": null,
            "entity_id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
            "head": null,
            "entity": {
                "id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
                "name": "Yoma Bank"
            },
            "positions": []
        },
        {
            "id": "6b5e01b0-2358-11ed-b003-d99865b52ca3",
            "name": "Finance & Operations",
            "color": "#a5ffde",
            "parent_id": null,
            "head_id": null,
            "entity_id": "69e29000-2358-11ed-b91c-e3d71238e7f3",
            "head": null,
            "entity": {
                "id": "69e29000-2358-11ed-b91c-e3d71238e7f3",
                "name": "Wave Money"
            },
            "positions": []
        },
        {
            "id": "e5596630-0900-11ee-b2bf-45ce03601c3a",
            "name": "Finance (YGN)",
            "color": "#efb3fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "9e8bb710-a710-11ea-95cf-bba4083cca64",
            "name": "Finance (Sein Taung Estate)",
            "color": "#83d0ea",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
            "head": null,
            "entity": {
                "id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
                "name": "Myanmar Agri-Tech Limited"
            },
            "positions": []
        },
        {
            "id": "bbcad760-7488-11ec-9533-11ee426240d6",
            "name": "Finance - Treasury",
            "color": "#fff1c6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "head": null,
            "entity": {
                "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
                "name": "Pun Hlaing Hospitals - Head Office"
            },
            "positions": []
        },
        {
            "id": "0bafd790-74b0-11ec-885a-9332cb92249c",
            "name": "Finance - Treasury",
            "color": "#f9c3b3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "3e7d68c0-a94e-11ec-a77b-61e9c928cdc4",
            "name": "Finance - Treasury",
            "color": "#b0fc76",
            "parent_id": null,
            "head_id": null,
            "entity_id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
            "head": null,
            "entity": {
                "id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
                "name": "Pun Hlaing Clinic - Taw Win"
            },
            "positions": []
        },
        {
            "id": "3e43e2d0-a94e-11ec-9724-655ecc47c8e1",
            "name": "Finance - Accounts",
            "color": "#9187ed",
            "parent_id": null,
            "head_id": null,
            "entity_id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
            "head": null,
            "entity": {
                "id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
                "name": "Pun Hlaing Clinic - Taw Win"
            },
            "positions": []
        },
        {
            "id": "0be51660-74b0-11ec-9851-bfa017713e0d",
            "name": "Finance - Accounts",
            "color": "#85fce6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "18483250-76e6-11ec-8496-7349eba3e3b0",
            "name": "Finance - Accounts",
            "color": "#85ff7a",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "017c1c20-5394-11ea-aa6e-19f06bb5d3bd",
            "name": "Finance ",
            "color": "#9cfce2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "0b42e430-8504-11ee-b169-a3012212b60f",
            "name": "Finance",
            "color": "#fcdf8f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "15a835d0-5ecb-11ea-91c8-4f193301bf7b",
            "name": "Finance",
            "color": "#f7767f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bc0ea100-c28b-11e9-b0a5-91e0913aed65",
            "head": null,
            "entity": {
                "id": "bc0ea100-c28b-11e9-b0a5-91e0913aed65",
                "name": "Serge Pun & Associates (Myanmar) Limited"
            },
            "positions": []
        },
        {
            "id": "1aa8b520-dd10-11ea-81b6-1dd3c902891d",
            "name": "Finance",
            "color": "#aea6ed",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "20744020-186a-11eb-b737-8f1da48bfa4c",
            "name": "Finance",
            "color": "#b094fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "1f0f53e0-186a-11eb-af2d-6720d136fc11",
            "head": null,
            "entity": {
                "id": "1f0f53e0-186a-11eb-af2d-6720d136fc11",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "2176c6f0-aa0d-11ea-8ec6-99a5da696714",
            "name": "Finance",
            "color": "#f9a2f1",
            "parent_id": null,
            "head_id": null,
            "entity_id": "f9074280-9f1c-11ea-b435-7b8d0032473e",
            "head": null,
            "entity": {
                "id": "f9074280-9f1c-11ea-b435-7b8d0032473e",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "24c581c0-4404-11ee-a077-57bd10cd0831",
            "name": "Finance",
            "color": "#e6fc79",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
            "head": null,
            "entity": {
                "id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
                "name": "PRA-FMI Pansea Hotel Development Company Limited"
            },
            "positions": []
        },
        {
            "id": "2f94f380-5f50-11ea-be9a-456fd7cd202a",
            "name": "Finance",
            "color": "#abd4f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "3557bcb0-065f-11eb-a7a8-b3d047920a09",
            "name": "Finance",
            "color": "#ffbaca",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3556a3e0-065f-11eb-97ac-ff901d1205c7",
            "head": null,
            "entity": {
                "id": "3556a3e0-065f-11eb-97ac-ff901d1205c7",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "36834cc0-5dfc-11ea-b74a-31d4b92123ff",
            "name": "Finance",
            "color": "#fca6be",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "bb3f4ca0-7488-11ec-a7f2-5b22acda2db7",
            "name": "Finance",
            "color": "#83f7b9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "head": null,
            "entity": {
                "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
                "name": "Pun Hlaing Hospitals - Head Office"
            },
            "positions": []
        },
        {
            "id": "c090f5e0-4472-11eb-93c5-496f371ddfac",
            "name": "Finance",
            "color": "#ff727c",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c0190630-4472-11eb-9111-1723cb8f99bb",
            "head": null,
            "entity": {
                "id": "c0190630-4472-11eb-9111-1723cb8f99bb",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "d6b07d40-e27c-11e9-92e7-53b4e50cb6e2",
            "name": "Finance",
            "color": "#f9f77c",
            "parent_id": null,
            "head_id": null,
            "entity_id": "d31ea6a0-e27c-11e9-8981-1fea00017ead",
            "head": null,
            "entity": {
                "id": "d31ea6a0-e27c-11e9-8981-1fea00017ead",
                "name": "First Myanmar Investment Public Company Limited"
            },
            "positions": []
        },
        {
            "id": "e665ab50-7957-11ea-b2f1-8182f10dcf7d",
            "name": "Finance",
            "color": "#f47f9a",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
            "head": null,
            "entity": {
                "id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
                "name": "YKKO Branches"
            },
            "positions": []
        },
        {
            "id": "f0bd2060-6389-11ea-a643-670dc7ce7020",
            "name": "Finance",
            "color": "#7475e8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ef5e4d50-6389-11ea-864b-f175239df991",
            "head": null,
            "entity": {
                "id": "ef5e4d50-6389-11ea-864b-f175239df991",
                "name": "Thanlyin Estate Development Limited"
            },
            "positions": []
        },
        {
            "id": "71bd5220-d0e7-11ec-babe-29b5cc72d27b",
            "name": "Finance",
            "color": "#74d6ed",
            "parent_id": null,
            "head_id": null,
            "entity_id": "58c76320-d0e7-11ec-84e5-f98c1f989ebe",
            "head": null,
            "entity": {
                "id": "58c76320-d0e7-11ec-84e5-f98c1f989ebe",
                "name": "SAUNG NAING FOOD AND BEVERAGE COMPANY LIMITED"
            },
            "positions": []
        },
        {
            "id": "814cc650-a709-11ea-9703-5309bdfbc8a4",
            "name": "Finance",
            "color": "#f99fa8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "8b30b820-a6e3-11ea-bfde-e99b90f6b94e",
            "name": "Finance",
            "color": "#dec1ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c5f99000-a6e0-11ea-9e41-e130baac2b0d",
            "head": null,
            "entity": {
                "id": "c5f99000-a6e0-11ea-9e41-e130baac2b0d",
                "name": "Keinara Loikaw Company Limited"
            },
            "positions": []
        },
        {
            "id": "8bd39090-218b-11ea-b4fb-c75e4cccedc6",
            "name": "Finance",
            "color": "#f4ec73",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6426f810-218b-11ea-85f8-69567965e025",
            "head": null,
            "entity": {
                "id": "6426f810-218b-11ea-85f8-69567965e025",
                "name": "YKKO HO"
            },
            "positions": []
        },
        {
            "id": "8dc4be70-76fb-11ec-9e09-cfbc45231373",
            "name": "Finance",
            "color": "#bdffb2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "98199dc0-2482-11ee-a72a-3dd3ca1fd7a9",
            "name": "Finance",
            "color": "#fffaa0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "9cb5bf90-a710-11ea-8534-4fd37d23dec2",
            "name": "Finance",
            "color": "#dcb3fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
            "head": null,
            "entity": {
                "id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
                "name": "Myanmar Agri-Tech Limited"
            },
            "positions": []
        },
        {
            "id": "9eb46320-a6e6-11ea-9a4e-cd65168e1869",
            "name": "Finance",
            "color": "#97f970",
            "parent_id": null,
            "head_id": null,
            "entity_id": "1081fd00-a6e1-11ea-994c-0dd91a3893a2",
            "head": null,
            "entity": {
                "id": "1081fd00-a6e1-11ea-994c-0dd91a3893a2",
                "name": "Hpa An Traditional Lodge Limited"
            },
            "positions": []
        },
        {
            "id": "a55fb010-9035-11ea-a687-b5f269ab3c18",
            "name": "Finance",
            "color": "#a0f7b2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "acefc6b0-a6e4-11ea-81b1-bf984300542d",
            "name": "Finance",
            "color": "#79cbe0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
            "head": null,
            "entity": {
                "id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
                "name": "Mokan International Company Limited"
            },
            "positions": []
        },
        {
            "id": "3af5a340-a6e3-11ea-bc23-eb9151717533",
            "name": "Finance",
            "color": "#9093f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
            "head": null,
            "entity": {
                "id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
                "name": "Chindwin Investments Limited"
            },
            "positions": []
        },
        {
            "id": "40fdd6c0-a6e5-11ea-897d-d50c29895cd3",
            "name": "Finance",
            "color": "#87f285",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e8376490-a6e0-11ea-a1bd-a935cdfdb3b5",
            "head": null,
            "entity": {
                "id": "e8376490-a6e0-11ea-a1bd-a935cdfdb3b5",
                "name": "Pun Hlaing Lodge Hotel Management Limited"
            },
            "positions": []
        },
        {
            "id": "4241bf30-05af-11ee-974d-d75a24d17e1e",
            "name": "Finance",
            "color": "#69ea70",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ae3fae70-05ae-11ee-851d-f58ba0ecc5ee",
            "head": null,
            "entity": {
                "id": "ae3fae70-05ae-11ee-851d-f58ba0ecc5ee",
                "name": "CLW Development Limited"
            },
            "positions": []
        },
        {
            "id": "440a8ca0-a6e6-11ea-8b25-a106729410b7",
            "name": "Finance",
            "color": "#ea699b",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
            "head": null,
            "entity": {
                "id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
                "name": "SM Mawlamyaing Hotel Limited"
            },
            "positions": []
        },
        {
            "id": "4c3e2460-1019-11ea-b7de-4dcbb07ee495",
            "name": "Finance",
            "color": "#72eac0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bb04f1c0-c28b-11e9-9760-f36fafa5ba7c",
            "head": null,
            "entity": {
                "id": "bb04f1c0-c28b-11e9-9760-f36fafa5ba7c",
                "name": "Yoma Strategic Holdings Ltd."
            },
            "positions": []
        },
        {
            "id": "4d327a60-aa0e-11ea-bc93-2d7cb30f0d25",
            "name": "Finance",
            "color": "#88eefc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "50ab0b70-588b-11ea-95d4-171c77eb2ff9",
            "name": "FInance",
            "color": "#fcd5c4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "5c5c4280-a942-11ea-ae03-c719605b4b4e",
            "name": "Finance",
            "color": "#b4a9fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c3676d00-7879-11ea-854c-437de4b8ca7e",
            "head": null,
            "entity": {
                "id": "c3676d00-7879-11ea-854c-437de4b8ca7e",
                "name": "Meeyahta Development Limited"
            },
            "positions": []
        },
        {
            "id": "647903e0-218b-11ea-9dce-6db4214ea0a0",
            "name": "Finance",
            "color": "#81cbe8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6426f810-218b-11ea-85f8-69567965e025",
            "head": null,
            "entity": {
                "id": "6426f810-218b-11ea-85f8-69567965e025",
                "name": "YKKO HO"
            },
            "positions": []
        },
        {
            "id": "6df855d0-4eec-11ea-9a62-fd1df2f21fd4",
            "name": "Finance",
            "color": "#ff9ea6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6df76320-4eec-11ea-94b2-cbb2c0a4d8c2",
            "head": null,
            "entity": {
                "id": "6df76320-4eec-11ea-94b2-cbb2c0a4d8c2",
                "name": "Successful Goal Trading Company Limited"
            },
            "positions": []
        },
        {
            "id": "7029f420-4eec-11ea-a808-6132d231dcf1",
            "name": "Finance",
            "color": "#f989d4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
            "head": null,
            "entity": {
                "id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
                "name": "Yoma German Motors Limited"
            },
            "positions": []
        },
        {
            "id": "46b4d2b0-58c8-11eb-9c4a-bf2e21e91a5e",
            "name": "FIN",
            "color": "#f4a1be",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
            "head": null,
            "entity": {
                "id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
                "name": "YKKO Trademarks Company Limited"
            },
            "positions": []
        },
        {
            "id": "fdc6ae90-d15d-11ec-8886-5d00b5a1ecda",
            "name": "FIN",
            "color": "#a2f9c1",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "f475a010-8524-11ee-a2f9-ffa8b2c0022d",
            "name": "Field Operation Department",
            "color": "#9cfcb7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "cbb57820-8524-11ee-80d1-43f087c68393",
            "head": null,
            "entity": null,
            "positions": []
        },
        {
            "id": "b83f8ac0-9353-11ee-a5c9-55137e66e00a",
            "name": "Field Operation Department",
            "color": "#6edfe5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "75b53f80-9353-11ee-9d93-1f64d36b1068",
            "head": null,
            "entity": {
                "id": "75b53f80-9353-11ee-9d93-1f64d36b1068",
                "name": "Yoma Elevator Company Limited"
            },
            "positions": []
        },
        {
            "id": "3609eb60-c298-11eb-963a-a970b86ce1e8",
            "name": "Fast Flow Warehouse",
            "color": "#70ea7e",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "01e979c0-5394-11ea-a387-0b416f26b9e1",
            "name": "Facility & Administration ",
            "color": "#6befbd",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "09f313d0-4404-11ee-9895-17048546c11e",
            "name": "F&B",
            "color": "#c4ed74",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
            "head": null,
            "entity": {
                "id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
                "name": "PRA-FMI Pansea Hotel Development Company Limited"
            },
            "positions": []
        },
        {
            "id": "1a62b160-5394-11ea-b017-ade009e241b9",
            "name": "F& B",
            "color": "#defca4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "0a7262c0-8504-11ee-bb68-4b5041d11d16",
            "name": "F & B",
            "color": "#bbfca4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "38d76ea0-a6e5-11ea-ad9a-5fbc826c582b",
            "name": "F & B",
            "color": "#70f4b4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e8376490-a6e0-11ea-a1bd-a935cdfdb3b5",
            "head": null,
            "entity": {
                "id": "e8376490-a6e0-11ea-a1bd-a935cdfdb3b5",
                "name": "Pun Hlaing Lodge Hotel Management Limited"
            },
            "positions": []
        },
        {
            "id": "86744ba0-a6e3-11ea-b81e-5bfde003c3d0",
            "name": "F & B",
            "color": "#73c3e2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c5f99000-a6e0-11ea-9e41-e130baac2b0d",
            "head": null,
            "entity": {
                "id": "c5f99000-a6e0-11ea-9e41-e130baac2b0d",
                "name": "Keinara Loikaw Company Limited"
            },
            "positions": []
        },
        {
            "id": "9c260820-a6e6-11ea-a4cf-a5bcf9636343",
            "name": "F & B",
            "color": "#fffbb5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "1081fd00-a6e1-11ea-994c-0dd91a3893a2",
            "head": null,
            "entity": {
                "id": "1081fd00-a6e1-11ea-994c-0dd91a3893a2",
                "name": "Hpa An Traditional Lodge Limited"
            },
            "positions": []
        },
        {
            "id": "a60a0b80-a6e4-11ea-8152-a379246c83d5",
            "name": "F & B",
            "color": "#bfef73",
            "parent_id": null,
            "head_id": null,
            "entity_id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
            "head": null,
            "entity": {
                "id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
                "name": "Mokan International Company Limited"
            },
            "positions": []
        },
        {
            "id": "40501090-a6e6-11ea-bc07-8f8b99770371",
            "name": "F & B",
            "color": "#f293b0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
            "head": null,
            "entity": {
                "id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
                "name": "SM Mawlamyaing Hotel Limited"
            },
            "positions": []
        },
        {
            "id": "4d226520-588b-11ea-b188-0f359482825e",
            "name": "F & B",
            "color": "#f9d8ae",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "fd2aec20-52ae-11ee-bede-cdbad40e2c13",
            "name": "F & B",
            "color": "#e5f287",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "ddb3af10-16c1-11eb-9ba1-03bbd9ff037f",
            "name": "External Relations",
            "color": "#87ff8b",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "be05d060-13aa-11ec-80b5-45834a6224f2",
            "name": "Executive Office",
            "color": "#fc9f9f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b3fe1d10-13aa-11ec-8fb8-45ca7d3d34be",
            "head": null,
            "entity": {
                "id": "b3fe1d10-13aa-11ec-8fb8-45ca7d3d34be",
                "name": "Serge Pun & Associates (Myanmar) Limited"
            },
            "positions": []
        },
        {
            "id": "ced81bd0-a9f5-11ea-b980-0b12e3c8089b",
            "name": "Executive Office",
            "color": "#f3f785",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5e503fa0-71ce-11ea-9dd5-eb2d7e58002d",
            "head": null,
            "entity": {
                "id": "5e503fa0-71ce-11ea-9dd5-eb2d7e58002d",
                "name": "Zuari Yoma Agri Solutions Limited"
            },
            "positions": []
        },
        {
            "id": "d165a990-330a-11ec-8286-01b154d69a8b",
            "name": "Executive Office",
            "color": "#a0f7b7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "f77f1390-a70f-11ea-b5da-ad28a6a1d45e",
            "head": null,
            "entity": {
                "id": "f77f1390-a70f-11ea-b5da-ad28a6a1d45e",
                "name": "Yoma Agricultural & Logistics Holding Pte. Ltd."
            },
            "positions": []
        },
        {
            "id": "d31f8000-e27c-11e9-9393-9d5fe7f84bca",
            "name": "Executive Office",
            "color": "#f9d2b1",
            "parent_id": null,
            "head_id": null,
            "entity_id": "d31ea6a0-e27c-11e9-8981-1fea00017ead",
            "head": null,
            "entity": {
                "id": "d31ea6a0-e27c-11e9-8981-1fea00017ead",
                "name": "First Myanmar Investment Public Company Limited"
            },
            "positions": []
        },
        {
            "id": "f8cbc910-592b-11ea-997b-e75ecbf9d8df",
            "name": "Executive Office",
            "color": "#f9d8b8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
            "head": null,
            "entity": {
                "id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
                "name": "Yoma German Motors Limited"
            },
            "positions": []
        },
        {
            "id": "7144a750-a70e-11ea-824e-1b289e638bc8",
            "name": "Executive Office",
            "color": "#f293c4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "72afc610-a92e-11ea-9c78-bd7b03674898",
            "name": "Executive Office",
            "color": "#a0a2ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bc0ea100-c28b-11e9-b0a5-91e0913aed65",
            "head": null,
            "entity": {
                "id": "bc0ea100-c28b-11e9-b0a5-91e0913aed65",
                "name": "Serge Pun & Associates (Myanmar) Limited"
            },
            "positions": []
        },
        {
            "id": "921aa670-a6e4-11ea-8dc5-71b4a7020030",
            "name": "Executive Office",
            "color": "#ebf287",
            "parent_id": null,
            "head_id": null,
            "entity_id": "d13bc920-a6e0-11ea-9246-05d1bf6d042b",
            "head": null,
            "entity": {
                "id": "d13bc920-a6e0-11ea-9246-05d1bf6d042b",
                "name": "Memories Group Limited"
            },
            "positions": []
        },
        {
            "id": "96a5f460-a709-11ea-9f1e-b9cf7ddd072c",
            "name": "Executive Office",
            "color": "#90f4e9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "97710d70-e029-11ed-8d8d-b3a946e71b65",
            "name": "Executive Office",
            "color": "#f2fca6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "57d03b00-280d-11ed-bf78-55672245db61",
            "head": null,
            "entity": {
                "id": "57d03b00-280d-11ed-bf78-55672245db61",
                "name": "Digital Loyalty Service Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "9bcbf5e0-a6e5-11ea-929e-3720fde8a4e2",
            "name": "Executive Office",
            "color": "#ed95bc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "aa164030-e6f2-11ea-88f0-61c3d5fca040",
            "name": "Executive Office",
            "color": "#93ffcb",
            "parent_id": null,
            "head_id": null,
            "entity_id": "941ff580-e6f2-11ea-a2fb-49a2cf897723",
            "head": null,
            "entity": {
                "id": "941ff580-e6f2-11ea-a2fb-49a2cf897723",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "abe859e0-aba3-11ea-a6c1-592020a1a5ba",
            "name": "Executive Office",
            "color": "#846de0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "abe2fb70-aba3-11ea-8451-fb625cf17775",
            "head": null,
            "entity": {
                "id": "abe2fb70-aba3-11ea-8451-fb625cf17775",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "042d0460-1398-11ec-bcd4-3f7e38e12884",
            "name": "Executive Office",
            "color": "#f9c0ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bb04f1c0-c28b-11e9-9760-f36fafa5ba7c",
            "head": null,
            "entity": {
                "id": "bb04f1c0-c28b-11e9-9760-f36fafa5ba7c",
                "name": "Yoma Strategic Holdings Ltd."
            },
            "positions": []
        },
        {
            "id": "05d1d0e0-723e-11ea-9a59-4be7e92ed27f",
            "name": "Executive Office",
            "color": "#ffc1e0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2a019b70-723c-11ea-8b6c-95b5a3245155",
            "head": null,
            "entity": {
                "id": "2a019b70-723c-11ea-8b6c-95b5a3245155",
                "name": "MM Cars Myanmar Ltd."
            },
            "positions": []
        },
        {
            "id": "0e558540-723e-11ea-9c8b-570f3da8e6c2",
            "name": "Executive Office",
            "color": "#d0ffaa",
            "parent_id": null,
            "head_id": null,
            "entity_id": "301810a0-723c-11ea-b4ee-6f9c4761f561",
            "head": null,
            "entity": {
                "id": "301810a0-723c-11ea-b4ee-6f9c4761f561",
                "name": "Myanmar Motors Pte. Ltd."
            },
            "positions": []
        },
        {
            "id": "5016cc40-5eaf-11ea-8056-73ee1e91ae97",
            "name": "Executive Office",
            "color": "#8eaeff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "50159680-5eaf-11ea-8083-11086d5c5e7d",
            "head": null,
            "entity": {
                "id": "50159680-5eaf-11ea-8083-11086d5c5e7d",
                "name": "Yoma Leasing Company Limited"
            },
            "positions": []
        },
        {
            "id": "525ffce0-a956-11ea-85f2-6b13a6e07a1b",
            "name": "Executive Office",
            "color": "#ffb8a8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c7481260-71d0-11ea-8206-7d18a76aa17b",
            "head": null,
            "entity": {
                "id": "c7481260-71d0-11ea-8206-7d18a76aa17b",
                "name": "Yoma Agriculture Company Limited"
            },
            "positions": []
        },
        {
            "id": "575d22c0-a710-11ea-88a0-ff1058712878",
            "name": "Executive Office",
            "color": "#b3c7fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
            "head": null,
            "entity": {
                "id": "2611ee80-a710-11ea-9a99-595c9561ebdd",
                "name": "Myanmar Agri-Tech Limited"
            },
            "positions": []
        },
        {
            "id": "4bd05eb0-05af-11ee-bfd6-f537a6ad92a9",
            "name": "Estate management",
            "color": "#a3ffa9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ae3fae70-05ae-11ee-851d-f58ba0ecc5ee",
            "head": null,
            "entity": {
                "id": "ae3fae70-05ae-11ee-851d-f58ba0ecc5ee",
                "name": "CLW Development Limited"
            },
            "positions": []
        },
        {
            "id": "897a84c0-1a21-11ee-b999-5d7e1537c5e3",
            "name": "Estate Management",
            "color": "#c4e9ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "896aee30-1a21-11ee-998a-7b5248b686f4",
            "head": null,
            "entity": null,
            "positions": []
        },
        {
            "id": "d8cf01a0-638f-11ea-b5ac-a399182b640f",
            "name": "Estate Management",
            "color": "#f2a4c3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "ef5e4d50-6389-11ea-864b-f175239df991",
            "head": null,
            "entity": {
                "id": "ef5e4d50-6389-11ea-864b-f175239df991",
                "name": "Thanlyin Estate Development Limited"
            },
            "positions": []
        },
        {
            "id": "da7749e0-a93d-11ea-9062-5d64f3c21c6f",
            "name": "Estate Management",
            "color": "#9eff75",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "63ff6b80-5394-11ea-82f0-4bba46fa4de3",
            "name": "EMT",
            "color": "#edb1f9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "1c5361c0-7472-11ec-919e-9b0092d06ad0",
            "name": "Emerging Health",
            "color": "#a9fcf9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8d2b5bc0-7471-11ec-988e-a167f1c32fab",
            "head": null,
            "entity": {
                "id": "8d2b5bc0-7471-11ec-988e-a167f1c32fab",
                "name": "Emerging Health"
            },
            "positions": []
        },
        {
            "id": "304142f0-a938-11ec-be0b-5972b35d4e41",
            "name": "Emerging Health",
            "color": "#9a99f7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "1184ea20-5394-11ea-9568-1545136907da",
            "name": "ED",
            "color": "#ea6bc4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "f1143060-a6e4-11ea-a1af-376b08ba571a",
            "name": "Dive Center",
            "color": "#e86f99",
            "parent_id": null,
            "head_id": null,
            "entity_id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
            "head": null,
            "entity": {
                "id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
                "name": "Mokan International Company Limited"
            },
            "positions": []
        },
        {
            "id": "20c4b200-aa0d-11ea-bc8e-f3166fd9459a",
            "name": "Development",
            "color": "#74e0e0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "f9074280-9f1c-11ea-b435-7b8d0032473e",
            "head": null,
            "entity": {
                "id": "f9074280-9f1c-11ea-b435-7b8d0032473e",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "2a5e4020-aa2f-11ea-b50d-1f0673e4d129",
            "name": "Development",
            "color": "#edf28c",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "8b815db0-5f87-11ee-9d56-a50939f873ca",
            "name": "Design & Implementation",
            "color": "#b0d9f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "c2eddfc0-c1db-11ea-a7a3-39aa7c8cee6f",
            "name": "Design & Engineering",
            "color": "#f9c693",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "94c76a40-f072-11ed-b200-e5198ef16e95",
            "name": "Data & Analytics",
            "color": "#ef6b7d",
            "parent_id": null,
            "head_id": null,
            "entity_id": "57d03b00-280d-11ed-bf78-55672245db61",
            "head": null,
            "entity": {
                "id": "57d03b00-280d-11ed-bf78-55672245db61",
                "name": "Digital Loyalty Service Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "afcc8700-c06b-11ea-b965-03be2fd967e9",
            "name": "Customer Solutions",
            "color": "#71fc86",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "5838dbb0-588b-11ea-8eac-bd65d4b06eae",
            "name": "Customer Relation",
            "color": "#f9aa7f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
            "head": null,
            "entity": {
                "id": "8dcc5630-42a5-11ea-b0fe-d9e08e772ebe",
                "name": "Yoma Siloam Hospital Pun Hlaing Ltd."
            },
            "positions": []
        },
        {
            "id": "cfcf0f20-d1b4-11ec-96b9-0ba9effec35f",
            "name": "Customer Care & Loyalty",
            "color": "#b1a0ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "9def3640-7488-11ec-ba04-9912e41a9022",
            "name": "Customer Care & Loyalty",
            "color": "#f271dc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "head": null,
            "entity": {
                "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
                "name": "Pun Hlaing Hospitals - Head Office"
            },
            "positions": []
        },
        {
            "id": "52e21110-74b0-11ec-923f-4590f8bf5acd",
            "name": "Customer Care",
            "color": "#aaff8c",
            "parent_id": null,
            "head_id": null,
            "entity_id": "a6fa5540-7471-11ec-a497-397343d68f69",
            "head": null,
            "entity": {
                "id": "a6fa5540-7471-11ec-a497-397343d68f69",
                "name": "Pun Hlaing Clinic - North Dagon"
            },
            "positions": []
        },
        {
            "id": "56be1240-74b0-11ec-946a-216ee6a1a5d0",
            "name": "Customer Care",
            "color": "#b9e868",
            "parent_id": null,
            "head_id": null,
            "entity_id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
            "head": null,
            "entity": {
                "id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
                "name": "Pun Hlaing Clinic - Taw Win"
            },
            "positions": []
        },
        {
            "id": "0a33b2d0-74b0-11ec-b2a4-0b69e739405b",
            "name": "Customer Care",
            "color": "#91ffd4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "193fcba0-d21c-11ec-b6d7-8f923d1602a6",
            "name": "Customer Care ",
            "color": "#fcbfda",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "10d19c70-5394-11ea-892e-d7bc37b5552a",
            "name": "CSSD",
            "color": "#6eb1f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "55a613f0-8a77-11ee-99e5-c57fb756e327",
            "name": "Credit Underwriting",
            "color": "#8def7a",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "374561c0-5dfc-11ea-a661-ff28b5fa10bb",
            "name": "Credit",
            "color": "#f9bdf0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "8d0684c0-76fb-11ec-900b-d7173963bfb1",
            "name": "Corporate Support Services",
            "color": "#de7ded",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "9d58fba0-7488-11ec-965c-33d98c622af9",
            "name": "Corporate Support Services",
            "color": "#ffb796",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "head": null,
            "entity": {
                "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
                "name": "Pun Hlaing Hospitals - Head Office"
            },
            "positions": []
        },
        {
            "id": "92959f00-f68f-11ec-b1f4-bf4b6c478432",
            "name": "Corporate Services",
            "color": "#ffbcc9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
            "head": null,
            "entity": {
                "id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "6bc99290-2358-11ed-a106-3b431ac9cae9",
            "name": "Corporate Secretary Office",
            "color": "#dffc9c",
            "parent_id": null,
            "head_id": null,
            "entity_id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
            "head": null,
            "entity": {
                "id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
                "name": "Yoma Bank"
            },
            "positions": []
        },
        {
            "id": "8f9e6540-bf71-11e9-8fd5-51df9e114071",
            "name": "Corporate Office",
            "color": "#f7afff",
            "parent_id": null,
            "head_id": null,
            "entity_id": null,
            "head": null,
            "entity": null,
            "positions": []
        },
        {
            "id": "d5dd2a00-e27c-11e9-a987-43536e4291d0",
            "name": "Corporate Office",
            "color": "#fcf5a4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "d31ea6a0-e27c-11e9-8981-1fea00017ead",
            "head": null,
            "entity": {
                "id": "d31ea6a0-e27c-11e9-8981-1fea00017ead",
                "name": "First Myanmar Investment Public Company Limited"
            },
            "positions": []
        },
        {
            "id": "fbe9dea0-8524-11ee-96d4-296c94f10b41",
            "name": "Corporate Department",
            "color": "#b2fffb",
            "parent_id": null,
            "head_id": null,
            "entity_id": "cbb57820-8524-11ee-80d1-43f087c68393",
            "head": null,
            "entity": null,
            "positions": []
        },
        {
            "id": "a9676ed0-9353-11ee-b314-9b543af1ed8c",
            "name": "Corporate Department",
            "color": "#93a3f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "75b53f80-9353-11ee-9d93-1f64d36b1068",
            "head": null,
            "entity": {
                "id": "75b53f80-9353-11ee-9d93-1f64d36b1068",
                "name": "Yoma Elevator Company Limited"
            },
            "positions": []
        },
        {
            "id": "403fc2a0-a6e1-11ea-872f-b736bb464780",
            "name": "Contracting",
            "color": "#fced7e",
            "parent_id": null,
            "head_id": null,
            "entity_id": "24985240-a6df-11ea-a052-bf96d8418050",
            "head": null,
            "entity": {
                "id": "24985240-a6df-11ea-a052-bf96d8418050",
                "name": "Asia Holidays Travels & Tours Company Limited"
            },
            "positions": []
        },
        {
            "id": "6af28680-2358-11ed-aa73-37d4c718b4f4",
            "name": "Consumer Banking Division",
            "color": "#ffc6f7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
            "head": null,
            "entity": {
                "id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
                "name": "Yoma Bank"
            },
            "positions": []
        },
        {
            "id": "850ac050-aa0d-11ea-8371-33b9bec673e3",
            "name": "Commercial",
            "color": "#d7f280",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "a6fe3180-f053-11ea-945b-9ded06b05f3a",
            "name": "Collection",
            "color": "#eda7f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "8c59ccf0-76fb-11ec-aff2-4b3189055e1d",
            "name": "Clinical Services",
            "color": "#93a3ea",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "3df332c0-74b0-11ec-84f3-997d86944f58",
            "name": "Clinical Services",
            "color": "#f7ffaa",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "490d2660-74b0-11ec-b8e5-6fb1ba5168df",
            "name": "Clinical Services",
            "color": "#93ffb4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "a6fa5540-7471-11ec-a497-397343d68f69",
            "head": null,
            "entity": {
                "id": "a6fa5540-7471-11ec-a497-397343d68f69",
                "name": "Pun Hlaing Clinic - North Dagon"
            },
            "positions": []
        },
        {
            "id": "4943cf30-74b0-11ec-acdb-f35e6c8d235c",
            "name": "Clinical Services",
            "color": "#ecb0fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
            "head": null,
            "entity": {
                "id": "37f9e110-74b0-11ec-8ef5-61c9148f8062",
                "name": "Pun Hlaing Clinic - Taw Win"
            },
            "positions": []
        },
        {
            "id": "642906c0-7472-11ec-a6b7-7196ad3ec5c1",
            "name": "Clinical Services",
            "color": "#fcbff8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b09df300-7471-11ec-9bc1-b3b5ffb2261f",
            "head": null,
            "entity": {
                "id": "b09df300-7471-11ec-9bc1-b3b5ffb2261f",
                "name": "Pun Hlaing Clinic - Star City"
            },
            "positions": []
        },
        {
            "id": "17ae11c0-76e6-11ec-af36-819d02ae0a93",
            "name": "Clinical Services",
            "color": "#91e5f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "3ffea3a0-74b0-11ec-b108-5579d859b4ae",
            "name": "Clinical Governance & Agency Relations",
            "color": "#f7d274",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "head": null,
            "entity": {
                "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
                "name": "Pun Hlaing Hospitals - Head Office"
            },
            "positions": []
        },
        {
            "id": "9cce2cc0-7488-11ec-af9c-3fe29c6b3f2a",
            "name": "Clinical Excellence",
            "color": "#88fc9d",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "head": null,
            "entity": {
                "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
                "name": "Pun Hlaing Hospitals - Head Office"
            },
            "positions": []
        },
        {
            "id": "ab7ed560-7471-11ec-82bb-5f8508ab9400",
            "name": "Clinic Services Management",
            "color": "#ffe1c9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "a6fa5540-7471-11ec-a497-397343d68f69",
            "head": null,
            "entity": {
                "id": "a6fa5540-7471-11ec-a497-397343d68f69",
                "name": "Pun Hlaing Clinic - North Dagon"
            },
            "positions": []
        },
        {
            "id": "d6b25c60-58cf-11eb-b14a-23998a97069e",
            "name": "CK-STORE",
            "color": "#a7f9e1",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
            "head": null,
            "entity": {
                "id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
                "name": "YKKO Trademarks Company Limited"
            },
            "positions": []
        },
        {
            "id": "77990350-58ce-11eb-b47f-b94f0259e1fd",
            "name": "CK-PROD",
            "color": "#fcd980",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
            "head": null,
            "entity": {
                "id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
                "name": "YKKO Trademarks Company Limited"
            },
            "positions": []
        },
        {
            "id": "47c13180-58c8-11eb-9f91-83d8d45d30fe",
            "name": "CK-PROC",
            "color": "#bfc5ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
            "head": null,
            "entity": {
                "id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
                "name": "YKKO Trademarks Company Limited"
            },
            "positions": []
        },
        {
            "id": "ddacd790-58cb-11eb-9be0-19d92e69bbe1",
            "name": "CK-M&E",
            "color": "#dc88ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
            "head": null,
            "entity": {
                "id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
                "name": "YKKO Trademarks Company Limited"
            },
            "positions": []
        },
        {
            "id": "0339d9f0-58d2-11eb-9f4d-e349b39290ea",
            "name": "CK-LOG",
            "color": "#6498e0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
            "head": null,
            "entity": {
                "id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
                "name": "YKKO Trademarks Company Limited"
            },
            "positions": []
        },
        {
            "id": "03775190-58d2-11eb-a5fe-d54727086aa8",
            "name": "CK-HO",
            "color": "#87f2d7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
            "head": null,
            "entity": {
                "id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
                "name": "YKKO Trademarks Company Limited"
            },
            "positions": []
        },
        {
            "id": "d470ba20-58cf-11eb-9176-abc6c19dc6bc",
            "name": "CK-FIN",
            "color": "#fccdc4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
            "head": null,
            "entity": {
                "id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
                "name": "YKKO Trademarks Company Limited"
            },
            "positions": []
        },
        {
            "id": "479b33d0-58c8-11eb-88ec-01d05719dabe",
            "name": "CK-ADMIN&HR",
            "color": "#ffeab7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
            "head": null,
            "entity": {
                "id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
                "name": "YKKO Trademarks Company Limited"
            },
            "positions": []
        },
        {
            "id": "d6975b10-e27c-11e9-9a9b-879b107a3bb7",
            "name": "China Desk",
            "color": "#ffdcc9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "d31ea6a0-e27c-11e9-8981-1fea00017ead",
            "head": null,
            "entity": {
                "id": "d31ea6a0-e27c-11e9-8981-1fea00017ead",
                "name": "First Myanmar Investment Public Company Limited"
            },
            "positions": []
        },
        {
            "id": "a1b9d4d0-5f4f-11ea-831a-75ef9eb800c1",
            "name": "Chief Advisor Office",
            "color": "#ffb5b6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "99ef7f60-f68f-11ec-93c6-9fa3b4d65a14",
            "name": "Chairman Office",
            "color": "#c4c8fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
            "head": null,
            "entity": {
                "id": "25b76370-a92d-11ea-a90f-99a5b11c489a",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "d06ec400-aa07-11ea-8c78-5335bd8645f0",
            "name": "Chairman Office",
            "color": "#7cb8e2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "d31ea6a0-e27c-11e9-8981-1fea00017ead",
            "head": null,
            "entity": {
                "id": "d31ea6a0-e27c-11e9-8981-1fea00017ead",
                "name": "First Myanmar Investment Public Company Limited"
            },
            "positions": []
        },
        {
            "id": "c7610800-e27c-11e9-ae1e-8fdcf81ec11d",
            "name": "CFO Office",
            "color": "#ee94fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bb04f1c0-c28b-11e9-9760-f36fafa5ba7c",
            "head": null,
            "entity": {
                "id": "bb04f1c0-c28b-11e9-9760-f36fafa5ba7c",
                "name": "Yoma Strategic Holdings Ltd."
            },
            "positions": []
        },
        {
            "id": "874b5f40-ebbe-11ec-a12e-99bc0aecd90e",
            "name": "CFO Office",
            "color": "#83f7c4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c72c6bf0-e27c-11e9-8157-838dd6945639",
            "head": null,
            "entity": {
                "id": "c72c6bf0-e27c-11e9-8157-838dd6945639",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "f1a06500-f90e-11ec-a7d1-c1c0c32edb32",
            "name": "CEO Office & External Relations",
            "color": "#f2e576",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "9c4ac4e0-7488-11ec-a4ec-4109d73cac61",
            "name": "CEO Office",
            "color": "#ecf9a2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "head": null,
            "entity": {
                "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
                "name": "Pun Hlaing Hospitals - Head Office"
            },
            "positions": []
        },
        {
            "id": "adb37eb0-5ecc-11eb-9707-912a39fb022a",
            "name": "CEO Office",
            "color": "#77f475",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c72c6bf0-e27c-11e9-8157-838dd6945639",
            "head": null,
            "entity": {
                "id": "c72c6bf0-e27c-11e9-8157-838dd6945639",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "115231e0-69ce-11ea-bfda-a58bd5b6034c",
            "name": "CEO office",
            "color": "#e1b7f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "11511650-69ce-11ea-9ec7-c3b12c6c8ba0",
            "head": null,
            "entity": {
                "id": "11511650-69ce-11ea-9ec7-c3b12c6c8ba0",
                "name": "Digital Money Myanmar Ltd"
            },
            "positions": []
        },
        {
            "id": "1ea05380-aa07-11ea-ba66-5fa65eeabc53",
            "name": "CEO Office",
            "color": "#82ed9e",
            "parent_id": null,
            "head_id": null,
            "entity_id": "8f91ba20-bf71-11e9-a024-117db0392911",
            "head": null,
            "entity": {
                "id": "8f91ba20-bf71-11e9-a024-117db0392911",
                "name": "Yoma Strategic Holdings Ltd."
            },
            "positions": []
        },
        {
            "id": "32fdef60-d905-11e9-942d-191940f62806",
            "name": "CEO Office",
            "color": "#c3ff7f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bb04f1c0-c28b-11e9-9760-f36fafa5ba7c",
            "head": null,
            "entity": {
                "id": "bb04f1c0-c28b-11e9-9760-f36fafa5ba7c",
                "name": "Yoma Strategic Holdings Ltd."
            },
            "positions": []
        },
        {
            "id": "43a64500-1780-11ec-a62c-a75e42ee23f4",
            "name": "CEO Office",
            "color": "#79f7a1",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
            "head": null,
            "entity": {
                "id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
                "name": "Chindwin Investments Limited"
            },
            "positions": []
        },
        {
            "id": "4b344db0-6d8c-11ea-9c60-a19009b4d010",
            "name": "CEO Office",
            "color": "#94fcee",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "64b6c580-4888-11ee-a554-1b3508802099",
            "name": "CEO Office",
            "color": "#ffd7ad",
            "parent_id": null,
            "head_id": null,
            "entity_id": "7e2228c0-32de-11ea-9c26-b1b0ab48ed9d",
            "head": null,
            "entity": {
                "id": "7e2228c0-32de-11ea-9c26-b1b0ab48ed9d",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "74f1b630-2550-11ea-833f-e18e8cef7f54",
            "name": "CEO",
            "color": "#cbfca4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6426f810-218b-11ea-85f8-69567965e025",
            "head": null,
            "entity": {
                "id": "6426f810-218b-11ea-85f8-69567965e025",
                "name": "YKKO HO"
            },
            "positions": []
        },
        {
            "id": "877df470-52e8-11ee-8ee6-694ae221b677",
            "name": "CEO ",
            "color": "#c696ea",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
            "head": null,
            "entity": {
                "id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
                "name": "Chindwin Investments Limited"
            },
            "positions": []
        },
        {
            "id": "f27b4d60-8d95-11ee-9a21-a3dfa2f1e3a8",
            "name": "CE Spare Parts",
            "color": "#eafca4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "c679ad80-8d95-11ee-9a66-bdc0865ad123",
            "name": "CE Service",
            "color": "#dca9f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "c5875f20-8d95-11ee-85e3-d76fd51d5186",
            "name": "CE Sales",
            "color": "#fcb8b0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "e86d7790-8d95-11ee-888b-090d2a4ec604",
            "name": "CE Office",
            "color": "#ccd2ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "44fbe290-2d1f-11ee-a3a5-ed284dc47524",
            "name": "CC - M&E",
            "color": "#86e0f9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "0a0ee1c0-8504-11ee-8443-9d87a1eb8e27",
            "name": "CC - M&E",
            "color": "#d884f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "09b9b9b0-8504-11ee-ba6a-774feb9f55a0",
            "name": "CC - Housekeeping",
            "color": "#fcc2e6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "36274470-2d1f-11ee-8d15-b7ce749426ec",
            "name": "CC - Housekeeping",
            "color": "#ef8f77",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "096855e0-8504-11ee-bafa-53d64deb51fc",
            "name": "CC - Front Office",
            "color": "#fc83ab",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "1b06e110-2d1f-11ee-82bc-b1cb004428e1",
            "name": "CC - Front Office",
            "color": "#8871ed",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "0915ae80-8504-11ee-9b2b-473c94977943",
            "name": "CC - Finance",
            "color": "#c8f47c",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "23b6ab70-2d1f-11ee-85e2-7df07bbf7379",
            "name": "CC - Finance",
            "color": "#caf78f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "087430c0-e706-11eb-b506-9f866ce26a5f",
            "name": "Campus Operations",
            "color": "#ff91b4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "c0b3eb60-4472-11eb-a8be-4942796f0c9d",
            "name": "C&I",
            "color": "#f282b3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c0190630-4472-11eb-9111-1723cb8f99bb",
            "head": null,
            "entity": {
                "id": "c0190630-4472-11eb-9111-1723cb8f99bb",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "b7a7c990-9035-11ea-82ac-7975158565b6",
            "name": "C&I",
            "color": "#f9a2ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "c8cb02e0-6daa-11ea-96b4-d13f7f95492e",
            "name": "BYMA",
            "color": "#8fecf7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "fd87c2e0-c3ca-11ed-8055-cb2b18d3e721",
            "name": "Business Development",
            "color": "#ffdcbc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "83e02880-b5ed-11ea-9ec2-f9fc064b8ad2",
            "name": "Business Development",
            "color": "#e8b7f7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
            "head": null,
            "entity": {
                "id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
                "name": "Chindwin Investments Limited"
            },
            "positions": []
        },
        {
            "id": "8bde91a0-03e8-11ed-92d4-d5188be3f505",
            "name": "Business Development",
            "color": "#adffb9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "7547f700-03e8-11ed-b1c5-f786ec21e3f4",
            "head": null,
            "entity": {
                "id": "7547f700-03e8-11ed-b1c5-f786ec21e3f4",
                "name": "Atlas Digi Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "0761c150-03f1-11ed-9cc1-275e7d208993",
            "name": "Business Development",
            "color": "#efa46b",
            "parent_id": null,
            "head_id": null,
            "entity_id": "fde70220-03f0-11ed-b464-dfb2bc8f513e",
            "head": null,
            "entity": null,
            "positions": []
        },
        {
            "id": "60827100-8a77-11ee-9a73-a9ee9eae205e",
            "name": "Business Development",
            "color": "#ffb799",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "64915550-218b-11ea-87c7-3faf96e3da2f",
            "name": "Business Development",
            "color": "#7bccf2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6426f810-218b-11ea-85f8-69567965e025",
            "head": null,
            "entity": {
                "id": "6426f810-218b-11ea-85f8-69567965e025",
                "name": "YKKO HO"
            },
            "positions": []
        },
        {
            "id": "6a2eb070-2358-11ed-b45b-930a46daca98",
            "name": "Business Banking Division",
            "color": "#a073ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
            "head": null,
            "entity": {
                "id": "11130d00-69ce-11ea-a919-d55a1c913a7e",
                "name": "Yoma Bank"
            },
            "positions": []
        },
        {
            "id": "76702da0-aa0d-11ea-a150-312058bb7d22",
            "name": "Business & Strategy",
            "color": "#ffb2ca",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "7c636190-d197-11ec-af27-abe185b23310",
            "name": "Building Maintenance",
            "color": "#fbffa0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "5f15b130-f91e-11ed-bcc5-d39371ddf8a5",
            "name": "British Club - Service",
            "color": "#fff4bf",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "07cccdd0-8504-11ee-b1be-8919779ae9a2",
            "name": "British Club - Service",
            "color": "#63d4d8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "020293f0-8504-11ee-b58d-afc867aac7b0",
            "name": "British Club - Kitchen",
            "color": "#f7d5a3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "618d3a00-f91e-11ed-867d-d18aa2285775",
            "name": "British Club - Kitchen",
            "color": "#ed78df",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "4c6b06f0-d208-11ec-8b89-2f18db22cf34",
            "name": "Branding & Comunication",
            "color": "#e8f47a",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "d0d19890-d1b4-11ec-ad7a-396dbb53f25b",
            "name": "Branding & Comunication",
            "color": "#71f27e",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "head": null,
            "entity": {
                "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
                "name": "Pun Hlaing Hospitals - Head Office"
            },
            "positions": []
        },
        {
            "id": "8b8b7f60-76fb-11ec-a28f-0130a19add68",
            "name": "Branding & Communication",
            "color": "#9b85e2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "9ad17320-7488-11ec-a31f-e32cc59d34f6",
            "name": "Branding & Communication",
            "color": "#b8b3fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
            "head": null,
            "entity": {
                "id": "b31def70-7471-11ec-a54d-f7aeedae0f0d",
                "name": "Pun Hlaing Hospitals - Head Office"
            },
            "positions": []
        },
        {
            "id": "17092b40-76e6-11ec-94f7-ef9e338a9cd4",
            "name": "Branding & Communication",
            "color": "#84ff90",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "09c093c0-74b0-11ec-92a6-93dc84a4a86d",
            "name": "Bio-Medical",
            "color": "#ffbfef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
            "head": null,
            "entity": {
                "id": "b1b94600-7471-11ec-814d-7983c3bba6ab",
                "name": "Pun Hlaing Hospital - Hlaing Tharyar"
            },
            "positions": []
        },
        {
            "id": "15f585b0-76e6-11ec-bb35-a388567d2215",
            "name": "Bio-Medical",
            "color": "#77ef77",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
            "head": null,
            "entity": {
                "id": "0a8e5850-76e6-11ec-89e9-f35bcbe53a1c",
                "name": "Pun Hlaing Hospital - Taunggyi"
            },
            "positions": []
        },
        {
            "id": "8a6e7f80-76fb-11ec-ab3d-abd3edab82f3",
            "name": "Bio-Medical",
            "color": "#c4d5ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6624db60-76fb-11ec-98df-8fa75ac19790",
            "head": null,
            "entity": {
                "id": "6624db60-76fb-11ec-98df-8fa75ac19790",
                "name": "Pun Hlaing Hospital - Mandalay"
            },
            "positions": []
        },
        {
            "id": "16158580-5394-11ea-bfa1-5b77050b5d5a",
            "name": "Bio Med",
            "color": "#8bf4ef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "8dd92ee0-4b86-11ed-97bb-1572ea585889",
            "name": "BI",
            "color": "#d0f799",
            "parent_id": null,
            "head_id": null,
            "entity_id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
            "head": null,
            "entity": {
                "id": "35dca180-5dfc-11ea-a6b5-392e946d491a",
                "name": "Yoma Fleet Limited"
            },
            "positions": []
        },
        {
            "id": "e7748b90-7957-11ea-a4a5-05f3e2863607",
            "name": "Beverage",
            "color": "#9af975",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
            "head": null,
            "entity": {
                "id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
                "name": "YKKO Branches"
            },
            "positions": []
        },
        {
            "id": "894c8a30-d15d-11ec-ae1b-bfc2e7858f26",
            "name": "BD",
            "color": "#c5ffaa",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "e8b400c0-7957-11ea-bf98-d151c399b238",
            "name": "BBQ",
            "color": "#b69df9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
            "head": null,
            "entity": {
                "id": "e4779d30-7957-11ea-a07a-a323b6cea37f",
                "name": "YKKO Branches"
            },
            "positions": []
        },
        {
            "id": "f8dff2e0-d15e-11ec-9840-5768647a899b",
            "name": "BAGO",
            "color": "#6d9ee8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "8c11e960-a6e5-11ea-8046-9b494a7b48f0",
            "name": "Bagan Operation",
            "color": "#6bef86",
            "parent_id": null,
            "head_id": null,
            "entity_id": "f715e570-a6e0-11ea-86a3-697953368f72",
            "head": null,
            "entity": {
                "id": "f715e570-a6e0-11ea-86a3-697953368f72",
                "name": "Shwe Lay Ta Gun Travels & Tours Company Limited"
            },
            "positions": []
        },
        {
            "id": "cb187c30-aa0c-11ea-aaed-e1dcac350cf9",
            "name": "Back of House",
            "color": "#c2f9a4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "f8772340-a6e3-11ea-bc24-65ba517e4e0a",
            "head": null,
            "entity": {
                "id": "f8772340-a6e3-11ea-bc24-65ba517e4e0a",
                "name": "Altai Myanmar Company Limited"
            },
            "positions": []
        },
        {
            "id": "8c51b2b0-d163-11ec-991f-b3bda9fa4bb0",
            "name": "AYW",
            "color": "#c6ffa5",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "892ba640-218b-11ea-988a-c5785851652b",
            "name": "Audit",
            "color": "#b8e86a",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6426f810-218b-11ea-85f8-69567965e025",
            "head": null,
            "entity": {
                "id": "6426f810-218b-11ea-85f8-69567965e025",
                "name": "YKKO HO"
            },
            "positions": []
        },
        {
            "id": "89bb89e0-d15d-11ec-a7cd-0138f7fb9bb7",
            "name": "AUDIT",
            "color": "#82ef7c",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "469061b0-58c8-11eb-8db4-0def44ad273c",
            "name": "AUDIT",
            "color": "#88efde",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
            "head": null,
            "entity": {
                "id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
                "name": "YKKO Trademarks Company Limited"
            },
            "positions": []
        },
        {
            "id": "fdd0d690-8503-11ee-ae53-29a6f6317c9e",
            "name": "Atlas Bar - Service",
            "color": "#8bf4b9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "02784c20-78a0-11ed-9a0f-271e1cb017c1",
            "name": "Atlas Bar - Service",
            "color": "#fca1b8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "2de157b0-7ab6-11ed-8d63-8361322004d7",
            "name": "Atlas Bar - Kitchen",
            "color": "#abfcae",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "f0fe3bb0-8503-11ee-9386-fb50704136af",
            "name": "Atlas Bar - Kitchen",
            "color": "#fcd6bf",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "c20c5f80-6daa-11ea-ac5b-5d4058e4fec9",
            "name": "Asset Management",
            "color": "#f26d9b",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bf8c0340-6daa-11ea-8fcc-a912b7f0bbdb",
            "head": null,
            "entity": {
                "id": "bf8c0340-6daa-11ea-8fcc-a912b7f0bbdb",
                "name": "Yoma Nominee Limited"
            },
            "positions": []
        },
        {
            "id": "64495df0-d164-11ec-bef3-e58989b7baa7",
            "name": "ALCM",
            "color": "#86f495",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "18e5e100-5f50-11ea-9998-a72f8d00b6fa",
            "name": "AIM",
            "color": "#fc8d98",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "704ce3c0-4eec-11ea-92b4-b59f41771a55",
            "name": "Aftersales (Spare Parts)",
            "color": "#b2f497",
            "parent_id": null,
            "head_id": null,
            "entity_id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
            "head": null,
            "entity": {
                "id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
                "name": "Yoma German Motors Limited"
            },
            "positions": []
        },
        {
            "id": "6f9e8660-4eec-11ea-b730-0322d2ff9b1c",
            "name": "Aftersales (Service)",
            "color": "#f9ab77",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6f0f8e30-4eec-11ea-a7b3-372cf4b6aaa8",
            "head": null,
            "entity": {
                "id": "6f0f8e30-4eec-11ea-a7b3-372cf4b6aaa8",
                "name": "SGG Motor Services Limited"
            },
            "positions": []
        },
        {
            "id": "d53bef50-6c16-11ea-ab7c-d3e46d8a7524",
            "name": "Aftersales (Service)",
            "color": "#fcffb7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
            "head": null,
            "entity": {
                "id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
                "name": "Yoma German Motors Limited"
            },
            "positions": []
        },
        {
            "id": "7abaddc0-4eec-11ea-895a-0f9a08552efc",
            "name": "Aftersales (Body & Paint)",
            "color": "#bb91ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
            "head": null,
            "entity": {
                "id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
                "name": "Yoma German Motors Limited"
            },
            "positions": []
        },
        {
            "id": "f8f5b800-592b-11ea-9416-7120baf409f2",
            "name": "Aftersales",
            "color": "#f791ce",
            "parent_id": null,
            "head_id": null,
            "entity_id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
            "head": null,
            "entity": {
                "id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
                "name": "Yoma German Motors Limited"
            },
            "positions": []
        },
        {
            "id": "d6a4cae0-fb70-11ec-a99d-7b95c085cade",
            "name": "After Sales",
            "color": "#ad86f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e386d7a0-fb6c-11ec-bb91-0f1408eee5d1",
            "head": null,
            "entity": {
                "id": "e386d7a0-fb6c-11ec-bb91-0f1408eee5d1",
                "name": "MMCM Mandalay Limited"
            },
            "positions": []
        },
        {
            "id": "6b85e980-aa32-11ea-b553-57a31b0b2175",
            "name": "After sales",
            "color": "#ef8be2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2a019b70-723c-11ea-8b6c-95b5a3245155",
            "head": null,
            "entity": {
                "id": "2a019b70-723c-11ea-8b6c-95b5a3245155",
                "name": "MM Cars Myanmar Ltd."
            },
            "positions": []
        },
        {
            "id": "687287a0-aa0d-11ea-9695-81cac6955c50",
            "name": "Administration",
            "color": "#ed97cf",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
            "head": null,
            "entity": {
                "id": "3b587a30-a6e4-11ea-b592-5da3ab7902e3",
                "name": "KOSPA Limited"
            },
            "positions": []
        },
        {
            "id": "703c6f70-a944-11ea-8d3a-416789cc6a93",
            "name": "Administration",
            "color": "#ef9797",
            "parent_id": null,
            "head_id": null,
            "entity_id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
            "head": null,
            "entity": {
                "id": "b5597c20-6daa-11ea-948e-a75f11cb35a8",
                "name": "Yoma Development Group Limited"
            },
            "positions": []
        },
        {
            "id": "eef08500-471a-11ee-ac6d-4187d5dfb76c",
            "name": "Administration",
            "color": "#efffa0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e386d7a0-fb6c-11ec-bb91-0f1408eee5d1",
            "head": null,
            "entity": {
                "id": "e386d7a0-fb6c-11ec-bb91-0f1408eee5d1",
                "name": "MMCM Mandalay Limited"
            },
            "positions": []
        },
        {
            "id": "77f490c0-4eec-11ea-9168-834fa289ce4b",
            "name": "Administration",
            "color": "#f4b56e",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6df76320-4eec-11ea-94b2-cbb2c0a4d8c2",
            "head": null,
            "entity": {
                "id": "6df76320-4eec-11ea-94b2-cbb2c0a4d8c2",
                "name": "Successful Goal Trading Company Limited"
            },
            "positions": []
        },
        {
            "id": "7b896100-4eec-11ea-874e-cbce586720a3",
            "name": "Administration",
            "color": "#ada7f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
            "head": null,
            "entity": {
                "id": "70290aa0-4eec-11ea-bd8e-33debad349b3",
                "name": "Yoma German Motors Limited"
            },
            "positions": []
        },
        {
            "id": "9008e0b0-7964-11ea-a454-3fe89966fd07",
            "name": "Administration",
            "color": "#9cfcf1",
            "parent_id": null,
            "head_id": null,
            "entity_id": "4b331ae0-6d8c-11ea-b020-c92662747742",
            "head": null,
            "entity": {
                "id": "4b331ae0-6d8c-11ea-b020-c92662747742",
                "name": "Yoma Micro Power Myanmar Limited"
            },
            "positions": []
        },
        {
            "id": "a07ae1d0-5f4f-11ea-b21f-15c7a86e5bb2",
            "name": "Administration",
            "color": "#f490bb",
            "parent_id": null,
            "head_id": null,
            "entity_id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
            "head": null,
            "entity": {
                "id": "9d55e470-5f4f-11ea-a949-ff67da3132ab",
                "name": "Hlaing River Golf And Country Club Company Limited"
            },
            "positions": []
        },
        {
            "id": "83dfe7b0-a6e3-11ea-816d-01ba429925ba",
            "name": "Admin & General",
            "color": "#7ef796",
            "parent_id": null,
            "head_id": null,
            "entity_id": "c5f99000-a6e0-11ea-9e41-e130baac2b0d",
            "head": null,
            "entity": {
                "id": "c5f99000-a6e0-11ea-9e41-e130baac2b0d",
                "name": "Keinara Loikaw Company Limited"
            },
            "positions": []
        },
        {
            "id": "9863dc80-a6e5-11ea-ae6a-738ae9e3bdb2",
            "name": "Admin & General",
            "color": "#b2ffa8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "f715e570-a6e0-11ea-86a3-697953368f72",
            "head": null,
            "entity": {
                "id": "f715e570-a6e0-11ea-86a3-697953368f72",
                "name": "Shwe Lay Ta Gun Travels & Tours Company Limited"
            },
            "positions": []
        },
        {
            "id": "a1306ac0-a6e6-11ea-a2d5-b101151154c5",
            "name": "Admin & General",
            "color": "#f99fd1",
            "parent_id": null,
            "head_id": null,
            "entity_id": "1081fd00-a6e1-11ea-994c-0dd91a3893a2",
            "head": null,
            "entity": {
                "id": "1081fd00-a6e1-11ea-994c-0dd91a3893a2",
                "name": "Hpa An Traditional Lodge Limited"
            },
            "positions": []
        },
        {
            "id": "a96e41b0-aa15-11ea-9a38-b5fb2777c81d",
            "name": "Admin & General",
            "color": "#f26daf",
            "parent_id": null,
            "head_id": null,
            "entity_id": "42a231b0-a6df-11ea-b95d-bf712d0eee37",
            "head": null,
            "entity": {
                "id": "42a231b0-a6df-11ea-b95d-bf712d0eee37",
                "name": "Burma Boating Company Limited"
            },
            "positions": []
        },
        {
            "id": "a9b0c0b0-a6e4-11ea-8203-214aceb89bdb",
            "name": "Admin & General",
            "color": "#f49ad8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
            "head": null,
            "entity": {
                "id": "db74d7d0-a6e0-11ea-bad3-3dc70f44b1d9",
                "name": "Mokan International Company Limited"
            },
            "positions": []
        },
        {
            "id": "b143a260-a6e2-11ea-adad-dfef97831d18",
            "name": "Admin & General",
            "color": "#ffbe89",
            "parent_id": null,
            "head_id": null,
            "entity_id": "24985240-a6df-11ea-a052-bf96d8418050",
            "head": null,
            "entity": {
                "id": "24985240-a6df-11ea-a052-bf96d8418050",
                "name": "Asia Holidays Travels & Tours Company Limited"
            },
            "positions": []
        },
        {
            "id": "bc9c0a40-041e-11ee-aac5-794db2ca480f",
            "name": "Admin & General",
            "color": "#fcef9f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
            "head": null,
            "entity": {
                "id": "026c9360-78a0-11ed-b93d-b9d517e807e1",
                "name": "Memories Myanmar F&B Management Co.,Ltd"
            },
            "positions": []
        },
        {
            "id": "d7cab030-8503-11ee-861c-39195c1985d3",
            "name": "Admin & General",
            "color": "#fcc4da",
            "parent_id": null,
            "head_id": null,
            "entity_id": "814d4020-8503-11ee-bec7-472281e48c34",
            "head": null,
            "entity": {
                "id": "814d4020-8503-11ee-bec7-472281e48c34",
                "name": "Country Club"
            },
            "positions": []
        },
        {
            "id": "e2e34760-4403-11ee-a53e-237293ad4c19",
            "name": "Admin & General",
            "color": "#b7ffaf",
            "parent_id": null,
            "head_id": null,
            "entity_id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
            "head": null,
            "entity": {
                "id": "bdf75220-4403-11ee-b8eb-cb91ea0b02f0",
                "name": "PRA-FMI Pansea Hotel Development Company Limited"
            },
            "positions": []
        },
        {
            "id": "3bfd3860-a6e5-11ea-91cf-cbf35746f15e",
            "name": "Admin & General",
            "color": "#c57af4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "e8376490-a6e0-11ea-a1bd-a935cdfdb3b5",
            "head": null,
            "entity": {
                "id": "e8376490-a6e0-11ea-a1bd-a935cdfdb3b5",
                "name": "Pun Hlaing Lodge Hotel Management Limited"
            },
            "positions": []
        },
        {
            "id": "3d2a1ac0-a6e3-11ea-be29-377398a37861",
            "name": "Admin & General",
            "color": "#80f2ca",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
            "head": null,
            "entity": {
                "id": "0cedd940-a6e0-11ea-98c5-cb7c980963e7",
                "name": "Chindwin Investments Limited"
            },
            "positions": []
        },
        {
            "id": "3ec66b60-a6e6-11ea-91b2-ff8e7b61d65a",
            "name": "Admin & General",
            "color": "#f7d6a0",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
            "head": null,
            "entity": {
                "id": "0604aa90-a6e1-11ea-b585-c7ae37b499cd",
                "name": "SM Mawlamyaing Hotel Limited"
            },
            "positions": []
        },
        {
            "id": "4637b2a0-58c8-11eb-a617-d14976efeeeb",
            "name": "ADMIN",
            "color": "#efb48d",
            "parent_id": null,
            "head_id": null,
            "entity_id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
            "head": null,
            "entity": {
                "id": "3c7472d0-a6e4-11ea-a144-e9faf1d260e4",
                "name": "YKKO Trademarks Company Limited"
            },
            "positions": []
        },
        {
            "id": "645b3ce0-218b-11ea-bf89-3f1550d8d5a0",
            "name": "Admin ",
            "color": "#92f4b1",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6426f810-218b-11ea-85f8-69567965e025",
            "head": null,
            "entity": {
                "id": "6426f810-218b-11ea-85f8-69567965e025",
                "name": "YKKO HO"
            },
            "positions": []
        },
        {
            "id": "8010af70-a709-11ea-8617-ad0cda580b41",
            "name": "Admin",
            "color": "#9fb0fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "5d483930-a709-11ea-8963-eb6dd161793d",
            "head": null,
            "entity": {
                "id": "5d483930-a709-11ea-8963-eb6dd161793d",
                "name": "Yoma Heavy Equipment Company Limited"
            },
            "positions": []
        },
        {
            "id": "890f39a0-d15d-11ec-817a-69599195e1ef",
            "name": "ADMIN",
            "color": "#96c8ea",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "140e7fd0-5395-11ea-b37d-f5c2d5e821b4",
            "name": "Admin",
            "color": "#f47a9f",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "31700820-5395-11ea-866f-b371bba16935",
            "name": "Account",
            "color": "#8af2bf",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        },
        {
            "id": "2c0f1060-9445-11f0-a61f-cb5696c44530",
            "name": "Abc Department",
            "color": "#b0e8f4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "235028f0-9445-11f0-bcaa-271e1b7cebb6",
            "head": null,
            "entity": {
                "id": "235028f0-9445-11f0-bcaa-271e1b7cebb6",
                "name": "Abc Entity"
            },
            "positions": []
        },
        {
            "id": "6527b3f0-a6e5-11ea-a2ca-7b8dc1db75d0",
            "name": "9 - STAR CITY",
            "color": "#f799e6",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "b1059ac0-d162-11ec-9d4f-a97037071ad4",
            "name": "8 Mile",
            "color": "#fcf5ab",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "820f5dd0-23e4-11eb-8561-9deea0e3f368",
            "name": "8 - Domestic",
            "color": "#abf28a",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "640b1300-a6e5-11ea-9d66-cd9764072c19",
            "name": "7 - HLEDAN",
            "color": "#c0ff7c",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "62d61430-a6e5-11ea-84d6-579cf7f8a61d",
            "name": "6 - CAPITAL",
            "color": "#f1b7f7",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "619a2030-a6e5-11ea-b243-4356f99942ce",
            "name": "5 - INTERNATIONAL",
            "color": "#a8ffec",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "6817df50-52e9-11ee-85b2-75d80d994769",
            "name": "49 - TERMINAL M",
            "color": "#ecf984",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "9d911320-6aa3-11eb-9fc5-ef99bbed2807",
            "name": "48 - HTAUK KYANT",
            "color": "#f7bcaf",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "8bc3dbc0-d163-11ec-8e09-f10c93b44224",
            "name": "47 BTT",
            "color": "#bfe4fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2546dd90-d13a-11ec-b79d-07460b84873d",
            "head": null,
            "entity": {
                "id": "2546dd90-d13a-11ec-b79d-07460b84873d",
                "name": "YKKO Group of Companies.,Ltd"
            },
            "positions": []
        },
        {
            "id": "9a5e3a70-a6e5-11ea-a7e8-939d83a9bdce",
            "name": "47 - NAY PYI TAW",
            "color": "#7bf7b9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "98f4c500-a6e5-11ea-8607-d1e4fae1371f",
            "name": "46 - SHWE PYI THAR",
            "color": "#fc7bad",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "94aaf560-a6e5-11ea-ba5c-5d80fc2b81e8",
            "name": "44 - SOURTH OKKALAPA",
            "color": "#8ed7ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "93315b60-a6e5-11ea-aa53-f531aa0d96b1",
            "name": "43 - THANLYIN - CITY MART",
            "color": "#dcc2f9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "8f8eb810-a6e5-11ea-861f-f118c03052cc",
            "name": "41 - INSEIN 2",
            "color": "#b5ffaf",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "6071e900-a6e5-11ea-b7c6-8b23d36c785a",
            "name": "4 - DAGON CENTER II",
            "color": "#79bafc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "87d29ef0-a6e5-11ea-9329-553c18e18443",
            "name": "39 - THE SECRETARIAT",
            "color": "#ea7cc4",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "86e049c0-a6e5-11ea-849b-4575ca104d79",
            "name": "38 - SOUTH DAGON",
            "color": "#f9acef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "84f65250-a6e5-11ea-bc9a-81c277c3af8f",
            "name": "36 - NORTH DAGON",
            "color": "#a18eed",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "840dc2f0-a6e5-11ea-a245-bbfc032d156a",
            "name": "35 - LASHIO",
            "color": "#84ffde",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "830607e0-a6e5-11ea-a835-13523ba0f21f",
            "name": "34 - KYIMYINDAING",
            "color": "#c5aaef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "5f44e040-a6e5-11ea-9ae9-b59b2d40e408",
            "name": "3 - MYANMAR PLAZA",
            "color": "#ffeaa8",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "7de43840-a6e5-11ea-aca3-b7520101a6d5",
            "name": "29 - NYAUNGDON",
            "color": "#8fdcef",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "7cf96fb0-a6e5-11ea-8409-39d7d0dc0914",
            "name": "28 - INSEIN",
            "color": "#efde6e",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "79709cc0-a6e5-11ea-b06d-1d15ccfefb52",
            "name": "25 - MONYWA",
            "color": "#a4e6f9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "78051d70-a6e5-11ea-81fc-9f7f262935e4",
            "name": "24 - CENTRAL POINT",
            "color": "#8afcc3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "76c8dff0-a6e5-11ea-aa65-e17836885c0e",
            "name": "23 - TAMWE",
            "color": "#f4c092",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "75989ef0-a6e5-11ea-93db-31065d679c04",
            "name": "22 - PARAMI",
            "color": "#a4d4f2",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "740191a0-a6e5-11ea-8687-1742a240b00d",
            "name": "21 - KANTHARYAR",
            "color": "#84ffce",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "723521f0-a6e5-11ea-955a-c7ce35c25636",
            "name": "20 - AUNGMINGALAR",
            "color": "#cebbf9",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "5d81bf20-a6e5-11ea-a51b-0f26918bf53c",
            "name": "2 - JUNCTION SQUARE",
            "color": "#d4fc76",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "71022a80-a6e5-11ea-aaeb-cb4d3df0a89a",
            "name": "19 - BAGO",
            "color": "#97f4fc",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "6fbf8220-a6e5-11ea-92dc-1d713a0ed941",
            "name": "18 - SANPYA",
            "color": "#c4d9ff",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "6e8c11c0-a6e5-11ea-9658-5d1f2f4c718c",
            "name": "17 - 76 Miles",
            "color": "#f497e3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "1b63a1a0-5450-11ee-b461-81519d531363",
            "name": "15- CITY SQUARE, TAUNG GYI",
            "color": "#ffc1db",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "6c94c290-a6e5-11ea-b754-8f8aa0acc7a7",
            "name": "15 - CITY SQUARE, TAUNG GYI",
            "color": "#ffc6db",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "6b8b4740-a6e5-11ea-a533-9ba248a6e376",
            "name": "14 - THE MOVE @ MANDALAY",
            "color": "#79f28b",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "6a9ae9a0-a6e5-11ea-92a9-35b0f53db317",
            "name": "13 - KFC PLAZA @ 78TH ST MANDALAY",
            "color": "#f47c8e",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "6875f690-a6e5-11ea-9c66-c7c14f34e6f5",
            "name": "11 - JUNCTION CITY",
            "color": "#ef8fae",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "6783c530-a6e5-11ea-81be-d399e1b0a62d",
            "name": "10 - JUNCTION MAW TIN",
            "color": "#8bf4c3",
            "parent_id": null,
            "head_id": null,
            "entity_id": "2332e010-a6e4-11ea-a068-a794193326a8",
            "head": null,
            "entity": {
                "id": "2332e010-a6e4-11ea-a068-a794193326a8",
                "name": "Summit Brands Restaurant Group Company Limited"
            },
            "positions": []
        },
        {
            "id": "8ea7e850-218b-11ea-9371-6bb92cfdcf37",
            "name": " Operation",
            "color": "#fff6ad",
            "parent_id": null,
            "head_id": null,
            "entity_id": "6426f810-218b-11ea-85f8-69567965e025",
            "head": null,
            "entity": {
                "id": "6426f810-218b-11ea-85f8-69567965e025",
                "name": "YKKO HO"
            },
            "positions": []
        },
        {
            "id": "01c49fe0-5394-11ea-b34f-67a6a7ea5d70",
            "name": " Ancillary & clinical support ",
            "color": "#edf28e",
            "parent_id": null,
            "head_id": null,
            "entity_id": "0045c620-5394-11ea-a207-299f0bfbfea4",
            "head": null,
            "entity": {
                "id": "0045c620-5394-11ea-a207-299f0bfbfea4",
                "name": "Yoma Siloam Hospital Pun Hlaing Limited"
            },
            "positions": []
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/departments

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Create Department

requires authentication

Example request:
curl --request POST \
    "http://localhost/api/v1/departments" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/departments"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/departments

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Update Department

requires authentication

Example request:
curl --request PUT \
    "http://localhost/api/v1/departments/architecto" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/departments/architecto"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

PUT api/v1/departments/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the department. Example: architecto

Delete Department

requires authentication

Example request:
curl --request DELETE \
    "http://localhost/api/v1/departments/architecto" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/departments/architecto"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

DELETE api/v1/departments/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The ID of the department. Example: architecto

Contract

List Contracts

requires authentication

Retrieve a list of all contracts with their employee counts.

Example request:
curl --request GET \
    --get "http://localhost/api/v1/contracts" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/contracts"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": "Contracts retrieved successfully",
    "data": [
        {
            "id": "90ef2dd0-bf71-11e9-a648-83b9ede710e1",
            "name": "Contract",
            "employees_count": 18
        },
        {
            "id": "019c06b5-0285-7018-a358-1cb233f694c6",
            "name": "Contract Test 2",
            "employees_count": 0
        },
        {
            "id": "90ec8090-bf71-11e9-b850-3be77508db77",
            "name": "Full-time",
            "employees_count": 1408
        },
        {
            "id": "4c2a76e0-e8a3-11ed-ae5e-498aeaf4da33",
            "name": "Internship",
            "employees_count": 1
        },
        {
            "id": "90edcea0-bf71-11e9-a514-a3e40f11048a",
            "name": "Part-time",
            "employees_count": 2
        }
    ]
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):


{
    "message": "Failed to retrieve contracts"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/contracts

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Create Contract

requires authentication

Create a new contract type.

Example request:
curl --request POST \
    "http://localhost/api/v1/contracts" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"6 Month Contract\"
}"
const url = new URL(
    "http://localhost/api/v1/contracts"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "name": "6 Month Contract"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "message": "Contract created successfully",
    "data": {
        "id": "9d3a8f20-c8e4-4b3a-9f2d-1e5c8a7b9d3a",
        "name": "6 Month Contract"
    }
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):


{
    "message": "Failed to create contract"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

POST api/v1/contracts

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string     

The name of the contract type. Example: 6 Month Contract

Delete Contract

requires authentication

Delete a contract by UUID.

Example request:
curl --request DELETE \
    "http://localhost/api/v1/contracts/9d3a8f20-c8e4-4b3a-9f2d-1e5c8a7b9d3a" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/contracts/9d3a8f20-c8e4-4b3a-9f2d-1e5c8a7b9d3a"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Contract deleted successfully"
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (422):


{
    "message": "Cannot delete contract with associated employees"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):


{
    "message": "Failed to delete contract"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

DELETE api/v1/contracts/{id}

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   string     

The UUID of the contract to delete. Example: 9d3a8f20-c8e4-4b3a-9f2d-1e5c8a7b9d3a

Settings

Company Setting

Get Company Setting

requires authentication

Retrieve the current company setting with industry, logo, and favicon.

Example request:
curl --request GET \
    --get "http://localhost/api/v1/company-setting" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost/api/v1/company-setting"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Company setting retrieved successfully",
    "data": {
        "id": "uuid",
        "name": "Company Name",
        "break_enable": true,
        "registration_number": "REG-123",
        "show_all_employees": false,
        "founding_year": 2010,
        "working_hours_period": "monthly",
        "industry": {
            "id": "uuid",
            "name": "Technology"
        },
        "qr_code_key": "string",
        "timezone": "Asia/Yangon",
        "logo": {
            "name": "...",
            "path": "...",
            "folder": "...",
            "extension": "png",
            "image": "...",
            "thumbnail": "..."
        },
        "favicon": {
            "name": "...",
            "path": "...",
            "folder": "...",
            "extension": "ico",
            "image": "...",
            "thumbnail": "..."
        },
        "industries": [
            {
                "id": "uuid",
                "name": "Technology"
            },
            {
                "id": "uuid",
                "name": "Finance"
            }
        ]
    }
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403):


{
    "message": "You are not authorized to view company setting."
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (404):


{
    "message": "Company setting not found"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):


{
    "message": "Failed to retrieve company setting"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

GET api/v1/company-setting

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Update Company Setting

requires authentication

Update the current company settings.

Example request:
curl --request PATCH \
    "http://localhost/api/v1/company-setting" \
    --header "Authorization: Bearer {JWT_TOKEN}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"architecto\",
    \"registration_number\": \"architecto\",
    \"founding_year\": 16,
    \"working_hours_period\": \"architecto\",
    \"industry_id\": \"architecto\",
    \"timezone\": \"America\\/Hermosillo\",
    \"break_enable\": false,
    \"show_all_employees\": false,
    \"logo_image_id\": \"architecto\",
    \"fav_image_id\": \"architecto\",
    \"qr_code_key\": \"architecto\"
}"
const url = new URL(
    "http://localhost/api/v1/company-setting"
);

const headers = {
    "Authorization": "Bearer {JWT_TOKEN}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "name": "architecto",
    "registration_number": "architecto",
    "founding_year": 16,
    "working_hours_period": "architecto",
    "industry_id": "architecto",
    "timezone": "America\/Hermosillo",
    "break_enable": false,
    "show_all_employees": false,
    "logo_image_id": "architecto",
    "fav_image_id": "architecto",
    "qr_code_key": "architecto"
};

fetch(url, {
    method: "PATCH",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "message": "Company setting updated successfully",
    "data": {
        "id": "uuid",
        "name": "Company Name",
        "break_enable": true,
        "registration_number": "REG-123",
        "show_all_employees": false,
        "founding_year": 2010,
        "working_hours_period": "monthly",
        "industry": {
            "id": "uuid",
            "name": "Technology"
        },
        "qr_code_key": "string",
        "timezone": "Asia/Yangon",
        "logo": {
            "name": "...",
            "path": "...",
            "folder": "...",
            "extension": "png",
            "image": "...",
            "thumbnail": "..."
        },
        "favicon": {
            "name": "...",
            "path": "...",
            "folder": "...",
            "extension": "ico",
            "image": "...",
            "thumbnail": "..."
        },
        "industries": [
            {
                "id": "uuid",
                "name": "Technology"
            },
            {
                "id": "uuid",
                "name": "Finance"
            }
        ]
    }
}
 

Example response (401, Unauthorized):


{
    "message": "Unauthorized"
}
 

Example response (403):


{
    "message": "You are not authorized to update company setting."
}
 

Example response (403, Forbidden):


{
    "message": "Forbidden"
}
 

Example response (404):


{
    "message": "Company setting not found"
}
 

Example response (422, Validation failed):


{
    "message": "Validation failed",
    "data": {
        "field": [
            "The field is required."
        ]
    }
}
 

Example response (500):


{
    "message": "Failed to update company setting"
}
 

Example response (500, Internal Server Error):


{
    "message": "Internal Server Error"
}
 

Request      

PATCH api/v1/company-setting

Headers

Authorization        

Example: Bearer {JWT_TOKEN}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

name   string  optional    

Company name Example: architecto

registration_number   string  optional    

Registration number Example: architecto

founding_year   integer  optional    

Year founded (1900-2100) Example: 16

working_hours_period   string  optional    

Working hours period Example: architecto

industry_id   string  optional    

Industry UUID Example: architecto

timezone   string  optional    

Company timezone Example: America/Hermosillo

break_enable   boolean  optional    

Enable break tracking Example: false

show_all_employees   boolean  optional    

Show all employees Example: false

logo_image_id   string  optional    

Logo image UUID Example: architecto

fav_image_id   string  optional    

Favicon image UUID Example: architecto

qr_code_key   string  optional    

QR code key Example: architecto